: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/hero-workers.png');
      --hero-desktop-position: 28% 22%;
      --hero-mobile-position: 74% 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;
    }

    .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;
    }

    @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; }
    }

    /* ── 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: 100vh;
      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;
      padding: 22px 0 72px;
      width: 100%;
    }

    .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 */
    .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; column-gap:16px;
      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; column-gap:16px;
      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; column-gap:16px;
      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; column-gap:16px;
      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: 18px 0 0;
      margin-top: 32px;
    }
    .foot-disclaimer p {
      color: rgba(255, 255, 255, .3);
      font-size: 11.5px; column-gap:16px;
      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;
      margin-left: 18px;
      transition: color .15s;
    }

    .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;
    }

    .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: 48px;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
      animation: slideup .3s cubic-bezier(.16, 1, .3, 1);
      max-height: 90vh;
      overflow-y: auto;
    }

    @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: 26px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .msub {
      color: var(--ink-60);
      font-size: 14.5px;
      margin-bottom: 28px;
    }

    body.modal-open {
      overflow: hidden;
    }

    /* Lead form */
    .lf-grid {
      display: grid;
      grid-template-columns: 210px 1fr;
      gap: 32px;
    }

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

    .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: 18px;
    }

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

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

    .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: 20px;
      padding: 14px;
      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: block;
    }

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

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

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

    .lfs2 {
      grid-column: span 2;
    }

    .lfs3 {
      grid-column: span 3;
    }

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

    .form-helper-note { color: var(--g4); font-size: 11px; font-weight: 400; margin-left: 4px; }
    .es-photo-field { margin-bottom: 6px; }
    .es-address-field { margin-top: 6px; }
    .es-email-field { margin-top: 0; }
    .es-email-field .lfl { display:flex; align-items:center; gap:4px; white-space:nowrap; }
    .date-field { position: relative; }
    .date-field input[type="date"] { padding-left: 36px; 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; }

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

    .lf select,
    .lf input,
    .lf textarea {
      padding: 10px 12px;
      border: 1.5px solid var(--g3);
      border-radius: 8px;
      font-size: 14px;
      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;
    }

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

    .chip {
      padding: 7px 14px;
      border-radius: 20px;
      border: 1.5px solid var(--g3);
      font-size: 13px;
      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: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--g2);
    }

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

    .leaddone {
      text-align: center;
      padding: 36px 0;
    }

    .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;
    }

    .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;
      }

      .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;
      }

      .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; column-gap:16px;
      }

      .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: calc(100vh - 86px); align-items: flex-start; }
    .hero__content { padding-top: 48px !important; padding-bottom: 48px !important; }
    .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:700; }
    .service-mobile-panel[hidden] { display:none !important; }
    .service-mobile-panel { position:fixed; inset:0; background:rgba(8,18,45,.48); z-index:2000; display:flex; align-items:flex-end; padding:12px; }
    .service-mobile-sheet { background:#fff; border-radius:22px 22px 14px 14px; width:100%; max-height:88vh; overflow:auto; padding:18px; box-shadow:0 30px 90px rgba(0,0,0,.35); }
    .service-mobile-head { display:flex; justify-content:space-between; gap:12px; align-items:center; margin-bottom:12px; }
    .service-mobile-head h3 { margin:0; font-size:18px; font-weight:800; color:var(--navy); }
    .service-mobile-close { border:0; background:var(--g1); width:36px; height:36px; border-radius:50%; color:var(--navy); }
    .service-mobile-group { margin-top:16px; }
    .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:10px; padding:9px 11px; text-align:left; font-size:13.5px; font-weight:600; 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-box { min-height: 0; max-height: 92vh; }
      .leadstep { min-height: 0; }
      .hero { background-position: var(--hero-mobile-position); }
    }
    @media (max-width: 767px) {
      .hero { min-height:auto; }
      .hero__content { padding-top: 28px !important; }
      .dcard { min-height: 84px; }
      .lf-foot .btn-hp, .lf-foot .btn-out { flex:1 1 130px; }
      .lf-sec { line-height: 1.35; text-align:center; }
    }

    /* Spanish page QA fixes: prevent navigation wrapping and keep the form inside its card */
    body {
      overflow-x: hidden;
    }

    .site-nav .container-xl,
    .site-nav .navbar-collapse {
      min-width: 0;
    }

    .site-nav .navbar-nav {
      min-width: 0;
    }

    .site-nav .navbar-nav .nav-link {
      white-space: nowrap;
    }

    .site-nav .nav-actions {
      flex: 0 0 auto;
    }

    #formulario.glass-card {
      width: 100%;
      max-width: 660px;
      margin-left: auto;
      background: rgba(255, 255, 255, .96);
      border: 1px solid rgba(200, 210, 228, .75);
      box-shadow: 0 24px 70px rgba(13, 31, 60, .24);
      overflow: hidden;
    }

    #formulario .lgrid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 16px;
    }

    #formulario .lfs2,
    #formulario .lfs3,
    #formulario .lf-ck,
    #formulario .lgrid > .lfs3 {
      grid-column: 1 / -1;
    }

    #formulario .lf,
    #formulario .lf select,
    #formulario .lf input,
    #formulario .lf textarea {
      min-width: 0;
      max-width: 100%;
    }

    #formulario .lf select,
    #formulario .lf input,
    #formulario .lf textarea {
      width: 100%;
      min-height: 52px;
      border-radius: 10px;
    }

    #formulario .lf textarea {
      min-height: 104px;
    }

    #formulario .lf input[type="file"] {
      height: auto;
      padding: 12px;
      line-height: 1.4;
    }

    #formulario .lf-ck {
      align-items: flex-start;
      margin-top: 2px;
    }

    #formulario .lf-ck input {
      width: 18px;
      height: 18px;
      min-height: 18px;
      flex: 0 0 18px;
      margin-top: 2px;
      padding: 0;
    }

    #formulario .lf-ck span {
      display: block;
      overflow-wrap: anywhere;
      line-height: 1.45;
    }

    #formulario .glass-btn {
      min-height: 56px;
      border-radius: 14px;
    }

    #formulario .photo-note,
    #formulario .address-note {
      overflow-wrap: anywhere;
      line-height: 1.45;
    }

    @media (min-width: 1200px) {
      .site-nav .navbar-brand img {
        height: 42px;
      }

      .site-nav .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 6px !important;
        gap: 5px;
      }

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

      .btn-nsignup {
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
      }
    }

    @media (max-width: 1199.98px) {
      .site-nav .navbar-collapse {
        padding: 12px 0 16px;
      }

      .site-nav .navbar-nav {
        gap: 4px !important;
      }

      .site-nav .navbar-nav .nav-link {
        white-space: normal;
        justify-content: space-between;
      }

      .site-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--g2);
        margin: 4px 0 8px !important;
        max-height: 320px;
        overflow: auto;
      }

      .site-nav .nav-actions {
        width: 100%;
        margin-top: 8px;
      }

      .site-nav .nav-actions .btn-nsignup {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
      }
    }

    @media (max-width: 991.98px) {
      .hero[style] {
        padding: 44px 0 42px !important;
      }

      #formulario.glass-card {
        margin: 18px auto 0;
        max-width: 720px;
      }
    }

    @media (max-width: 575.98px) {
      .top-bar .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 6px;
      }

      .top-bar .sep {
        display: none;
      }

      .top-bar .container-xl > .d-flex > .d-flex:last-child {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 3px;
      }

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

      #formulario .lgrid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      #formulario .glass-label {
        font-size: 12px;
        line-height: 1.45;
        align-items: flex-start;
      }

      #formulario .lf select,
      #formulario .lf input,
      #formulario .lf textarea {
        font-size: 16px;
      }
    }

  
    /* 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; }
    }

    /* spanish-mobile-final-0507 */
    @media (max-width: 1199px) {
      .site-nav .navbar-collapse { text-align: left; }
      .site-nav .navbar-nav { align-items: flex-start; width: 100%; }
      .site-nav .navbar-nav .nav-link { justify-content: flex-start; width: 100%; }
      .site-nav .dropdown-menu { text-align: left; }
    }
    @media (max-width: 575px) {
      .top-bar .d-flex.justify-content-between { flex-direction: column; justify-content: center !important; align-items: center !important; text-align: center; gap: 4px; }
      .top-bar .container-xl > .d-flex > .d-flex { width: 100%; justify-content: center !important; align-items: center !important; text-align: center; flex-wrap: nowrap; gap: 0 16px; }
      .top-bar .container-xl > .d-flex > .d-flex:last-child { flex-direction: row !important; align-items: center !important; font-size: 11.5px; column-gap:16px; }
      .top-bar .top-trust { width: auto; justify-content: center; text-align: center; white-space: nowrap; }
      .top-bar .sep { display: none; }
    }
    .form-helper-note { white-space: nowrap; }
    .es-address-field { margin-bottom: 10px; }

    /* may11-spanish-form-polish */
    .modal-x { position:absolute; top:16px; right:16px; width:38px; height:38px; border-radius:50%; border:0; background:var(--g1); color:var(--g4); display:flex; align-items:center; justify-content:center; font-size:18px; transition:all .15s; }
    .modal-x:hover { background:var(--navy); color:#fff; }
    .es-modal-steps.is-hidden { display:none; }
    .es-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap:16px; }
    .es-contact-date { grid-column:1 / -1; margin-top:8px; }
    .es-contact-time { grid-column:1 / -1; }
    .es-service-mobile-open { display:none; align-items:center; justify-content:flex-start; gap:8px; min-height:48px; font-weight:500; }
    [data-es-service-panel].service-mobile-panel { z-index:10020; }
    @media (max-width: 991.98px) { .hero[style] { min-height:auto !important; padding:44px 0 42px !important; } }
    @media (max-width: 575px) {
      [data-es-modal] { align-items:center; padding:12px; }
      [data-es-modal] .modal-box { width:100%; max-height:92dvh; min-height:0; border-radius:20px; padding:24px 16px calc(18px + env(safe-area-inset-bottom, 0px)); }
      .es-contact-grid { grid-template-columns:1fr; gap:12px; }
      .es-contact-date, .es-contact-time { grid-column:1 / -1; margin-top:0; }
      .es-service-field select { display:none; }
      .es-service-mobile-open { display:flex; }
    }

    /* spanish-multistep-final-0509 */
    .es-hero-trust { display:flex; flex-wrap:wrap; gap:10px 16px; justify-content:center; margin:14px 0 18px; color:var(--navy); font-weight:800; font-size:14px; }
    .es-hero-trust span { display:inline-flex; align-items:center; gap:7px; }
    .es-hero-trust i { color:#16a34a; font-size:16px; }
    .es-start-card { text-align:center; }
    .es-start-card .section-sub { font-size:14px; margin-bottom:0; }
    .es-modal-steps { display:flex; gap:8px; margin:14px 0 20px; }
    .es-modal-step { flex:1; border:1px solid var(--g2); background:var(--g1); color:var(--ink-60); border-radius:999px; padding:7px 10px; text-align:center; font-size:12px; font-weight:800; }
    .es-modal-step.is-active { background:rgba(18,145,223,.1); border-color:rgba(18,145,223,.35); color:var(--blue); }
    .es-lead-step { display:none; border:0; padding:0; margin:0; }
    .es-lead-step.is-active { display:block; }
    .es-modal-actions { display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:18px; }
    .es-modal-actions .btn-hp, .es-modal-actions .btn-out { min-height:46px; }
    .es-done { display:none; text-align:center; padding:34px 10px 18px; }
    .es-done.is-active { display:block; }
    .es-done i { color:#16a34a; font-size:42px; display:block; margin-bottom:12px; }
    @media (max-width: 575px) { .es-modal-steps { gap:5px; } .es-modal-step { font-size:11px; padding:7px 6px; } .es-modal-actions { flex-direction:column-reverse; } .es-modal-actions .btn-hp, .es-modal-actions .btn-out { width:100%; justify-content:center; } }


    /* may12-spanish-form-polish */
    .char-counter {
      margin-top: 4px;
      font-size: 11.5px;
      color: var(--ink-60);
      text-align: right;
    }
    .hero[data-admin-image-bank="hero-espanol"] {
      min-height: 68vh !important;
      padding: 30px 0 34px !important;
      align-items: center;
    }
    .hero[data-admin-image-bank="hero-espanol"] .hero__content {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
    .hero[data-admin-image-bank="hero-espanol"] .row.align-items-start {
      align-items: center !important;
    }
    .es-modal-actions [data-es-next],
    .es-modal-actions [data-es-submit] {
      margin-left: auto;
    }
    .es-contact-grid {
      gap: 14px 16px;
    }
    .es-contact-date {
      margin-top: 14px;
    }
    .date-field input[type="date"] {
      min-height: 44px;
      line-height: 1.25;
      padding-left: 38px !important;
      padding-right: 12px !important;
      color: var(--navy);
    }
    .date-field input[type="date"]::-webkit-date-and-time-value {
      text-align: left;
      min-height: 1.3em;
    }
    .date-field .date-icon {
      top: 50% !important;
      bottom: auto !important;
      transform: translateY(-50%);
      line-height: 1;
    }
    .modal-box.is-submitted > .mtitle,
    .modal-box.is-submitted > .msub,
    .modal-box.is-submitted .es-modal-steps,
    .modal-box.is-submitted .es-modal-actions {
      display: none !important;
    }
    .modal-box.is-submitted .es-done {
      padding-top: 10px;
    }
    @media (max-width: 575.98px) {
      .hero[data-admin-image-bank="hero-espanol"] {
        min-height: auto !important;
        padding: 44px 0 42px !important;
      }
      .es-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }
      .es-phone-field,
      .es-email-field,
      .es-contact-date,
      .es-contact-time,
      .es-contact-grid .lf-ck {
        grid-column: 1 / -1;
      }
      .es-modal-actions {
        flex-direction: column-reverse;
      }
      .es-modal-actions [data-es-next],
      .es-modal-actions [data-es-submit] {
        margin-left: 0;
      }
    }



    /* 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;
    }



    /* may13-spanish-modal-warning-fit */
    @media (max-width: 575.98px) {
      [data-es-modal] {
        align-items: flex-end !important;
        padding: 8px !important;
        overflow: hidden !important;
      }
      [data-es-modal] .modal-box {
        max-height: calc(100dvh - 16px) !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        padding: 22px 14px 14px !important;
      }
      [data-es-modal] [data-es-lead-form] {
        min-height: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
      }
      [data-es-modal] .es-lead-step.is-active {
        min-height: 0 !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;
        padding-right: 2px !important;
      }
      [data-es-modal] .lgrid {
        gap: 10px !important;
      }
      [data-es-modal] .lf-error {
        grid-column: 1 / -1 !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        margin: 0 !important;
      }
      [data-es-modal] .es-modal-actions {
        flex: 0 0 auto !important;
        margin-top: 10px !important;
      }
    }



    /* may14-spanish-mobile-footer-legal */
    @media (max-width: 575.98px) {
      html[lang="es"] .site-footer .foot-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 18px 10px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px 0 !important;
        text-align: center !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a {
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
        font-size: 12.5px !important;
        line-height: 1.35 !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a + a::before {
        content: "|";
        margin: 0 10px;
        color: rgba(255,255,255,.3);
      }
      html[lang="es"] .site-footer .foot-bottom .foot-copy {
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        line-height: 1.45 !important;
      }
    }




    /* may15-spanish-mobile-footer-single-line */
    @media (max-width: 575.98px) {
      html[lang="es"] .site-footer .foot-bottom .flinks {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a {
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
        font-size: clamp(9.5px, 2.65vw, 12px) !important;
        line-height: 1.35 !important;
        letter-spacing: 0 !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a + a::before {
        content: "|" !important;
        margin: 0 clamp(4px, 1.7vw, 8px) !important;
        color: rgba(255,255,255,.34) !important;
      }
    }

    @media (max-width: 374px) {
      html[lang="es"] .site-footer .foot-bottom .flinks {
        display: grid !important;
        grid-template-columns: auto auto !important;
        column-gap: 0 !important;
        row-gap: 4px !important;
        justify-items: center !important;
        align-items: center !important;
        white-space: normal !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a {
        font-size: 11px !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a:nth-child(3) {
        grid-column: 1 / -1 !important;
      }
      html[lang="es"] .site-footer .foot-bottom .flinks a:nth-child(3)::before {
        content: "" !important;
        margin: 0 !important;
      }
    }

    /* may14-spanish-service-selector-sheet */
    [data-es-service-panel].service-mobile-panel[hidden] {
      display: none !important;
    }
    [data-es-service-panel].service-mobile-panel {
      position: fixed !important;
      inset: 0 !important;
      width: 100vw !important;
      height: 100dvh !important;
      z-index: 30050 !important;
      display: flex !important;
      align-items: flex-end !important;
      justify-content: center !important;
      padding: max(8px, env(safe-area-inset-top, 0px)) 10px max(10px, env(safe-area-inset-bottom, 0px)) !important;
      background: rgba(8, 18, 45, .48) !important;
      overflow: hidden !important;
      overscroll-behavior: contain !important;
      touch-action: none !important;
    }
    [data-es-service-panel] .service-mobile-sheet {
      position: relative !important;
      inset: auto !important;
      width: min(100%, 520px) !important;
      max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
      min-height: 0 !important;
      overflow: hidden !important;
      display: flex !important;
      flex-direction: column !important;
      padding: 0 !important;
      border-radius: 20px 20px 12px 12px !important;
      background: #fff !important;
      box-shadow: 0 30px 90px rgba(0,0,0,.35) !important;
      touch-action: auto !important;
    }
    [data-es-service-panel] .service-mobile-head {
      flex: 0 0 auto !important;
      padding: 16px 16px 12px !important;
      margin: 0 !important;
      border-bottom: 1px solid var(--g2) !important;
    }
    [data-es-service-panel] .service-mobile-list {
      flex: 1 1 auto !important;
      min-height: 0 !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      overscroll-behavior-y: contain !important;
      touch-action: pan-y !important;
      padding: 10px 16px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
    }
    [data-es-service-panel] .service-mobile-group {
      margin-top: 0 !important;
    }
    [data-es-service-panel] .service-mobile-choice {
      min-height: 44px !important;
      padding: 10px 12px !important;
      border-radius: 10px !important;
      font-size: 14px !important;
      line-height: 1.25 !important;
    }

.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;}

