    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green: #1a7a4a;
      --green-dark: #0d4a2a;
      --green-lt: #f0faf5;
      --accent: #4dd98a;
      --text: #111827;
      --text-2: #4b5563;
      --text-3: #9ca3af;
      --white: #fff;
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --font: Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
      --nav-h: 72px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    main { padding-top: var(--nav-h); overflow-x: hidden; }

    /* ── NAV ── */
    .nav {
      background: #fff; border-bottom: 1px solid rgba(0,0,0,0.09);
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08); height: var(--nav-h);
    }
    .nav__inner {
      width: 100%; padding: 0 40px; height: 100%;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo-img { max-height: 25px; height: auto; width: auto; display: block; }
    .nav__links {
      display: flex; align-items: center; list-style: none;
      flex: 1; justify-content: flex-start; gap: 10px; margin-left: 24px;
    }
    .nav__links a {
      font-size: 14.5px; font-weight: 500; color: #444; text-decoration: none;
      padding: 8px 13px; border-radius: 6px;
      transition: background 0.18s, color 0.18s; white-space: nowrap;
    }
    .nav__links a:hover { background: #f3f3f3; color: #111; }
    .nav__links a[aria-current="page"] { color: var(--green); font-weight: 700; }
    .nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .btn-book {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: #fff;
      font-family: var(--font); font-size: 14px; font-weight: 700;
      padding: 10px 22px; border-radius: 6px;
      text-decoration: none; border: none; cursor: pointer;
      min-height: 44px; white-space: nowrap; transition: background 0.18s;
    }
    .btn-book:hover { background: var(--green-dark); }
    .nav__item-drop { position: static; list-style: none; }
    .nav__drop-toggle {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 14.5px; font-weight: 500; color: #444;
      padding: 8px 13px; border-radius: 6px;
      background: none; border: none; cursor: pointer; font-family: var(--font);
      transition: background 0.18s, color 0.18s; white-space: nowrap;
    }
    .nav__drop-toggle svg { width: 14px; height: 14px; transition: transform 0.22s; flex-shrink: 0; stroke: currentColor; fill: none; }
    .nav__item-drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
    .nav__item-drop.open .nav__drop-toggle { background: #f3f3f3; color: #111; }
    .nav__mega {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: #fff; border-top: 2px solid var(--green);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      z-index: 190; padding: 28px 40px 32px;
    }
    .nav__item-drop.open .nav__mega { display: block; }
    .nav__mega-inner { padding: 0 40px; }
    .nav__mega-heading { font-size: 10.5px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
    .nav__mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
    .nav__mega a.nav__mega-link {
      display: flex; align-items: center; gap: 9px;
      font-size: 14px; font-weight: 500; color: #333 !important;
      padding: 11px 14px; border-radius: 6px;
      transition: background 0.15s, color 0.15s; white-space: nowrap; background: transparent;
    }
    .nav__mega a.nav__mega-link:hover { background: #f0faf5 !important; color: var(--green) !important; }
    .nav__mega a.nav__mega-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.40; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .nav__mega a.nav__mega-link:hover svg { opacity: 1; }
    .nav__burger {
      display: none; flex-direction: column; gap: 5px;
      padding: 10px; background: none; border: none; cursor: pointer;
      min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
    }
    .nav__burger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform 0.28s, opacity 0.28s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__drawer {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08);
      z-index: 199; padding: 8px 24px 20px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
    .nav__drawer.open { display: block; }
    .nav__drawer ul { list-style: none; }
    .nav__drawer ul li a { display: block; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
    .nav__drawer ul li a:hover { color: var(--green); }
    .drawer-repairs-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: var(--font); text-align: left; }
    .drawer-repairs-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform 0.22s; }
    .drawer-repairs-toggle.open svg { transform: rotate(180deg); }
    .drawer-repairs-sub { display: none; list-style: none; padding-left: 12px; }
    .drawer-repairs-sub.open { display: block; }
    .drawer-repairs-sub li a { font-size: 14px; color: #555; padding: 10px 0; border-bottom: 1px solid #f5f5f5; display: block; }
    .drawer-repairs-sub li a:hover { color: var(--green); }
    @media (max-width: 1100px) {
      .nav__links, .btn-book { display: none; }
      .nav__burger { display: flex; }
      .nav__mega { display: none !important; }
      .nav__inner { padding: 0 32px 0 16px; }
      .nav__logo-img { height: 13px; }
    }

    /* ── SHARED PRIMITIVES ── */
    .p-eyebrow { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); background: var(--green-lt); border: 1px solid rgba(26,122,74,0.18); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; width: fit-content; }
    .p-h2 { display: flex; align-items: center; gap: 10px; font-size: clamp(21px, 2.4vw, 28px); font-weight: 800; color: var(--text); letter-spacing: -0.4px; margin-bottom: 16px; line-height: 1.25; }
    .p-h2--sm { font-size: 19px; }
    .p-h2__rule { width: 4px; height: 20px; background: var(--green); border-radius: 2px; flex-shrink: 0; }
    .p-lead { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.6; }
    .p-body { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
    .p-body:last-child { margin-bottom: 0; }

    .p-check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; }
    .p-check svg { width: 10px; height: 10px; stroke: #fff; }
    .p-check--lg { width: 26px; height: 26px; }
    .p-check--lg svg { width: 13px; height: 13px; }

    .p-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 4px; }
    .p-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
    .p-checklist li b { color: var(--text); font-weight: 700; }
    .p-checklist li .p-check { margin-top: 1px; }
    .p-checklist--2col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 14px; }
    .p-checklist--rich li { font-size: 13.5px; }

    .p-photo { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(17,24,39,0.10); }
    .p-photo img { width: 100%; height: 100%; object-fit: cover; }
    .p-photo--tall { min-height: 260px; align-self: stretch; position: relative; }
    .p-photo--tall img { position: absolute; inset: 0; }

    .p-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--green-lt); border: 1px solid rgba(26,122,74,0.16); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .p-card__icon svg { width: 22px; height: 22px; stroke: var(--green); }
    .p-card__h2 { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 18px; letter-spacing: -0.3px; }
    .p-card__h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.2px; }
    .p-card__intro { font-size: 14px; color: var(--text-2); margin-bottom: 14px; line-height: 1.6; }

    /* ── SECTION LAYOUT ── */
    .p-section { background: #fff; padding: 64px 24px; }
    .p-section--tint { background: var(--green-lt); }
    .p-section__inner { max-width: 1200px; margin: 0 auto; }
    .p-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .p-cols-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: start; }
    .p-cols-2--imgtext { align-items: center; }
    .p-cols-2--engage { align-items: start; }

    .p-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; height: 100%; }
    .p-card--pad { background: #fff; box-shadow: 0 6px 20px rgba(17,24,39,0.05); }

    .p-capability { display: flex; gap: 20px; align-items: flex-start; }
    .p-capability__img { flex: 0 0 140px; width: 140px; height: 140px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(17,24,39,0.10); }
    .p-capability__img img { width: 100%; height: 100%; object-fit: cover; }
    .p-capability__text p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 12px; }
    .p-capability__text p:last-child { margin-bottom: 0; }

    /* ── HERO ── */
    .p-hero { overflow: hidden; }
    .p-hero__stage { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
    .p-hero__bg { position: absolute; inset: 0; }
    .p-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .p-hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(6,20,12,0.90) 0%, rgba(10,38,22,0.82) 42%, rgba(10,38,22,0.52) 70%, rgba(10,38,22,0.18) 100%); }
    .p-hero__inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 72px 40px; width: 100%; }
    .p-hero__content { max-width: 640px; }
    .p-eyebrow--onphoto { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: #fff; backdrop-filter: blur(2px); }
    .p-hero__h1 { font-size: clamp(22px, 2.6vw, 34px); font-weight: 900; line-height: 1.15; letter-spacing: -0.8px; color: #fff; margin-bottom: 18px; white-space: nowrap; }
    .p-hero__h1 span { color: var(--accent); }
    .p-hero__clients { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.82); letter-spacing: 0.01em; margin-bottom: 20px; line-height: 1.8; }
    .p-hero__clients span { white-space: nowrap; }
    .p-hero__clients i { font-style: normal; color: var(--accent); margin: 0 2px; }
    .p-hero__desc { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 22px; max-width: 560px; }
    .p-hero__highlight { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; padding: 18px 20px; max-width: 560px; backdrop-filter: blur(3px); }
    .p-hero__highlight p { font-size: 13.5px; font-weight: 600; color: #fff; line-height: 1.6; }
    .p-hero__highlight .p-check--lg { background: var(--accent); }
    .p-hero__highlight .p-check--lg svg { stroke: #0b1a11; }

    /* Google reviews badge (matches homepage hero exactly) */
    .gr-badge-v2 { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; margin-bottom: 18px; opacity: 0.92; transition: opacity .18s; }
    .gr-badge-v2:hover { opacity: 1; }
    .gr-stars-v2 { display: inline-flex; align-items: center; gap: 1px; font-size: 12px; line-height: 1; }
    .gr-star { color: #F5C451; }
    .gr-star-partial { position: relative; display: inline-block; }
    .gr-star-bg { color: rgba(255,255,255,0.25); }
    .gr-star-fg { position: absolute; top: 0; left: 0; width: 88%; overflow: hidden; white-space: nowrap; color: #F5C451; }
    .gr-label-v2 { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }
    .gr-divider-v2 { width: 1px; height: 13px; background: rgba(255,255,255,0.18); margin: 0 1px; }
    .gr-g-v2 { width: 14px; height: 14px; flex-shrink: 0; }

    /* Request a Partner CTA + 3-point statline (mirrors homepage hero).
       Deliberately its own class rather than reusing .btn-book — that
       class is also targeted by the nav's max-width:1100px "hide on
       mobile" rule, which would wipe out this hero button too. */
    .p-hero__cta {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: #fff;
      font-family: var(--font); font-size: 14px; font-weight: 700;
      padding: 10px 22px; border-radius: 6px;
      text-decoration: none; border: none; cursor: pointer;
      min-height: 44px; white-space: nowrap; transition: background 0.18s;
      margin-bottom: 26px;
    }
    .p-hero__cta:hover { background: var(--green-dark); }
    .p-hero__statline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px; margin-bottom: 26px; }
    .p-hero__stat-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: #fff; white-space: nowrap; }
    .p-hero__stat-item svg { width: 14px; height: 14px; stroke: var(--accent); flex-shrink: 0; }
    @media (max-width: 640px) {
      .p-hero__statline { flex-direction: column; align-items: flex-start; gap: 8px; }
      .p-hero__stat-item { white-space: normal; }
    }

    .p-badgebar { background: var(--green-dark); }
    .p-badgebar__inner { max-width: 1200px; margin: 0 auto; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px 16px; }
    .p-badge { display: flex; align-items: center; gap: 12px; color: #fff; }
    .p-badge__icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
    .p-badge__icon svg { width: 18px; height: 18px; stroke: #fff; }
    .p-badge span { display: flex; flex-direction: column; font-size: 12.5px; color: rgba(255,255,255,0.75); line-height: 1.4; white-space: nowrap; }
    .p-badge b { font-size: 13.5px; font-weight: 800; color: #fff; }

    /* ── SERVICE GRID ── */
    .p-servicegrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
    .p-servicecard { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.18s, box-shadow 0.18s; }
    .p-servicecard:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(17,24,39,0.08); }
    .p-servicecard__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--green-lt); border: 1px solid rgba(26,122,74,0.16); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    .p-servicecard__icon svg { width: 19px; height: 19px; stroke: var(--green); }
    .p-servicecard__title { font-size: 12.5px; font-weight: 800; color: var(--text); line-height: 1.35; }
    .p-servicecard__desc { font-size: 11px; color: var(--text-3); line-height: 1.4; margin-top: 6px; }

    /* ── TRADE PARTNERSHIP (dark band) ── */
    .p-trade { background: #0b1a11; }
    .p-trade__inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    .p-trade__text h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.3px; }
    .p-trade__text p { font-size: 13.5px; color: rgba(255,255,255,0.55); max-width: 320px; line-height: 1.6; }
    .p-trade__grid { display: flex; gap: 28px; flex-wrap: wrap; }
    .p-trade__item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; width: 108px; font-size: 12px; font-weight: 700; color: #fff; line-height: 1.4; }
    .p-trade__icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
    .p-trade__icon svg { width: 20px; height: 20px; stroke: var(--accent); }

    /* ── FORM ── */
    .p-form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 18px; padding: 36px; box-shadow: 0 12px 32px rgba(17,24,39,0.08); }
    .p-form-card__h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 22px; letter-spacing: -0.4px; }
    .p-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .p-form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
    .p-form-row .p-form-group { margin-bottom: 0; }
    .p-form-label { font-size: 12.5px; font-weight: 700; color: var(--text); }
    .p-req { color: #dc2626; }
    .p-optional { color: var(--text-3); font-weight: 500; }
    .p-form-input, .p-form-textarea { font-family: var(--font); font-size: 14px; color: var(--text); background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 9px; padding: 12px 14px; width: 100%; transition: border-color 0.15s, background 0.15s; }
    .p-form-input:focus, .p-form-textarea:focus { outline: none; border-color: var(--green); background: #fff; }
    .p-form-textarea { min-height: 110px; resize: vertical; font-family: var(--font); }
    .p-form-submit { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; background: var(--green); color: #fff; font-family: var(--font); font-size: 15px; font-weight: 700; padding: 15px 24px; border-radius: 9px; border: none; cursor: pointer; transition: background 0.18s; margin-top: 4px; }
    .p-form-submit:hover { background: var(--green-dark); }
    .p-form-submit svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

    /* ── FOOTER ── */
    .footer { background: #0d1f14; padding: 56px 24px 28px; }
    .footer__inner { max-width: 1200px; margin: 0 auto; }
    .footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer__brand-logo { margin-bottom: 12px; }
    .footer__brand-logo img { height: 32px; width: auto; filter: brightness(0) invert(0.75); }
    .footer__brand-logo-text { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
    .footer__brand-logo-text em { font-style: normal; color: #4dd98a; }
    .footer__desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
    .footer__socials { display: flex; gap: 10px; }
    .footer__social { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.50); text-decoration: none; transition: background 0.15s, color 0.15s; }
    .footer__social svg { width: 14px; height: 14px; }
    .footer__social:hover { background: rgba(77,217,138,0.15); color: #4dd98a; }
    .footer__col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
    .footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col-links a { font-size: 14px; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.15s; }
    .footer__col-links a:hover { color: #fff; }
    .footer__col-links a.active { color: #4dd98a; }
    .footer__contact-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; }
    .footer__contact-row svg { width: 14px; height: 14px; stroke: #4dd98a; fill: none; flex-shrink: 0; }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer__legal { display: flex; gap: 20px; }
    .footer__legal a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
    .footer__legal a:hover { color: rgba(255,255,255,0.70); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1150px) {
      .p-servicegrid { grid-template-columns: repeat(4, 1fr); }
      .p-cols-3 { grid-template-columns: 1fr 1fr; }
      .p-cols-3 .p-photo--tall { grid-column: 1 / -1; min-height: 220px; }
    }
    @media (max-width: 1024px) {
      .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
      .p-hero__inner { padding: 56px 32px; }
    }
    @media (max-width: 900px) {
      .p-hero__stage { min-height: 480px; }
      .p-hero__overlay { background: linear-gradient(180deg, rgba(6,20,12,0.78) 0%, rgba(8,28,16,0.88) 60%, rgba(8,28,16,0.92) 100%); }
      .p-hero__inner { padding: 40px 24px; }
      .p-hero__content { max-width: 100%; }
      .p-hero__desc, .p-hero__highlight { max-width: 100%; }
      .p-badgebar__inner { justify-content: flex-start; }
      .p-cols-2 { grid-template-columns: 1fr; gap: 32px; }
      .p-cols-3 { grid-template-columns: 1fr; gap: 28px; }
      .p-cols-3 .p-photo--tall { grid-column: auto; min-height: 220px; }
      .p-cols-2--imgtext { grid-template-columns: 1fr; }
      .p-cols-2--imgtext .p-photo { max-height: 280px; }
      .p-checklist--2col { grid-template-columns: 1fr; }
      .p-capability { flex-direction: column; }
      .p-capability__img { width: 100%; flex-basis: auto; height: 200px; }
      .p-trade__inner { flex-direction: column; align-items: flex-start; }
      .p-trade__grid { gap: 20px; }
    }
    @media (max-width: 768px) {
      .p-servicegrid { grid-template-columns: repeat(3, 1fr); }
      .p-section { padding: 48px 20px; }
    }
    @media (max-width: 600px) {
      .p-hero__stage { min-height: 0; }
      .p-hero__inner { padding: 32px 20px; }
      .p-hero__h1 { font-size: 18px; letter-spacing: -0.4px; margin-bottom: 12px; }
      .p-eyebrow { margin-bottom: 12px; padding: 5px 12px; font-size: 10.5px; }
      .p-hero__clients { font-size: 12px; line-height: 1.6; margin-bottom: 14px; }
      .p-hero__desc { font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
      .p-hero__highlight { padding: 14px 16px; gap: 10px; }
      .p-hero__highlight p { font-size: 12.5px; line-height: 1.5; }
      .p-form-row { grid-template-columns: 1fr; gap: 16px; }
      .p-form-card { padding: 24px; }
      .footer__top { grid-template-columns: 1fr; gap: 24px; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .p-servicegrid { grid-template-columns: repeat(2, 1fr); }
      .p-trade__grid { justify-content: space-between; }
      .p-trade__item { width: 44%; }
    }
