    /* Prevent horizontal overflow on mobile */
    /* Prevent horizontal overflow on mobile WITHOUT breaking position: sticky on the header.
       `overflow-x: clip` clips overflow without creating a scrolling ancestor (which is what
       breaks sticky). MUST be applied to BOTH html and body — `hidden` on either one creates
       a scroll container that breaks the sticky header. */
    html, body { overflow-x: clip; max-width: 100%; }
    body > * { max-width: 100vw; }

    /* Licensed service description */
    .lsd-section { padding: 80px 24px; background: #f6f8fa; }
    .lsd-inner { max-width: 1080px; margin: 0 auto; }
    .lsd-headline {
      font-family: "Anton", "Bebas Neue", "Archivo Black", sans-serif;
      font-size: clamp(30px, 3.8vw, 48px);
      color: #0e1a3d; line-height: 1.1; margin: 0 0 24px;
      letter-spacing: 0.5px;
    }
    .lsd-lead {
      font-family: "Inter", sans-serif;
      font-size: clamp(15px, 1.5vw, 16.5px);
      line-height: 1.7;
      color: #2e3a4a;
      margin: 0 0 18px;
    }
    .lsd-lead strong { color: #0e1a3d; font-weight: 700; }
    .lsd-sub {
      font-family: "Montserrat", sans-serif;
      font-size: 19px;
      font-weight: 800;
      color: #0e1a3d;
      margin: 32px 0 18px;
    }
    .lsd-list { list-style: none; padding: 0; margin: 0; }
    .lsd-list li {
      display: flex; gap: 14px;
      padding: 18px 4px;
      border-top: 1px solid rgba(2,48,73,0.08);
      font-family: "Inter", sans-serif;
      font-size: 15px;
      color: #2e3a4a;
      line-height: 1.55;
    }
    .lsd-list li:first-child { border-top: 1px solid rgba(2,48,73,0.08); }
    .lsd-check {
      flex: 0 0 22px;
      color: #0C7DAC;
      margin-top: 2px;
    }
    .lsd-list strong { color: #0e1a3d; font-weight: 800; }
    .lsd-close {
      margin-top: 32px;
      font-family: "Inter", sans-serif;
      font-size: 15.5px;
      color: #2e3a4a;
      line-height: 1.65;
    }
    .lsd-close strong { color: #0e1a3d; font-weight: 800; }
    .lsd-close a { color: #0C7DAC; font-weight: 700; text-decoration: none; }
    .lsd-close a:hover { text-decoration: underline; }
    .lsd-cta-wrap { text-align: center; margin-top: 36px; }
    .lsd-cta {
      display: inline-block;
      background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
      color: #0e1a3d;
      text-decoration: none;
      font-family: "Montserrat", sans-serif;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0.5px;
      padding: 16px 36px;
      border-radius: 999px;
      box-shadow: 0 12px 28px rgba(255, 138, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
      transition: transform .15s ease, filter .15s ease;
    }
    .lsd-cta:hover { transform: translateY(-2px); filter: brightness(1.06); }

    /* FAQ section */
    .faq-section { padding: 80px 24px; background: #ffffff; }
    .faq-inner { max-width: 880px; margin: 0 auto; text-align: center; }
    .faq-eyebrow {
      font-family: "Montserrat", sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 4px; text-transform: uppercase;
      color: #0C7DAC; margin: 0 0 14px;
    }
    .faq-headline {
      font-family: "Anton", "Bebas Neue", "Archivo Black", sans-serif;
      font-size: clamp(30px, 4vw, 48px);
      color: #0e1a3d; line-height: 1.1; margin: 0 0 36px;
      letter-spacing: 0.5px;
    }
    .faq-list { display: flex; flex-direction: column; gap: 12px; text-align: left; }
    .faq-item {
      background: #f4f7fa;
      border-radius: 12px;
      transition: background .2s ease;
    }
    .faq-item.is-open { background: #eaf3f7; }
    .faq-q {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between; gap: 18px;
      padding: 20px 24px;
      background: transparent;
      border: 0;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
      font-size: 16px; font-weight: 700;
      color: #0e1a3d;
      text-align: left;
    }
    .faq-toggle {
      flex: 0 0 32px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: #d9ecf3;
      color: #0C7DAC;
      display: grid; place-items: center;
      font-size: 18px; font-weight: 700;
      transition: transform .25s ease, background .2s ease;
    }
    .faq-item.is-open .faq-toggle { background: #0C7DAC; color: #fff; transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 24px;
      font-family: "Inter", sans-serif;
      font-size: 15px;
      line-height: 1.65;
      color: #2e3a4a;
    }
    .faq-item.is-open .faq-a {
      max-height: 500px;
      padding: 0 24px 22px;
    }
    .faq-cta-wrap { margin-top: 36px; }
    .faq-cta {
      display: inline-block;
      background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
      color: #0e1a3d;
      text-decoration: none;
      font-family: "Montserrat", sans-serif;
      font-size: 17px; font-weight: 800;
      letter-spacing: 0.5px;
      padding: 16px 36px;
      border-radius: 999px;
      box-shadow: 0 12px 28px rgba(255, 138, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
      transition: transform .15s ease, filter .15s ease;
    }
    .faq-cta:hover { transform: translateY(-2px); filter: brightness(1.06); }

    /* Financing CTA button - vibrant orange override */
    .financing-cta__btn {
      background: linear-gradient(135deg, #ff8a00 0%, #ff5e2c 100%) !important;
      border: 0 !important;
      color: #fff !important;
      padding: 22px 56px !important;
      font-size: 18px !important;
      letter-spacing: 1.2px !important;
      border-radius: 14px !important;
      box-shadow: 0 14px 32px rgba(255, 94, 44, 0.5), inset 0 1px 0 rgba(255,255,255,0.25) !important;
    }
    .financing-cta__btn:hover {
      box-shadow: 0 18px 40px rgba(255, 94, 44, 0.65), inset 0 1px 0 rgba(255,255,255,0.3) !important;
      filter: brightness(1.08) !important;
    }
    .financing-cta__text {
      color: rgba(255,255,255,0.85);
      font-family: "Inter", "Montserrat", sans-serif;
      font-size: clamp(15px, 1.6vw, 18px);
      margin: 12px auto 28px;
      font-weight: 500;
      text-align: center;
      width: 100%;
      display: block;
    }

    /* Ensure header fits on mobile without cutting off CALL button */
    @media (max-width: 480px) {
      .header-inner { padding: 10px 12px !important; gap: 8px; }
      .header-logo img { height: 50px !important; }
      .header-btn-line2 { font-size: 14px !important; white-space: nowrap; }
      .btn-solid { padding: 9px 12px !important; }
    }
    @media (max-width: 380px) {
      .header-logo img { height: 44px !important; }
      .header-btn-line2 { font-size: 13px !important; }
      .btn-solid { padding: 8px 10px !important; }
    }

    .disabled-link { pointer-events: none; cursor: not-allowed; opacity: 0.5; text-decoration: none; }

    /* Center the hero tagline on mobile */
    @media (max-width: 768px) {
      .ep-hero__tagline {
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
      .ep-hero__sub-text { text-align: center; }
    }

    /* Slight inset on desktop/tablet — push header logo + hero content in
       from the left, and pull header CTA in from the right. */
    @media (min-width: 768px) {
      .header-inner { padding-left: clamp(28px, 4vw, 64px) !important; padding-right: clamp(28px, 4vw, 64px) !important; }
      .ep-hero__inner { padding-left: clamp(40px, 5vw, 96px) !important; }
    }

    /* Tall, condensed, heavy display font for the hero headline */
    .ep-hero__title {
      font-family: "Anton", "Bebas Neue", "Archivo Black", "Montserrat", system-ui, sans-serif !important;
      font-weight: 400 !important;
      letter-spacing: 0.5px !important;
      line-height: 0.95 !important;
      font-size: clamp(28px, 5.2vw, 68px) !important;
    }

    @media (max-width: 480px) {
      .ep-hero__title { font-size: 30px !important; }
    }

    @media (min-width: 993px) {
      .ep-hero__title { font-size: clamp(42px, 5.5vw, 74px) !important; }
    }

    .call-sub { font-weight: 700; letter-spacing: .04em; }

    /* Pros title - wrap to balanced 2 lines on desktop, with sensible cap. */
    @media (min-width: 901px) {
      .pros-title {
        white-space: normal;
        font-size: clamp(28px, 2.4vw, 36px) !important;
        line-height: 1.15 !important;
        padding: 6px 0 !important;
        max-width: 620px;
      }
      .pros-card h3 {
        font-size: 14.5px !important;
        letter-spacing: 0 !important;
      }
    }

    /* Mobile full-width hero image slider (between hero card and form section) */
    .mobile-hero-slider {
      display: none;
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
    }
    .mhs-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }
    .mhs-slide {
      flex: 0 0 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .mhs-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 2;
    }
    .mhs-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: 0;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .mhs-dot.is-active {
      background: #fff;
      transform: scale(1.2);
    }
    @media (max-width: 768px) {
      .mobile-hero-slider { display: block; }
    }
    @media (max-width: 480px) {
      .mobile-hero-slider { height: 220px; }
    }

    /* Gallery - Our Work carousel */
    .gal-section {
      padding: 70px 24px 80px;
      background: #fff;
    }
    .gal-inner {
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }
    .gal-eyebrow {
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #0C7DAC;
      margin: 0 0 14px;
    }
    .gal-headline {
      font-family: "Anton", "Bebas Neue", "Archivo Black", sans-serif;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: 0.5px;
      margin: 0 0 40px;
      color: #0e1a3d;
    }
    .gal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .gal-card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 14px 36px -14px rgba(2,48,73,0.20), 0 2px 6px rgba(2,48,73,0.06);
      border: 1px solid rgba(2,48,73,0.06);
      overflow: hidden;
      text-align: left;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .gal-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px -14px rgba(2,48,73,0.28);
    }
    .gal-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .gal-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .gal-zoom {
      position: absolute;
      top: 14px; left: 14px;
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      display: grid; place-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      color: #0C7DAC;
    }
    .gal-zoom svg { width: 18px; height: 18px; }
    .gal-card-body {
      padding: 20px 22px 22px;
    }
    .gal-card-title {
      font-family: "Montserrat", sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: #0e1a3d;
      margin: 0 0 8px;
    }
    .gal-card-desc {
      font-family: "Inter", sans-serif;
      font-size: 14px;
      color: #4b5563;
      line-height: 1.55;
      margin: 0;
    }
    .gal-nav {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(2,48,73,0.12);
      color: #0e1a3d;
      cursor: pointer;
      display: grid; place-items: center;
      box-shadow: 0 6px 14px rgba(2,48,73,0.10);
      transition: transform .15s ease, box-shadow .15s ease;
      z-index: 3;
    }
    .gal-nav:hover {
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 8px 18px rgba(2,48,73,0.16);
      color: #0C7DAC;
    }
    .gal-nav--prev { left: -60px; }
    .gal-nav--next { right: -60px; }
    .gal-nav svg { width: 18px; height: 18px; }
    .gal-dots {
      display: flex; justify-content: center; gap: 8px;
      margin-top: 28px;
    }
    .gal-dot {
      width: 30px; height: 6px;
      border-radius: 3px;
      background: rgba(2,48,73,0.15);
      border: 0; padding: 0;
      cursor: pointer;
      transition: background .2s ease, width .2s ease;
    }
    .gal-dot.is-active {
      background: #0e1a3d;
      width: 44px;
    }
    @media (max-width: 960px) {
      .gal-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .gal-section { padding: 56px 18px 64px; }
      .gal-grid { grid-template-columns: 1fr; gap: 14px; }
    }

    /* Lightbox modal */
    .gal-card { cursor: pointer; }
    .gal-lightbox {
      position: fixed; inset: 0; z-index: 99999;
      display: none;
      background: rgba(0, 10, 20, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      align-items: center; justify-content: center;
      padding: 24px;
    }
    .gal-lightbox.is-open { display: flex; animation: galFade .25s ease; }
    @keyframes galFade { from { opacity: 0; } to { opacity: 1; } }
    .gal-lb-stage {
      position: relative;
      max-width: 1100px; width: 100%;
      max-height: 90vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
    }
    .gal-lb-img {
      max-width: 100%;
      max-height: 78vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      animation: galZoom .3s cubic-bezier(.2,.8,.2,1);
    }
    @keyframes galZoom { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .gal-lb-caption {
      margin-top: 18px;
      color: #fff;
      font-family: "Inter", sans-serif;
      font-size: 15px;
      text-align: center;
      max-width: 720px;
      opacity: 0.9;
    }
    .gal-lb-caption strong {
      display: block;
      font-family: "Montserrat", sans-serif;
      font-size: 17px;
      margin-bottom: 4px;
      font-weight: 800;
    }
    .gal-lb-close {
      position: absolute;
      top: 18px; right: 22px;
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      border-radius: 50%;
      font-size: 26px; line-height: 1;
      cursor: pointer;
      display: grid; place-items: center;
      transition: background .15s ease;
    }
    .gal-lb-close:hover { background: rgba(255,255,255,0.22); }
    .gal-lb-nav {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      border-radius: 50%;
      cursor: pointer;
      display: grid; place-items: center;
      transition: background .15s ease, transform .15s ease;
    }
    .gal-lb-nav:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.06); }
    .gal-lb-nav svg { width: 22px; height: 22px; }
    .gal-lb-nav--prev { left: 18px; }
    .gal-lb-nav--next { right: 18px; }
    .gal-lb-counter {
      position: absolute;
      top: 22px; left: 24px;
      color: rgba(255,255,255,0.7);
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      letter-spacing: 1.5px;
    }
    @media (max-width: 640px) {
      .gal-lb-nav { width: 42px; height: 42px; }
      .gal-lb-nav--prev { left: 8px; }
      .gal-lb-nav--next { right: 8px; }
      .gal-lb-close { width: 40px; height: 40px; top: 12px; right: 12px; }
      .gal-lb-counter { top: 16px; left: 14px; font-size: 12px; }
    }

    /* Testimonials - premium */
    .tst-section {
      padding: 90px 24px;
      background: linear-gradient(180deg, #F2F7F4 0%, #E8F1ED 100%);
      position: relative;
      overflow: hidden;
    }
    .tst-section::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(12,125,172,0.06) 0, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(2,48,73,0.06) 0, transparent 35%);
      pointer-events: none;
    }
    .tst-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: minmax(280px, 1fr) 2fr; gap: 56px; align-items: center;
      position: relative;
    }
    .tst-eyebrow {
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #0C7DAC;
      margin: 0 0 12px;
    }
    .tst-headline {
      font-family: "Anton", "Bebas Neue", "Archivo Black", "Montserrat", sans-serif;
      font-size: clamp(34px, 4vw, 52px);
      color: var(--primary-color); line-height: 1.05; margin: 0;
      letter-spacing: 0.5px;
    }
    .tst-rating {
      margin-top: 18px;
      display: flex; align-items: center; gap: 10px;
    }
    .tst-rating-stars {
      color: #FFB400; font-size: 18px; letter-spacing: 3px;
      text-shadow: 0 1px 2px rgba(255,180,0,0.3);
    }
    .tst-rating-text {
      font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600;
      color: #3a4256;
    }
    .tst-track {
      display: flex; gap: 22px; overflow-x: auto;
      padding: 18px 4px 28px; scroll-snap-type: x mandatory;
      scrollbar-width: thin; scrollbar-color: rgba(2,48,73,0.2) transparent;
    }
    .tst-track::-webkit-scrollbar { height: 6px; }
    .tst-track::-webkit-scrollbar-thumb { background: rgba(2,48,73,0.25); border-radius: 4px; }
    .tst-card {
      flex: 0 0 320px; scroll-snap-align: start;
      background: #fff; border-radius: 18px; padding: 28px 26px 24px;
      box-shadow: 0 20px 44px -16px rgba(2, 48, 73, 0.18), 0 2px 6px rgba(2, 48, 73, 0.05);
      display: flex; flex-direction: column; gap: 14px;
      position: relative; overflow: hidden;
      border: 1px solid rgba(2, 48, 73, 0.06);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .tst-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 50px -16px rgba(2, 48, 73, 0.25), 0 4px 10px rgba(2, 48, 73, 0.08);
    }
    .tst-card::before {
      content: "\201C";
      position: absolute; top: 12px; right: 22px;
      font-family: "Archivo Black", Georgia, serif;
      font-size: 90px; line-height: 1;
      color: rgba(12, 125, 172, 0.10);
      pointer-events: none;
    }
    .tst-stars {
      color: #FFB400; letter-spacing: 3px; font-size: 17px;
      text-shadow: 0 1px 2px rgba(255,180,0,0.25);
    }
    .tst-body {
      color: #1a2a3a; font-size: 14.5px; line-height: 1.65; margin: 0;
      font-family: "Inter", sans-serif;
    }
    .tst-meta {
      display: flex; align-items: center; gap: 12px;
      margin-top: auto; padding-top: 14px;
      border-top: 1px solid rgba(2, 48, 73, 0.08);
    }
    .tst-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, #0C7DAC 0%, #023049 100%);
      color: #fff; font-family: "Montserrat", sans-serif;
      font-weight: 800; font-size: 16px;
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(2,48,73,0.2);
    }
    .tst-author-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .tst-author { font-weight: 700; color: var(--primary-color); font-size: 14.5px; font-family: "Montserrat", sans-serif; }
    .tst-author-tag {
      font-size: 11px; color: #6b7785; font-weight: 600;
      font-family: "Inter", sans-serif;
      display: flex; align-items: center; gap: 4px;
    }
    .tst-author-tag::before {
      content: ""; width: 14px; height: 14px;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234285F4'><path d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/><path d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z' fill='%2334A853'/><path d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z' fill='%23FBBC05'/><path d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z' fill='%23EA4335'/></svg>") no-repeat center / contain;
    }
    @media (max-width: 860px) {
      .tst-section { padding: 60px 18px; }
      .tst-inner { grid-template-columns: 1fr; gap: 28px; }
      .tst-card { flex: 0 0 80%; }
    }
    @media (max-width: 860px) {
      .tst-inner { grid-template-columns: 1fr; gap: 24px; }
      .tst-card { flex: 0 0 78%; }
    }

    /* Service areas */
    .areas-section {
      padding: 70px 24px 80px;
      min-height: 420px;
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
      background-image: url('/static/demo/images/service-areas.webp');
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
    }
    .areas-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.55);
      pointer-events: none;
    }
    @media (max-width: 860px) {
      .areas-section { padding: 80px 18px 90px; min-height: 0; }
    }
    .areas-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: minmax(420px, 1.4fr) 2fr; gap: 56px; align-items: start; position: relative; z-index: 1;
    }
    .areas-headline {
      font-family: var(--font-heading); font-size: clamp(24px, 2.6vw, 34px);
      color: var(--primary-color); line-height: 1.15; margin: 0;
      max-width: none;
      white-space: nowrap;
    }
    .areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 310px)); gap: 18px; justify-content: end; }
    .area-card {
      border: 2px solid var(--primary-color); border-radius: 14px; padding: 18px 22px;
      background: #fff;
      max-width: 310px;
    }
    .area-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .area-card__head svg { flex: 0 0 22px; color: var(--primary-color); }
    .area-card__title { font-family: var(--font-heading); font-size: 18px; color: var(--primary-color); margin: 0; }
    .area-card__list { margin: 0; padding-left: 22px; color: #111; font-size: 14.5px; line-height: 1.85; font-weight: 600; }
    @media (max-width: 860px) {
      .areas-inner { grid-template-columns: 1fr; gap: 24px; justify-items: center; text-align: center; }
      .areas-headline { white-space: normal; text-align: center; margin-left: auto; margin-right: auto; }
      .areas-grid { justify-content: center; }
      .area-card { margin-left: auto; margin-right: auto; }
    }

    /* Limited Time Offer — single card. Section reuses .why-trust for the
       light-blue background + brand swoosh image already in styles.css. */
    .offer-section .why-inner { max-width: 760px; }
    .offer-section .offer-card { margin-top: 40px; }
    .offer-card {
      max-width: 560px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 18px;
      padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 32px);
      box-shadow: 0 18px 44px -20px rgba(2, 48, 73, 0.32);
      text-align: center;
    }
    .offer-card__percent {
      font-family: "Archivo Black", var(--font-heading);
      font-size: clamp(56px, 8vw, 88px);
      line-height: 1;
      color: var(--primary-color, #0e1a3d);
      letter-spacing: -2px;
    }
    .offer-card__copy {
      font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      font-size: clamp(15px, 1.8vw, 19px);
      font-weight: 700;
      color: #111;
      margin-top: 8px;
      line-height: 1.3;
    }
    .offer-card__sub {
      font-family: "Montserrat", system-ui, sans-serif;
      font-size: clamp(13px, 1.5vw, 16px);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary-color, #0e1a3d);
      margin-top: 14px;
    }
    .offer-card__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .offer-card__code {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border: 2px dashed var(--primary-color, #0e1a3d);
      border-radius: 999px;
      background: #ffffff;
    }
    .offer-card__code-label {
      font-family: "Montserrat", system-ui, sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary-color, #0e1a3d);
      letter-spacing: 1.2px;
    }
    .offer-card__code-value {
      font-family: "Archivo Black", var(--font-heading);
      font-size: 16px;
      color: var(--primary-color, #0e1a3d);
      letter-spacing: 2px;
    }
    .offer-card__cta {
      display: inline-block;
      background: linear-gradient(135deg, #1a3ed1 0%, #023049 55%, #011F30 100%);
      color: #fff;
      text-decoration: none;
      font-family: "Archivo Black", var(--font-heading);
      font-size: clamp(14px, 1.6vw, 17px);
      letter-spacing: 0.5px;
      padding: 12px 24px;
      border-radius: 10px;
      box-shadow: 0 12px 24px -10px rgba(2, 48, 73, 0.5);
      transition: transform 0.18s ease, filter 0.18s ease;
    }
    .offer-card__cta:hover { transform: translateY(-2px); filter: brightness(1.08); }
    @media (max-width: 560px) {
      .offer-card__actions { flex-direction: column; gap: 14px; }
      .offer-card__code, .offer-card__cta { width: 100%; justify-content: center; text-align: center; }
    }

    /* Services checks → rounded pill badges with leading dot */
    .services-checks--pills { gap: 14px; }
    .services-checks--pills > span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 22px;
      border-radius: 999px;
      background: #E5F4F8;
      border: 2px solid #0C7DAC;
      font-family: "Montserrat", "Inter", system-ui, sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #0C7DAC;
    }
    .services-checks--pills > span::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #0C7DAC;
      flex: 0 0 9px;
    }
    @media (max-width: 640px) {
      .services-checks--pills {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
      }
      .services-checks--pills > span {
        display: inline-flex !important;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: auto !important;
        max-width: min(90vw, 300px) !important;
        padding: 9px 18px !important;
        font-size: 10.5px !important;
        letter-spacing: 0.4px !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        justify-content: center !important;
        gap: 7px !important;
        text-align: center !important;
      }
      .services-checks--pills > span::before {
        width: 6px !important;
        height: 6px !important;
        flex: 0 0 6px !important;
        align-self: center !important;
      }
    }

    /* Small phones (Galaxy S8+ 360, iPhone SE 375, iPhone 12 Pro 390) — tighten so both pills sit centered */
    @media (max-width: 400px) {
      .services-checks--pills {
        padding: 0 14px !important;
      }
      .services-checks--pills > span {
        max-width: min(90vw, 280px) !important;
        padding: 8px 14px !important;
        font-size: 9.5px !important;
        letter-spacing: 0.2px !important;
      }
      .services-checks--pills > span::before {
        width: 5px !important;
        height: 5px !important;
        flex: 0 0 5px !important;
      }
    }

    /* Subheadline under the "Why Homeowners Choose Us" title */
    .pros-sub {
      font-family: "Inter", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      font-size: clamp(15px, 1.7vw, 18px);
      font-weight: 500;
      color: #3a4256;
      margin: 10px 0 26px;
      line-height: 1.45;
    }

