/* ==========================================================================
   Alpha Electric LLC - main.css
   nl-* design system. Single stylesheet, no framework, no build step.
   Target: sub-1s LCP on 4G mobile. Every byte here is deliberate.
   ========================================================================== */

:root {
  /* Palette: deep navy (trust, trade) + safety amber (electrical, high CTA
     contrast). Amber on navy clears WCAG AA at normal text sizes. */
  --nl-navy-900: #0b1b2b;
  --nl-navy-800: #0f2338;
  --nl-navy-700: #16324d;
  --nl-navy-600: #1f4468;
  --nl-amber-500: #f5a524;
  --nl-amber-600: #d98a0b;
  --nl-amber-050: #fff6e6;

  --nl-ink: #14202c;
  --nl-ink-soft: #4a5a6a;
  --nl-line: #dde4ea;
  --nl-bg: #ffffff;
  --nl-bg-alt: #f5f8fa;

  --nl-shell: 1160px;
  --nl-shell-narrow: 780px;
  --nl-radius: 10px;
  --nl-radius-lg: 16px;
  --nl-shadow: 0 1px 2px rgba(11, 27, 43, .06), 0 6px 20px rgba(11, 27, 43, .07);
  --nl-shadow-lg: 0 2px 4px rgba(11, 27, 43, .07), 0 14px 40px rgba(11, 27, 43, .11);

  /* System font stack. Zero network requests, zero CLS, zero font-license risk.
     A webfont would cost ~120KB and 200ms for no conversion benefit here. */
  --nl-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--nl-font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--nl-ink);
  background: var(--nl-bg);
  -webkit-font-smoothing: antialiased;
  /* Room for the sticky mobile call bar so it never covers the footer. */
  padding-bottom: 0;
}
/* Must be >= the call bar's rendered height (8px pad + 48px btn + 8px pad + 2px
   border = 66px) or the last rows of the footer sit underneath it.
   env(safe-area-inset-bottom) handles the iPhone home indicator. */
@media (max-width: 767px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--nl-navy-600); }
a:hover { color: var(--nl-navy-800); }

:focus-visible {
  outline: 3px solid var(--nl-amber-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.nl-skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--nl-navy-800); color: #fff; padding: .8rem 1.2rem;
}
.nl-skip:focus { left: 0; }

.nl-shell { width: 100%; max-width: var(--nl-shell); margin: 0 auto; padding: 0 20px; }
.nl-shell--narrow { max-width: var(--nl-shell-narrow); }

/* -------------------------------------------------------------- Header --- */
.nl-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--nl-navy-800);
  border-bottom: 3px solid var(--nl-amber-500);
}
.nl-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 66px; }

.nl-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: #fff; padding: .55rem 0; }
.nl-brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: var(--nl-amber-500); color: var(--nl-navy-900); flex: none; }
.nl-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.nl-brand__name { font-size: 1.16rem; font-weight: 800; letter-spacing: -.015em; }
.nl-brand__sub { font-size: .72rem; color: #9fb6cb; font-weight: 500; letter-spacing: .02em; }

.nl-navtoggle {
  display: none; background: transparent; border: 1px solid #37506a; border-radius: 8px;
  width: 44px; height: 40px; cursor: pointer; padding: 0; place-items: center; gap: 4px;
}
.nl-navtoggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .18s, opacity .18s; }
.nl-navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nl-navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nl-navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nl-nav { display: flex; align-items: center; gap: 1.4rem; }
.nl-nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nl-nav a { color: #d7e3ee; text-decoration: none; font-size: .95rem; font-weight: 600; padding: .4rem 0; border-bottom: 2px solid transparent; }
.nl-nav a:hover { color: #fff; border-bottom-color: var(--nl-amber-500); }
.nl-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--nl-amber-500); }
.nl-nav__cta { white-space: nowrap; }
/* SPECIFICITY FIX. `.nl-nav a` (0-1-1) outranks `.nl-btn--call` (0-1-0), so the
   header call button inherited the nav's light link colour and rendered
   #d7e3ee on amber = 1.57:1 contrast — a WCAG AA failure and visibly wrong.
   `.nl-nav a.nl-btn--call` is 0-2-1 and wins. Do not lower this. */
