/* Econo Roofing — shared pillar section styles.
   Auto-extracted from inline <style> blocks. Do not edit by
   hand — run tools/phase9_extract_css.py to regenerate. */

/* ===== #gw-css-v2 ===== */
.guide-wizard-section .gw-wrap { position:relative; z-index:1; max-width:880px; margin:0 auto; padding:0 24px; }
    .gw-trust-strip {
      display:flex; align-items:center; justify-content:center; flex-wrap:wrap;
      gap:8px 12px; margin:0 auto 24px; padding:10px 18px;
      background:rgba(255,255,255,.85); backdrop-filter:blur(6px);
      -webkit-backdrop-filter:blur(6px);
      border:1px solid rgba(0,0,0,.06); border-radius:999px;
      width:fit-content; max-width:100%;
      font-size:12px; font-weight:600; color:var(--ink-2);
      box-shadow:0 2px 8px rgba(0,0,0,.04);
    }
    .gw-trust-stars { display:inline-flex; gap:1px; line-height:0; }
    .gw-trust-strip strong { color:var(--ink-1); }
    .gw-trust-dot { color:rgba(0,0,0,.2); font-weight:400; }
    @media (max-width:560px) {
      .gw-trust-strip { font-size:11px; padding:8px 14px; }
    }

    .gw-tool-card {
      background:#fff;
      border-radius:24px;
      box-shadow:0 24px 60px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
      border:1px solid rgba(0,0,0,.04);
      padding:48px 44px 40px;
      position:relative;
    }

    /* Phone fallback below the tool card */
    .gw-phone-fallback {
      display:flex; align-items:center; justify-content:center; gap:8px;
      margin:18px auto 0; padding:12px 20px;
      font-size:13px; color:var(--ink-3); font-weight:600;
    }
    .gw-phone-fallback a {
      color:var(--red); font-weight:800; text-decoration:none;
      display:inline-flex; align-items:center; gap:5px;
    }
    .gw-phone-fallback a:hover { text-decoration:underline; }

    /* Progress bar */
    .gw-progress { display:flex; align-items:flex-start; justify-content:center; gap:18px; margin-bottom:36px; }
    .gw-progress-step { display:flex; flex-direction:column; align-items:center; gap:8px; }
    .gw-progress-pill {
      width:44px; height:44px; border-radius:50%; background:#fff;
      border:2px solid rgba(0,0,0,.1); color:rgba(0,0,0,.4);
      display:flex; align-items:center; justify-content:center;
      font-size:16px; font-weight:800; transition: all .35s cubic-bezier(.4,0,.2,1);
    }
    .gw-progress-pill.is-active {
      background:var(--red); border-color:var(--red); color:#fff;
      box-shadow:0 6px 18px rgba(200,16,46,.3), 0 0 0 4px rgba(200,16,46,.12);
      transform:scale(1.05);
    }
    .gw-progress-pill.is-done {
      background:#16a34a; border-color:#16a34a; color:#fff;
      box-shadow:0 4px 12px rgba(22,163,74,.25);
    }
    .gw-progress-pill.is-done::after {
      content:'✓'; font-size:18px;
    }
    .gw-progress-pill.is-done .gw-pill-num { display:none; }
    .gw-progress-label {
      font-size:11px; font-weight:700; color:var(--ink-3);
      letter-spacing:.06em; text-transform:uppercase;
      transition:color .25s;
    }
    .gw-progress-step.is-active .gw-progress-label { color:var(--red); }
    .gw-progress-step.is-done .gw-progress-label { color:#16a34a; }
    .gw-progress-line {
      flex:0 0 80px; height:2px; background:rgba(0,0,0,.08);
      margin:21px 0 0; position:relative; overflow:hidden;
    }
    .gw-progress-fill {
      position:absolute; top:0; left:0; bottom:0; width:0;
      background:linear-gradient(90deg,#16a34a,#22c55e);
      transition:width .5s cubic-bezier(.4,0,.2,1);
    }
    .gw-wizard[data-step="2"] .gw-progress-fill { width:100%; }

    /* Steps + transitions */
    .gw-step { animation: gw-slide-in .4s cubic-bezier(.4,0,.2,1); }
    @keyframes gw-slide-in {
      from { opacity:0; transform:translateX(20px); }
      to { opacity:1; transform:translateX(0); }
    }
    .gw-question { text-align:center; font-size:20px; font-weight:700; color:var(--ink-1); margin:0 0 28px; line-height:1.4; letter-spacing:-.005em; }

    /* Step 1: 2x2 intent cards */
    .gw-intents { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
    .gw-intent {
      display:flex; flex-direction:column; align-items:flex-start; gap:10px;
      background:#fff; border:2px solid rgba(0,0,0,.06); border-radius:16px;
      padding:24px 22px 20px; cursor:pointer; text-align:left;
      transition: transform .15s, box-shadow .25s, border-color .2s;
      font-family:inherit; position:relative; overflow:hidden;
    }
    .gw-intent::before {
      content:''; position:absolute; top:0; left:0; right:0; height:3px;
      background:var(--gw-color); opacity:0; transition:opacity .25s;
    }
    .gw-intent:hover {
      transform:translateY(-4px);
      box-shadow:0 16px 32px rgba(0,0,0,.08), 0 0 0 1px var(--gw-color);
      border-color:var(--gw-color);
    }
    .gw-intent:hover::before { opacity:1; }
    .gw-intent:active { transform:translateY(-2px) scale(.99); }
    .gw-intent-icon {
      width:52px; height:52px; border-radius:14px;
      background:var(--gw-bg); color:var(--gw-color);
      display:flex; align-items:center; justify-content:center;
      transition: transform .25s;
    }
    .gw-intent:hover .gw-intent-icon { transform:scale(1.05) rotate(-3deg); }
    .gw-intent-title {
      font-size:17px; font-weight:800; color:var(--ink-1);
      letter-spacing:-.01em; line-height:1.25;
    }
    .gw-intent-sub { font-size:13px; color:var(--ink-3); line-height:1.5; }
    .gw-intent-cta {
      margin-top:6px; font-size:13px; font-weight:700;
      color:var(--gw-color); display:inline-flex; align-items:center; gap:5px;
    }
    .gw-intent-cta svg { transition:transform .2s; }
    .gw-intent:hover .gw-intent-cta svg { transform:translateX(4px); }

    .gw-shortcut { text-align:center; margin:24px 0 0; font-size:13px; color:var(--ink-3); }
    .gw-shortcut a { color:var(--red); font-weight:700; text-decoration:none; border-bottom:1px solid rgba(200,16,46,.4); }

    /* Step 2: breadcrumb + recommended hero + alternatives */
    .gw-breadcrumb {
      display:inline-flex; align-items:center; gap:8px;
      background:var(--gw-bg); padding:8px 14px 8px 16px; border-radius:999px;
      margin-bottom:20px; font-size:12px; color:var(--ink-2);
      border:1px solid color-mix(in srgb, var(--gw-color) 25%, transparent);
    }
    .gw-bc-label { color:var(--ink-3); font-weight:600; }
    .gw-bc-value { color:var(--gw-color-dark); font-weight:700; font-style:italic; }
    .gw-bc-edit {
      background:none; border:none; color:var(--gw-color); font-weight:700;
      font-size:11px; cursor:pointer; text-transform:uppercase;
      letter-spacing:.06em; padding:4px 8px; border-radius:6px;
      font-family:inherit;
      transition: background .15s;
    }
    .gw-bc-edit:hover { background:rgba(0,0,0,.05); }

    /* Hero recommended card */
    .gw-recommended {
      display:block;
      background:linear-gradient(135deg,#fff 0%, var(--gw-bg) 100%);
      border:2px solid var(--gw-color);
      border-radius:18px;
      padding:0;
      text-decoration:none;
      box-shadow:0 8px 28px color-mix(in srgb, var(--gw-color) 18%, transparent);
      position:relative;
      overflow:hidden;
      transition: transform .15s, box-shadow .25s;
      margin-bottom:28px;
    }
    .gw-recommended::before {
      content:''; position:absolute; top:0; left:0; right:0; height:5px;
      background:linear-gradient(90deg, var(--gw-color), var(--gw-color-dark));
    }
    .gw-recommended:hover {
      transform:translateY(-3px);
      box-shadow:0 16px 40px color-mix(in srgb, var(--gw-color) 28%, transparent);
    }
    .gw-rec-badge {
      position:absolute; top:18px; right:20px;
      background:var(--gw-color); color:#fff;
      font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
      padding:5px 11px; border-radius:999px;
      box-shadow:0 4px 10px color-mix(in srgb, var(--gw-color) 35%, transparent);
      animation: gw-pulse 2.4s ease-in-out infinite;
    }
    @keyframes gw-pulse {
      0%, 100% { transform:scale(1); }
      50% { transform:scale(1.04); }
    }
    .gw-rec-inner {
      display:grid; grid-template-columns: 64px 1fr 32px;
      gap:20px; align-items:center;
      padding:32px 28px 28px;
    }
    .gw-rec-icon {
      width:64px; height:64px; border-radius:16px;
      background:var(--gw-color); color:#fff;
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 6px 16px color-mix(in srgb, var(--gw-color) 32%, transparent);
    }
    .gw-rec-body { min-width:0; }
    .gw-rec-title {
      margin:0 0 8px; font-size:24px; font-weight:800;
      color:var(--ink-1); line-height:1.2; letter-spacing:-.015em;
    }
    .gw-rec-desc {
      margin:0 0 10px; font-size:15px; color:var(--ink-2); line-height:1.55;
    }
    .gw-rec-pills { display:flex; flex-wrap:wrap; gap:6px; margin:0 0 10px; }
    .gw-pill {
      display:inline-flex; align-items:center; gap:5px;
      font-size:11px; font-weight:700; color:var(--gw-color-dark);
      background:color-mix(in srgb, var(--gw-color) 10%, white);
      padding:4px 10px; border-radius:999px;
      border:1px solid color-mix(in srgb, var(--gw-color) 22%, transparent);
    }
    .gw-pill-time { background:rgba(0,0,0,.04); color:var(--ink-2); border-color:rgba(0,0,0,.08); }
    .gw-rec-why {
      margin:0 0 10px; font-size:13px; color:var(--ink-3); line-height:1.5;
      padding-top:10px; border-top:1px solid color-mix(in srgb, var(--gw-color) 18%, transparent);
    }
    .gw-rec-why strong { color:var(--gw-color-dark); }
    .gw-rec-social {
      margin:0; font-size:12px; color:var(--gw-color-dark);
      font-weight:600; display:flex; align-items:center; gap:6px;
    }
    .gw-rec-arrow {
      width:32px; height:32px; border-radius:50%; background:#fff;
      color:var(--gw-color); display:flex; align-items:center; justify-content:center;
      box-shadow:0 4px 10px rgba(0,0,0,.06);
      transition: transform .2s;
    }
    .gw-recommended:hover .gw-rec-arrow { transform:translateX(4px); }

    /* Alternatives label + 2-col grid */
    .gw-alt-label {
      font-size:12px; font-weight:700; color:var(--ink-3);
      letter-spacing:.06em; text-transform:uppercase;
      margin:0 0 12px;
    }
    .gw-alts { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .gw-alt {
      display:grid; grid-template-columns:42px 1fr auto; gap:12px; align-items:center;
      background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:12px;
      padding:14px 16px; text-decoration:none;
      transition: transform .15s, border-color .2s, box-shadow .2s;
    }
    .gw-alt:hover {
      transform:translateY(-2px);
      border-color:var(--gw-color);
      box-shadow:0 6px 18px rgba(0,0,0,.06);
    }
    .gw-alt-icon {
      width:42px; height:42px; border-radius:10px;
      background:var(--gw-bg); color:var(--gw-color);
      display:flex; align-items:center; justify-content:center;
    }
    .gw-alt-text { display:flex; flex-direction:column; gap:2px; min-width:0; }
    .gw-alt-title { font-size:14px; font-weight:700; color:var(--ink-1); line-height:1.3; }
    .gw-alt-desc { font-size:12px; color:var(--ink-3); line-height:1.4; }
    .gw-alt-pills { display:flex; align-items:center; gap:5px; margin-top:4px; font-size:11px; }
    .gw-alt-pills .gw-pill { font-size:10px; padding:2px 8px; }
    .gw-pill-sep { color:rgba(0,0,0,.2); font-weight:400; }
    .gw-alt-pills .gw-pill-time { font-size:10px; font-weight:600; color:var(--ink-3); }
    .gw-alt-arrow { color:var(--gw-color); font-size:20px; line-height:1; transition:transform .15s; }
    .gw-alt:hover .gw-alt-arrow { transform:translateX(3px); }

    /* Step footer */
    .gw-step-footer {
      margin-top:24px; padding-top:20px;
      border-top:1px solid rgba(0,0,0,.06);
      display:flex; justify-content:center;
    }
    .gw-browse-link {
      color:var(--ink-2); font-size:13px; font-weight:600;
      text-decoration:none; border-bottom:1px dotted rgba(0,0,0,.2);
      transition: color .15s, border-color .15s;
    }
    .gw-browse-link:hover { color:var(--gw-color); border-bottom-color:var(--gw-color); }

    /* Mobile */
    @media (max-width: 700px) {
      .gw-tool-card { padding:32px 22px 26px; border-radius:18px; }
      .gw-progress { gap:10px; margin-bottom:28px; }
      .gw-progress-pill { width:38px; height:38px; font-size:14px; }
      .gw-progress-line { flex:0 0 50px; margin:18px 0 0; }
      .gw-progress-label { font-size:10px; }
      .gw-question { font-size:17px; margin-bottom:22px; }
      .gw-intents { grid-template-columns:1fr; gap:10px; }
      .gw-intent { padding:18px 18px 16px; }
      .gw-intent-title { font-size:15px; }
      .gw-intent-icon { width:46px; height:46px; }
      .gw-rec-inner { grid-template-columns:1fr; gap:14px; padding:24px 22px 22px; padding-top:32px; }
      .gw-rec-icon { width:54px; height:54px; }
      .gw-rec-title { font-size:20px; }
      .gw-rec-desc { font-size:14px; }
      .gw-rec-arrow { display:none; }
      .gw-rec-badge { top:14px; right:14px; font-size:9px; padding:4px 9px; }
      .gw-alts { grid-template-columns:1fr; }
      .gw-breadcrumb { font-size:11px; padding:6px 12px 6px 14px; }
    }

/* ===== #pt-css ===== */
.process-timeline {
        list-style:none; margin:0; padding:0; position:relative;
      }
      .pt-step {
        display:grid; grid-template-columns:64px 1fr; gap:24px;
        padding-bottom:32px; position:relative;
      }
      .pt-step:last-child { padding-bottom:0; }
      /* Connecting line (between markers) */
      .pt-step:not(:last-child)::before {
        content:''; position:absolute;
        left:31px; top:64px; bottom:0; width:2px;
        background:linear-gradient(to bottom, var(--red) 0%, rgba(200,16,46,.2) 70%, rgba(200,16,46,.05) 100%);
      }
      .pt-marker { position:relative; z-index:2; }
      .pt-num {
        width:64px; height:64px; border-radius:50%;
        background:linear-gradient(135deg, var(--red), #922b21);
        color:#fff; display:flex; align-items:center; justify-content:center;
        font-size:24px; font-weight:800;
        box-shadow:0 8px 22px rgba(200,16,46,.32), inset 0 1px 0 rgba(255,255,255,.18);
        position:relative;
      }
      /* Final step: green checkmark celebration */
      .pt-step-final .pt-num {
        background:linear-gradient(135deg, #16a34a, #15803d);
        box-shadow:0 8px 22px rgba(22,163,74,.32), inset 0 1px 0 rgba(255,255,255,.18);
      }
      .pt-body {
        background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:16px;
        padding:22px 26px 22px;
        box-shadow:0 2px 10px rgba(0,0,0,.04);
        transition: transform .15s, box-shadow .25s, border-color .2s;
      }
      .pt-body:hover {
        transform:translateY(-2px);
        box-shadow:0 10px 28px rgba(0,0,0,.06);
        border-color:rgba(200,16,46,.18);
      }
      .pt-step-final .pt-body {
        background:linear-gradient(135deg, #fff 0%, rgba(22,163,74,.04) 100%);
        border-color:rgba(22,163,74,.18);
      }
      .pt-step-final .pt-body:hover { border-color:rgba(22,163,74,.32); }
      .pt-eyebrow {
        display:inline-flex; align-items:center; gap:6px;
        font-size:11px; font-weight:700; color:var(--red);
        letter-spacing:.06em; text-transform:uppercase; margin:0 0 6px;
      }
      .pt-step-final .pt-eyebrow { color:#16a34a; }
      .pt-icon {
        width:18px; height:18px; border-radius:5px;
        background:rgba(200,16,46,.1); display:inline-flex;
        align-items:center; justify-content:center;
      }
      .pt-step-final .pt-icon { background:rgba(22,163,74,.12); color:#16a34a; }
      .pt-title {
        margin:0 0 8px; font-size:19px; font-weight:800;
        color:var(--ink-1); line-height:1.25; letter-spacing:-.005em;
      }
      .pt-desc {
        margin:0 0 14px; font-size:14px; color:var(--ink-2);
        line-height:1.6;
      }
      .pt-pills { display:flex; flex-wrap:wrap; gap:6px; }
      .pt-pill {
        display:inline-flex; align-items:center; gap:5px;
        font-size:11px; font-weight:700;
        padding:5px 10px; border-radius:999px;
        line-height:1;
      }
      .pt-pill-time {
        background:rgba(0,0,0,.04); color:var(--ink-2);
        border:1px solid rgba(0,0,0,.06);
      }
      .pt-pill-feature {
        background:rgba(200,16,46,.06); color:var(--red);
        border:1px solid rgba(200,16,46,.14);
      }
      .pt-step-final .pt-pill-feature {
        background:rgba(22,163,74,.08); color:#16a34a;
        border-color:rgba(22,163,74,.18);
      }

      @media (max-width: 600px) {
        .pt-step { grid-template-columns:48px 1fr; gap:16px; }
        .pt-num { width:48px; height:48px; font-size:18px; }
        .pt-step:not(:last-child)::before { left:23px; top:48px; }
        .pt-body { padding:18px 20px; }
        .pt-title { font-size:17px; }
        .pt-desc { font-size:13.5px; }
      }

/* ===== #hero-facts-css ===== */
.hero-facts {
        margin-top:1.25rem;
        display:inline-flex; flex-wrap:wrap; gap:0;
        background:rgba(255,255,255,.06);
        border:1px solid rgba(255,255,255,.14);
        border-radius:14px; backdrop-filter:blur(8px);
        overflow:hidden;
        box-shadow:0 4px 16px rgba(0,0,0,.18);
      }
      .hero-fact {
        display:flex; flex-direction:column; align-items:flex-start;
        padding:10px 18px; min-width:90px;
        border-right:1px solid rgba(255,255,255,.1);
      }
      .hero-fact:last-child { border-right:none; }
      .hero-fact-label {
        font-size:10px; font-weight:700; letter-spacing:.08em;
        text-transform:uppercase; color:rgba(255,255,255,.55);
        line-height:1; margin-bottom:5px;
      }
      .hero-fact-val {
        font-size:17px; font-weight:800; color:#fff; line-height:1;
        letter-spacing:-.005em;
        font-variant-numeric:tabular-nums;
      }
      @media (max-width: 600px) {
        .hero-facts { display:flex; width:100%; }
        .hero-fact { flex:1; padding:9px 10px; min-width:0; }
        .hero-fact-label { font-size:9px; }
        .hero-fact-val { font-size:14px; }
      }

/* ===== #pillar-toc-css ===== */
.pillar-toc {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  z-index: 40;
  font-size: 13px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.pillar-toc-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.pillar-toc ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.pillar-toc li {
  border-left: 2px solid rgba(0,0,0,.08);
  padding: 6px 0 6px 12px;
  transition: border-color .2s;
}
.pillar-toc li.is-active {
  border-left-color: var(--red);
}
.pillar-toc a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  display: block;
  line-height: 1.3;
  transition: color .15s;
}
.pillar-toc a:hover { color: var(--red); }
.pillar-toc li.is-active > a { color: var(--red); font-weight: 700; }
@media (max-width: 1240px) { .pillar-toc { display: none; } }

/* ===== #back-to-top-toc-coexist ===== */
@media (min-width: 1241px) { #back-to-top { display: none !important; } }

/* ===== #mobile-cta-form-v1-css ===== */
/* Mobile-only: dual sticky CTA — form button on the left, call button (existing .mobile-call) on the right */
.mobile-cta-form{display:none;position:fixed;bottom:20px;left:20px;z-index:950;
  padding:12px 20px;border-radius:999px;
  background:#fff;color:#c0392b;border:2px solid #c0392b;font-weight:700;font-size:14px;
  box-shadow:0 4px 20px rgba(0,0,0,.15),0 8px 32px rgba(0,0,0,.1);
  text-decoration:none;transition:transform .2s}
.mobile-cta-form:hover,.mobile-cta-form:active{transform:scale(1.04)}
@media(max-width:768px){.mobile-cta-form{display:inline-flex;align-items:center;gap:6px}}

/* ===== #rg-accordion-css ===== */
.rg-section {
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.rg-section[open] {
  border-color: rgba(200,16,46,.18);
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.rg-section > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
  transition: background .15s;
}
.rg-section > summary::-webkit-details-marker { display: none; }
.rg-section > summary::marker { content: ''; }
.rg-section > summary:hover { background: rgba(0,0,0,.02); }
.rg-section > summary > .rg-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(200,16,46,.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.rg-section[open] > summary > .rg-num {
  background: var(--red); color: #fff;
}
.rg-section > summary > .rg-title {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-1);
  line-height: 1.3;
  margin: 0;
}
.rg-section > summary > .rg-arrow {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--ink-3);
}
.rg-section[open] > summary > .rg-arrow { transform: rotate(180deg); color: var(--red); }
.rg-body { padding: 0 22px 24px 22px; animation: rg-fade .25s ease; }
@keyframes rg-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .rg-section > summary { padding: 16px 16px; gap: 10px; }
  .rg-section > summary > .rg-title { font-size: 15px; }
  .rg-body { padding: 0 16px 18px 16px; }
}

/* ===== #tier3-mobile-form-fix ===== */
/* Mobile form-input fix: 48px tap target + 16px font (iOS no-zoom on focus) */
@media (max-width: 768px) {
  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form input[type="number"],
  .contact-form select,
  .contact-form textarea {
    min-height: 48px !important;
    font-size: 16px !important;
    padding: 12px 14px !important;
  }
  .contact-form textarea {
    min-height: 96px !important;
  }
  .btn,
  .form-submit,
  .page-hero-acts a {
    min-height: 48px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}

/* ===== #nbh-css ===== */
.nbh-grid {
        display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:14px;
      }
      .nbh-card {
        position:relative; background:#fff;
        border:1px solid rgba(0,0,0,.08); border-radius:14px;
        padding:22px 22px 20px;
        box-shadow:0 1px 4px rgba(0,0,0,.04);
        transition: transform .15s, box-shadow .25s, border-color .2s;
      }
      .nbh-card:hover {
        transform:translateY(-3px);
        box-shadow:0 12px 28px rgba(0,0,0,.06);
        border-color:rgba(200,16,46,.22);
      }
      .nbh-pin {
        position:absolute; top:18px; right:18px;
        width:28px; height:28px; border-radius:50%;
        background:rgba(200,16,46,.08); color:var(--red);
        display:flex; align-items:center; justify-content:center;
      }
      .nbh-title {
        font-size:18px; font-weight:800; color:var(--ink-1);
        line-height:1.2; letter-spacing:-.01em; margin:0 0 10px;
        padding-right:36px;
      }
      .nbh-meta { display:flex; flex-wrap:wrap; gap:6px; margin:0 0 12px; }
      .nbh-pill {
        display:inline-flex; align-items:center; gap:4px;
        font-size:11px; font-weight:700; letter-spacing:.02em;
        padding:3px 9px; border-radius:999px;
        background:rgba(0,0,0,.04); color:var(--ink-2);
        border:1px solid rgba(0,0,0,.06);
      }
      .nbh-style {
        font-size:12px; font-weight:600; color:var(--red);
        text-transform:uppercase; letter-spacing:.05em; margin:0 0 10px;
      }
      .nbh-system {
        font-size:13px; color:var(--ink-2); line-height:1.5; margin:0 0 8px;
        padding-bottom:8px; border-bottom:1px solid rgba(0,0,0,.05);
      }
      .nbh-note {
        font-size:12.5px; color:var(--ink-3); line-height:1.55; margin:0;
        font-style:italic;
      }
      .nbh-card-basic .nbh-note { font-style:normal; color:var(--ink-2); margin-top:4px; }

      .nbh-zips {
        margin:24px auto 0; padding:14px 22px;
        background:rgba(0,0,0,.02); border-radius:12px;
        font-size:13px; color:var(--ink-3); text-align:center;
        max-width:880px;
      }
      .nbh-zips strong { color:var(--ink-1); font-weight:700; }

      @media (max-width: 600px) {
        .nbh-card { padding:18px 18px 16px; }
        .nbh-title { font-size:16px; padding-right:32px; }
        .nbh-pin { top:14px; right:14px; width:24px; height:24px; }
      }