.nl-nav a.nl-btn--call { color: var(--nl-navy-900); border-bottom: none; }
.nl-nav a.nl-btn--call:hover { color: var(--nl-navy-900); background: var(--nl-amber-600); }

@media (max-width: 900px) {
  .nl-navtoggle { display: grid; }
  .nl-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--nl-navy-800); border-bottom: 3px solid var(--nl-amber-500);
    flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 20px 1.1rem;
    display: none;
  }
  .nl-nav.is-open { display: flex; }
  .nl-nav ul { flex-direction: column; gap: 0; }
  .nl-nav li { border-bottom: 1px solid #22405e; }
  .nl-nav a { display: block; padding: .85rem 0; border-bottom: none; }
  .nl-nav__cta { margin-top: .9rem; justify-content: center; }
}

/* ------------------------------------------------------------- Buttons --- */
.nl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.35rem; border-radius: var(--nl-radius);
  font-size: 1rem; font-weight: 700; text-decoration: none; line-height: 1.2;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background-color .15s, box-shadow .15s;
  min-height: 48px; /* thumb target */
}
.nl-btn:active { transform: translateY(1px); }
.nl-btn--primary { background: var(--nl-amber-500); color: var(--nl-navy-900); box-shadow: var(--nl-shadow); }
.nl-btn--primary:hover { background: var(--nl-amber-600); color: var(--nl-navy-900); }
.nl-btn--ghost { background: transparent; color: var(--nl-navy-800); border-color: var(--nl-navy-600); }
.nl-btn--ghost:hover { background: var(--nl-navy-800); color: #fff; }
.nl-btn--call { background: var(--nl-amber-500); color: var(--nl-navy-900); padding: .55rem 1rem; min-height: 42px; font-size: .95rem; }
.nl-btn--call:hover { background: var(--nl-amber-600); color: var(--nl-navy-900); }

.nl-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 0; }
.nl-ctas--compact { margin-top: 1.1rem; }
.nl-ctas--compact .nl-btn { flex: 1 1 auto; padding: .7rem 1rem; font-size: .95rem; }

/* ---------------------------------------------------------------- Hero --- */
.nl-hero {
  background:
    linear-gradient(180deg, rgba(11,27,43,.90) 0%, rgba(15,35,56,.96) 100%),
    radial-gradient(1200px 400px at 15% -10%, #26527d 0%, transparent 60%),
    var(--nl-navy-900);
  color: #fff;
  padding: 4.2rem 0 3.6rem;
}
.nl-hero__inner { max-width: 780px; }
.nl-eyebrow {
  margin: 0 0 .6rem; font-size: .8rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--nl-amber-500);
}
.nl-h1 {
  margin: 0 0 .9rem; font-size: clamp(2rem, 5.2vw, 3.1rem); line-height: 1.12;
  letter-spacing: -.022em; font-weight: 800;
}
.nl-hero .nl-h1 { color: #fff; }
.nl-hero__lede { margin: 0; font-size: clamp(1.03rem, 2.2vw, 1.19rem); color: #cfdcea; max-width: 62ch; }
.nl-hero__points { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; list-style: none; margin: 1.9rem 0 0; padding: 0; }
.nl-hero__points li { display: flex; align-items: center; gap: .45rem; font-size: .92rem; font-weight: 600; color: #b9cbdc; }
.nl-hero__points svg { color: var(--nl-amber-500); flex: none; }
/* Ghost button sits on a dark ground here, so invert it or the label
   disappears into the navy. Same override as .nl-pagehead and .nl-cta. */
.nl-hero .nl-btn--ghost { color: #fff; border-color: #5a7994; }
.nl-hero .nl-btn--ghost:hover { background: #fff; color: var(--nl-navy-800); }

/* ------------------------------------------------------------ Pagehead --- */
.nl-pagehead { background: var(--nl-navy-800); color: #fff; padding: 3rem 0 2.6rem; }
.nl-pagehead .nl-h1 { color: #fff; }
.nl-pagehead .nl-lede { color: #cfdcea; margin: 0; }
.nl-pagehead .nl-btn--ghost { color: #fff; border-color: #5a7994; }
.nl-pagehead .nl-btn--ghost:hover { background: #fff; color: var(--nl-navy-800); }

/* ----------------------------------------------------------- Crumbs ------ */
.nl-crumbs { background: var(--nl-navy-900); font-size: .82rem; }
.nl-crumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: .6rem 0; }
.nl-crumbs li { color: #8fa6bb; }
.nl-crumbs li + li::before { content: "/"; margin-right: .45rem; color: #4d6a86; }
.nl-crumbs a { color: #b9cbdc; text-decoration: none; }
.nl-crumbs a:hover { color: #fff; text-decoration: underline; }

/* -------------------------------------------------------------- Layout --- */
.nl-section { padding: 3.4rem 0; }
.nl-section--alt { background: var(--nl-bg-alt); border-top: 1px solid var(--nl-line); border-bottom: 1px solid var(--nl-line); }

.nl-h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); line-height: 1.22; letter-spacing: -.017em; margin: 2.2rem 0 .9rem; font-weight: 800; }
.nl-section > .nl-shell > .nl-h2:first-child, .nl-prose > .nl-h2:first-child { margin-top: 0; }
.nl-h2--invert { color: #fff; }
.nl-lede { font-size: 1.08rem; color: var(--nl-ink-soft); max-width: 68ch; margin: 0 0 1.5rem; }
.nl-note { font-size: .92rem; color: var(--nl-ink-soft); margin-top: 1.6rem; }

.nl-split { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 2.8rem; align-items: start; }
@media (max-width: 900px) { .nl-split { grid-template-columns: 1fr; gap: 2rem; } }

.nl-prose p { max-width: 70ch; }
.nl-prose > :first-child { margin-top: 0; }

/* --------------------------------------------------------------- Trust --- */
.nl-trust { background: var(--nl-amber-050); border-top: 1px solid #f0dcb6; border-bottom: 1px solid #f0dcb6; padding: 1.7rem 0; }
.nl-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .nl-trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .nl-trust__grid { grid-template-columns: 1fr; } }
.nl-trust__item { display: flex; flex-direction: column; gap: .15rem; }
.nl-trust__item strong { font-size: 1.02rem; color: var(--nl-navy-800); }
.nl-trust__item span { font-size: .87rem; color: #6b5a3c; line-height: 1.45; }

/* --------------------------------------------------------------- Cards --- */
.nl-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.nl-card {
  background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius-lg);
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column;
  transition: box-shadow .17s, transform .17s, border-color .17s;
}
.nl-card:hover { box-shadow: var(--nl-shadow-lg); transform: translateY(-2px); border-color: #c3d2df; }
.nl-card__h { font-size: 1.14rem; line-height: 1.3; margin: 0 0 .5rem; font-weight: 750; }
.nl-card__h a { color: var(--nl-navy-800); text-decoration: none; }
.nl-card__h a:hover { color: var(--nl-navy-600); text-decoration: underline; }
.nl-card__p { margin: 0 0 .9rem; color: var(--nl-ink-soft); font-size: .96rem; }
.nl-card__list { margin: 0 0 1.1rem; padding-left: 1.1rem; color: var(--nl-ink-soft); font-size: .9rem; }
.nl-card__list li { margin-bottom: .25rem; }
.nl-card__link { margin-top: auto; font-weight: 700; font-size: .93rem; text-decoration: none; color: var(--nl-navy-600); }
.nl-card__link:hover { text-decoration: underline; }

.nl-minicards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .9rem; margin: 1.2rem 0 0; }
.nl-minicard {
  display: flex; flex-direction: column; gap: .25rem; text-decoration: none;
  border: 1px solid var(--nl-line); border-left: 4px solid var(--nl-amber-500);
  border-radius: var(--nl-radius); padding: .9rem 1rem; background: #fff;
  transition: box-shadow .15s, border-color .15s;
}
.nl-minicard:hover { box-shadow: var(--nl-shadow); border-color: #c3d2df; border-left-color: var(--nl-amber-600); }
.nl-minicard strong { color: var(--nl-navy-800); font-size: .99rem; }
.nl-minicard span { color: var(--nl-ink-soft); font-size: .87rem; line-height: 1.45; }

/* --------------------------------------------------------------- Areas --- */
.nl-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.nl-area {
  display: flex; flex-direction: column; gap: .3rem; padding: 1.2rem 1.3rem;
  background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius);
  text-decoration: none; transition: box-shadow .15s, transform .15s;
}
.nl-area:hover { box-shadow: var(--nl-shadow); transform: translateY(-2px); }
.nl-area__city { font-weight: 800; font-size: 1.08rem; color: var(--nl-navy-800); }
.nl-area__link { font-size: .89rem; color: var(--nl-navy-600); font-weight: 600; }

/* --------------------------------------------------------------- Panel --- */
.nl-panel { background: var(--nl-bg-alt); border: 1px solid var(--nl-line); border-radius: var(--nl-radius-lg); padding: 1.5rem 1.4rem; }
.nl-panel--sticky { position: sticky; top: 86px; }
@media (max-width: 900px) { .nl-panel--sticky { position: static; } }
.nl-panel__h { font-size: 1.1rem; margin: 0 0 .7rem; font-weight: 800; color: var(--nl-navy-800); }
.nl-panel__h--sm { font-size: .95rem; }
.nl-panel__p { margin: 0; font-size: .93rem; color: var(--nl-ink-soft); }
.nl-panel__list { list-style: none; margin: 0; padding: 0; }
.nl-panel__list li { display: flex; align-items: flex-start; gap: .5rem; padding: .42rem 0; font-size: .95rem; border-bottom: 1px solid #e5ecf1; }
.nl-panel__list li:last-child { border-bottom: none; }
.nl-panel__list svg { color: var(--nl-amber-600); flex: none; margin-top: .18rem; }
.nl-panel__links { list-style: none; margin: 0; padding: 0; }
.nl-panel__links li { padding: .34rem 0; font-size: .93rem; }
.nl-hr { border: none; border-top: 1px solid var(--nl-line); margin: 1.3rem 0; }

.nl-facts { display: grid; grid-template-columns: auto 1fr; gap: .45rem 1rem; margin: 0 0 .3rem; font-size: .93rem; }
.nl-facts dt { font-weight: 700; color: var(--nl-navy-800); }
.nl-facts dd { margin: 0; color: var(--nl-ink-soft); }

/* ---------------------------------------------------------------- Lists -- */
.nl-checklist { list-style: none; margin: 1rem 0 1.6rem; padding: 0; }
.nl-checklist li { display: flex; align-items: flex-start; gap: .6rem; padding: .42rem 0; }
.nl-checklist svg { color: var(--nl-amber-600); flex: none; margin-top: .3rem; }

.nl-numlist { margin: 1rem 0 1.6rem; padding-left: 1.3rem; }
.nl-numlist li { margin-bottom: .6rem; max-width: 70ch; }

.nl-inlinelist { display: flex; flex-wrap: wrap; gap: .5rem .8rem; list-style: none; margin: .9rem 0 0; padding: 0; font-size: .93rem; }
.nl-inlinelist li::after { content: "\00b7"; margin-left: .8rem; color: var(--nl-line); }
.nl-inlinelist li:last-child::after { content: ""; }

/* Utility classes replacing inline style= attributes, which the CSP blocks. */
.nl-center { text-align: center; }
.nl-center .nl-ctas { justify-content: center; }
.nl-inlinelist--center { justify-content: center; margin-top: 2rem; }

.nl-textlink { font-weight: 700; text-decoration: none; }
.nl-textlink:hover { text-decoration: underline; }

/* ----------------------------------------------------------------- FAQ --- */
.nl-faq { border-top: 1px solid var(--nl-line); }
.nl-faq__item { border-bottom: 1px solid var(--nl-line); }
.nl-faq__item summary {
  cursor: pointer; padding: 1.05rem 2.2rem 1.05rem 0; font-weight: 700;
  font-size: 1.02rem; position: relative; list-style: none; color: var(--nl-navy-800);
}
.nl-faq__item summary::-webkit-details-marker { display: none; }
.nl-faq__item summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: 9px; height: 9px; border-right: 2px solid var(--nl-amber-600); border-bottom: 2px solid var(--nl-amber-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s;
}
.nl-faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.nl-faq__a { padding: 0 0 1.1rem; }
.nl-faq__a p { margin: 0; color: var(--nl-ink-soft); max-width: 72ch; }

/* --------------------------------------------------------------- Quote --- */
.nl-quote { margin: 0; border-left: 4px solid var(--nl-amber-500); padding: .3rem 0 .3rem 1.4rem; }
.nl-quote p { font-size: 1.24rem; line-height: 1.5; font-weight: 500; margin: 0 0 .6rem; color: var(--nl-navy-800); }
.nl-quote cite { font-style: normal; font-size: .92rem; color: var(--nl-ink-soft); font-weight: 700; }

/* ----------------------------------------------------------------- CTA --- */
.nl-cta { background: var(--nl-navy-800); color: #fff; padding: 3.4rem 0; }
.nl-cta__inner { text-align: center; }
.nl-cta__sub { color: #cfdcea; font-size: 1.06rem; margin: 0 auto; max-width: 56ch; }
.nl-cta .nl-ctas { justify-content: center; }
.nl-cta .nl-btn--ghost { color: #fff; border-color: #5a7994; }
.nl-cta .nl-btn--ghost:hover { background: #fff; color: var(--nl-navy-800); }
.nl-cta__note { color: #93aac0; font-size: .87rem; margin: 1.3rem 0 0; }

/* -------------------------------------------------------------- Footer --- */
.nl-footer { background: var(--nl-navy-900); color: #b9cbdc; padding: 3rem 0 0; font-size: .93rem; }
.nl-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.2rem; }
@media (max-width: 900px) { .nl-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nl-footer__grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.nl-footer__name { color: #fff; font-weight: 800; font-size: 1.12rem; margin: 0 0 .3rem; }
.nl-footer__tag { color: var(--nl-amber-500); font-weight: 600; margin: 0 0 .7rem; }
.nl-footer__meta { font-size: .86rem; color: #8ba1b6; margin: .5rem 0 0; line-height: 1.55; }
.nl-footer__h { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin: 0 0 .8rem; font-weight: 700; }
.nl-footer ul { list-style: none; margin: 0; padding: 0; }
.nl-footer li { padding: .26rem 0; }
.nl-footer a { color: #b9cbdc; text-decoration: none; }
.nl-footer a:hover { color: var(--nl-amber-500); text-decoration: underline; }
.nl-footer__bar {
  border-top: 1px solid #1b3149; padding: 1.1rem 20px; display: flex;
  flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .84rem; color: #7f96ab;
}
.nl-footer__bar p { margin: 0; }

/* ------------------------------------------------------- Sticky callbar -- */
.nl-callbar { display: none; }
@media (max-width: 767px) {
  .nl-callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
    background: var(--nl-navy-900); border-top: 2px solid var(--nl-amber-500);
    padding: 8px; gap: 8px; box-shadow: 0 -4px 18px rgba(0,0,0,.22);
    /* Keep the buttons clear of the iPhone home indicator. */
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .nl-callbar__btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    min-height: 48px; border-radius: 8px; text-decoration: none;
    font-weight: 800; font-size: .98rem; background: #1c3550; color: #fff;
  }
  .nl-callbar__btn--primary { flex: 2.2; background: var(--nl-amber-500); color: var(--nl-navy-900); }
}

/* --------------------------------------------------------------- Forms --- */
.nl-formwrap { background: var(--nl-amber-050); border: 1px solid #f0dcb6; border-radius: var(--nl-radius-lg); padding: 1.5rem 1.4rem; margin-bottom: 2rem; }
.nl-formwrap .nl-h2 { margin-top: 0; }
.nl-formwrap p { margin: 0 0 1rem; color: #6b5a3c; }
.nl-formwrap__cta { margin: 0; }

/* --------------------------------------------------------------- Print --- */
@media print {
  .nl-header, .nl-callbar, .nl-cta, .nl-navtoggle { display: none !important; }
  body { padding-bottom: 0; font-size: 12pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* --------------------------------------------------------------- Steps --- */
.nl-steps {
  list-style: none; margin: 1.6rem 0 0; padding: 0; counter-reset: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem;
}
.nl-step { position: relative; background: #fff; border: 1px solid var(--nl-line); border-radius: var(--nl-radius-lg); padding: 2.2rem 1.4rem 1.5rem; }
.nl-step__n {
  position: absolute; top: -18px; left: 1.4rem;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--nl-amber-500); color: var(--nl-navy-900);
  border-radius: 50%; font-weight: 800; font-size: 1.06rem;
  border: 3px solid var(--nl-bg-alt);
}
.nl-step__h { margin: 0 0 .45rem; font-size: 1.1rem; font-weight: 750; color: var(--nl-navy-800); }
.nl-step__p { margin: 0; font-size: .95rem; color: var(--nl-ink-soft); }

/* ------------------------------------------------------------- Gallery --- */
.nl-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; margin-top: 1.4rem; }
.nl-gallery__item { margin: 0; border-radius: var(--nl-radius-lg); overflow: hidden; border: 1px solid var(--nl-line); background: #fff; }
.nl-gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--nl-bg-alt); }
.nl-gallery__item figcaption { padding: .7rem 1rem; font-size: .89rem; color: var(--nl-ink-soft); font-weight: 600; }

/* ----------------------------------------------------- Call CTA labels --- */
/* Screen-reader-only: the button reads "Call Now" visually, but assistive tech
   and voice control announce the actual number. */
.nl-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* The number stays readable as text. A desktop visitor cannot tap a button, so
   "Call Now" alone would be a dead end for them. */
.nl-ctas__num { margin: .85rem 0 0; font-size: .93rem; color: var(--nl-ink-soft); }
.nl-ctas__num a { font-weight: 700; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.nl-ctas__num a:hover { color: var(--nl-navy-800); }
.nl-hero .nl-ctas__num, .nl-pagehead .nl-ctas__num, .nl-cta .nl-ctas__num { color: #9fb6cb; }
.nl-hero .nl-ctas__num a, .nl-pagehead .nl-ctas__num a, .nl-cta .nl-ctas__num a { color: #fff; }
.nl-panel .nl-ctas__num { font-size: .87rem; text-align: center; }

/* Header: "Call Now" on wide screens where the number also fits, number only
   when space is tight. */
.nl-nav__ctanum { display: inline; }
.nl-nav__ctalabel { display: none; }
@media (min-width: 1040px) {
  .nl-nav__ctalabel { display: inline; }
  .nl-nav__ctanum { display: inline; opacity: .85; }
  .nl-nav__ctalabel::after { content: "\00b7"; margin: 0 .3rem; opacity: .5; }
}

/* -------------------------------------------------- Sidebar trust block --- */
.nl-minitrust { margin: 0; }
.nl-minitrust__row { padding: .5rem 0; border-bottom: 1px solid #e5ecf1; }
.nl-minitrust__row:last-child { border-bottom: none; }
.nl-minitrust dt { font-weight: 750; font-size: .92rem; color: var(--nl-navy-800); }
.nl-minitrust dd { margin: .1rem 0 0; font-size: .85rem; color: var(--nl-ink-soft); line-height: 1.45; }
.nl-panel__note { margin: 1rem 0 0; font-size: .85rem; color: var(--nl-ink-soft); font-style: italic; line-height: 1.5; }

/* Distance line on extended-range service area cards. */
.nl-card__meta { margin: 0 0 1rem; font-size: .85rem; color: var(--nl-ink-soft); font-style: italic; }

/* ---------------------------------------------- Credentials & consent --- */
.nl-cred { margin: 1.1rem 0 0; font-size: .9rem; color: var(--nl-ink-soft); }
.nl-cred--compact { font-size: .84rem; margin-top: .8rem; }
.nl-hero .nl-cred, .nl-pagehead .nl-cred, .nl-cta .nl-cred { color: #9fb6cb; }
.nl-hero .nl-cred a, .nl-pagehead .nl-cred a, .nl-cta .nl-cred a { color: #fff; }
.nl-guarantee {
  margin: 1.4rem 0 0; padding: .9rem 1.1rem; font-size: .93rem;
  background: var(--nl-amber-050); border: 1px solid #f0dcb6;
  border-left: 4px solid var(--nl-amber-500); border-radius: var(--nl-radius);
  color: #6b5a3c;
}
.nl-guarantee strong { color: var(--nl-navy-800); }
.nl-consent { margin: 1rem 0 0; font-size: .82rem; color: var(--nl-ink-soft); line-height: 1.5; max-width: 60ch; }
.nl-hero .nl-consent, .nl-pagehead .nl-consent, .nl-cta .nl-consent { color: #8ba1b6; }

/* ------------------------------------------------------- Estimate form --- */
.nl-form { background: var(--nl-amber-050); border: 1px solid #f0dcb6; border-radius: var(--nl-radius-lg); padding: 1.6rem 1.5rem; margin-bottom: 2rem; scroll-margin-top: 90px; }
.nl-form .nl-h2 { margin-top: 0; }
.nl-form__lede { margin: 0 0 1.3rem; color: #6b5a3c; font-size: .96rem; }
.nl-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .nl-form__grid { grid-template-columns: 1fr; } }
.nl-field { display: flex; flex-direction: column; gap: .35rem; }
.nl-field--full { grid-column: 1 / -1; }
.nl-field label { font-weight: 700; font-size: .92rem; color: var(--nl-navy-800); }
.nl-req { color: var(--nl-amber-600); }
.nl-opt { font-weight: 500; color: var(--nl-ink-soft); font-size: .85rem; }
.nl-field input, .nl-field select, .nl-field textarea {
  font: inherit; font-size: 1rem; padding: .7rem .85rem; border: 1.5px solid #d8c9a8;
  border-radius: var(--nl-radius); background: #fff; color: var(--nl-ink); min-height: 48px;
}
.nl-field textarea { min-height: 120px; resize: vertical; }
.nl-field input:focus, .nl-field select:focus, .nl-field textarea:focus { border-color: var(--nl-navy-600); outline: 3px solid rgba(31,68,104,.18); outline-offset: 0; }
.nl-field input:user-invalid, .nl-field textarea:user-invalid { border-color: #b3261e; }
/* Honeypot: off-canvas, not display:none, so naive bots still "see" it. */
.nl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin: 1.1rem 0 .2rem; min-height: 65px; }
.nl-form__status { margin: .6rem 0 0; font-size: .95rem; font-weight: 600; min-height: 1.4em; }
.nl-form__status.is-ok { color: #1f6b3a; }
.nl-form__status.is-err { color: #b3261e; }
.nl-form[data-busy] button[type="submit"] { opacity: .65; pointer-events: none; }

/* Desktop Call Now popover (main.js). Positioned by script; fixed so it
   survives scroll containers. */
.nl-callpop {
  position: fixed; z-index: 200; width: 260px; padding: 16px 40px 14px 16px;
  background: var(--nl-bg); color: var(--nl-ink); border: 1px solid var(--nl-line);
  border-top: 3px solid var(--nl-amber-500); border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow-lg);
}
.nl-callpop p { margin: 0; }
.nl-callpop__lead { font-size: .85rem; color: var(--nl-ink-soft); }
.nl-callpop__num { font-size: 1.5rem; font-weight: 800; letter-spacing: .01em; margin-top: 2px; user-select: all; }
.nl-callpop__alt { font-size: .85rem; margin-top: 8px; }
.nl-callpop__close {
  position: absolute; top: 6px; right: 6px; width: 30px; height: 30px;
  border: 0; background: transparent; color: var(--nl-ink-soft); font-size: 1.4rem; line-height: 1;
  cursor: pointer; border-radius: 6px;
}
.nl-callpop__close:hover, .nl-callpop__close:focus-visible { background: var(--nl-bg-alt); color: var(--nl-ink); outline: 2px solid var(--nl-amber-600); }

/* Owner photo on About (only renders when biz.ownerPhoto is set). */
.nl-owner { float: right; width: min(240px, 42%); margin: 0 0 1rem 1.5rem; }
.nl-owner img { display: block; width: 100%; height: auto; border-radius: var(--nl-radius); box-shadow: var(--nl-shadow); }
.nl-owner figcaption { font-size: .85rem; color: var(--nl-ink-soft); margin-top: .4rem; text-align: center; }
@media (max-width: 560px) { .nl-owner { float: none; width: 200px; margin: 0 auto 1.2rem; } }
