/* ── Page wrapper ── */
  .fgd-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .fgd-page *, .fgd-page *::before, .fgd-page *::after { box-sizing: border-box; }
  .fgd-page p { margin: 0 0 16px; }
  /* Inline body-copy links pick up brand red. Buttons and styled links keep
     their own colors via their dedicated class rules (no link-color override). */
  .fgd-page p a, .fgd-page li a { color: #ed1c23; text-decoration: none; }
  .fgd-page p a:hover, .fgd-page li a:hover { text-decoration: underline; }

  /* Inner contained wrapper */
  .fgd-contained {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Full-bleed wrapper */
  .fgd-full-bleed {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    box-sizing: border-box !important;
  }

  /* Section spacing */
  .fgd-section { margin-top: 56px; margin-bottom: 56px; }

  /* H2 */
  .fgd-page h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #000000;
    border-bottom: 3px solid #ed1c23;
    padding-bottom: 10px;
    margin: 0 0 24px;
  }
  /* H3 */
  .fgd-page h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ed1c23;
    margin: 28px 0 10px;
  }

  /* ── HERO (light, warm, inviting — no background image) ── */
  .fgd-hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 90px 24px 84px;
    background:
      radial-gradient(900px 500px at 100% 0%, rgba(237,28,35,0.13) 0%, transparent 60%),
      radial-gradient(700px 400px at 0% 100%, rgba(237,28,35,0.06) 0%, transparent 55%),
      linear-gradient(180deg, #fdfaf5 0%, #f7f1e8 100%);
    isolation: isolate;
  }
  /* Subtle dot texture for warmth */
  .fgd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.7;
    z-index: 1;
  }
  /* Top red accent bar */
  .fgd-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed1c23 0%, #ed1c23 55%, transparent 100%);
    z-index: 4;
  }

  /* Content layer — centered */
  .fgd-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .fgd-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #ed1c23;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(237,28,35,0.22);
  }
  .fgd-hero-kicker svg { width: 14px; height: 14px; flex-shrink: 0; }

  .fgd-hero h1 {
    color: #0a0a0a;
    font-size: clamp(2rem, 5.6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 auto 22px;
    letter-spacing: -0.02em;
    max-width: 900px;
  }
  .fgd-hero h1 .fgd-hero-h1-accent {
    color: #ed1c23;
    display: inline-block;
    position: relative;
  }
  .fgd-hero h1 .fgd-hero-h1-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 8px;
    background: #ed1c23;
    border-radius: 2px;
    opacity: 0.18;
    z-index: -1;
  }

  /* Higher specificity selector to beat the global ".fgd-page p" margin rule */
  .fgd-hero p.fgd-hero-sub {
    color: #444;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.65;
    text-align: center;
  }

  /* Trust chips — centered */
  .fgd-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
  }
  .fgd-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ece4d4;
    color: #1a1a1a;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .fgd-hero-chip .fgd-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ed1c23;
  }

  /* Buttons — centered, both with strong contrast against cream bg */
  .fgd-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  /* Primary button: red — :link/:visited match CTA-banner specificity,
     !important locks the values so the later CTA rule can't override. */
  .fgd-page .fgd-hero-buttons a.fgd-btn,
  .fgd-page .fgd-hero-buttons a.fgd-btn:link,
  .fgd-page .fgd-hero-buttons a.fgd-btn:visited {
    background: #ed1c23 !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(237,28,35,0.32);
    border: none;
  }
  .fgd-page .fgd-hero-buttons a.fgd-btn:hover,
  .fgd-page .fgd-hero-buttons a.fgd-btn:focus,
  .fgd-page .fgd-hero-buttons a.fgd-btn:active {
    background: #c8151c !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(237,28,35,0.40);
  }
  /* Secondary button: solid black for strong contrast against cream bg.
     :link / :visited match the CTA-banner rule's specificity (which uses
     these pseudo-classes), and !important locks the values so the later
     CTA rule can't override the hero. */
  .fgd-page .fgd-hero-buttons a.fgd-btn-outline,
  .fgd-page .fgd-hero-buttons a.fgd-btn-outline:link,
  .fgd-page .fgd-hero-buttons a.fgd-btn-outline:visited {
    background: #0a0a0a !important;
    border: 2px solid #0a0a0a !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
  .fgd-page .fgd-hero-buttons a.fgd-btn-outline:hover,
  .fgd-page .fgd-hero-buttons a.fgd-btn-outline:focus,
  .fgd-page .fgd-hero-buttons a.fgd-btn-outline:active {
    background: #2a2a2a !important;
    border-color: #2a2a2a !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.24);
  }

  /* Star-rating trust footer */
  .fgd-hero-trustfooter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.92rem;
    font-weight: 500;
    background: #fff;
    border: 1px solid #ece4d4;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .fgd-hero-trustfooter .fgd-stars-gold {
    color: #ffb300;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  .fgd-hero-trustfooter strong { color: #0a0a0a; font-weight: 800; }

  /* Hero mobile tweaks */
  @media (max-width: 600px) {
    .fgd-hero { min-height: 520px; padding: 76px 22px 60px; }
    .fgd-hero-trustfooter { font-size: 0.82rem; padding: 8px 14px; }
  }

  /* ── Answer capsule ── */
  .fgd-answer-capsule {
    background: #f8f8f8;
    border-left: 5px solid #ed1c23;
    border-radius: 0 8px 8px 0;
    padding: 22px 26px;
    margin: 32px 0 40px;
    font-size: 1.05rem;
    color: #1a1a1a;
  }
  .fgd-answer-capsule strong {
    display: block;
    color: #ed1c23;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  /* ── HQ callout — "Headquartered Right Here in Mesa"
     MESA-ONLY block. For other cities, this block becomes a
     "Just minutes from our Mesa HQ" variant. ── */
  .fgd-hq-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #fdfaf5 0%, #f8f1e6 100%);
    border: 1px solid #ece4d4;
    border-left: 6px solid #ed1c23;
    border-radius: 12px;
    padding: 30px 36px;
    margin: 0 0 48px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  }
  @media (max-width: 700px) {
    .fgd-hq-callout {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 26px 24px;
      align-items: flex-start;
    }
  }
  .fgd-hq-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ed1c23;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 22px rgba(237,28,35,0.30);
  }
  .fgd-hq-icon svg { width: 34px; height: 34px; color: #fff; stroke: #fff; }
  .fgd-hq-body { min-width: 0; }
  .fgd-hq-kicker {
    display: inline-block;
    color: #ed1c23;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .fgd-hq-callout h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    margin: 0 0 10px;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 1.25;
    color: #0a0a0a;
  }
  .fgd-hq-callout p {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .fgd-hq-attribution {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: #555;
    font-style: italic;
  }
  .fgd-hq-attribution::before {
    content: "—";
    color: #ed1c23;
    font-style: normal;
    font-weight: 800;
  }
  .fgd-hq-attribution strong { color: #0a0a0a; font-style: normal; }

  /* ── City overview block ── */
  .fgd-city-overview {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 30px;
    margin: 56px 0 56px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  }
  .fgd-city-overview .fgd-city-kicker {
    color: #ed1c23;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
  }
  .fgd-city-overview h2 {
    font-size: 1.4rem;
    margin: 0 0 18px;
    border-bottom: 3px solid #ed1c23;
    padding-bottom: 10px;
    color: #000;
  }
  .fgd-city-overview p { margin: 0 0 14px; color: #1a1a1a; font-size: 1rem; }
  .fgd-city-overview p:last-child { margin-bottom: 0; }

  /* ── Service card grid (with city-keyword H3s) ── */
  .fgd-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 28px;
  }
  .fgd-service-card {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 24px 22px;
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    display: flex;
    flex-direction: column;
  }
  .fgd-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #ed1c23;
  }
  .fgd-service-card .fgd-svc-tag {
    display: inline-block;
    background: #ed1c23;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    align-self: flex-start;
  }
  .fgd-service-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.3;
  }
  .fgd-service-card p { margin: 0 0 16px; color: #333; font-size: 0.95rem; flex-grow: 1; }
  .fgd-page .fgd-service-card a.fgd-svc-link {
    color: #000 !important;
    font-weight: 700;
    font-size: 0.92rem;
    border-bottom: 2px solid #ed1c23;
    align-self: flex-start;
    padding-bottom: 1px;
    text-decoration: none;
  }
  .fgd-page .fgd-service-card a.fgd-svc-link:hover { color: #ed1c23 !important; text-decoration: none; }

  /* ── Trust pillars block ── */
  .fgd-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 26px;
  }
  .fgd-pillar {
    background: #f8f8f8;
    border: 1px solid #ece4d4;
    border-top: 4px solid #ed1c23;
    border-radius: 10px;
    padding: 28px 22px 24px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .fgd-pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .fgd-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ed1c23 0%, #c8151c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(237,28,35,0.28);
  }
  .fgd-pillar-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .fgd-pillar h3 { margin: 0 0 8px; font-size: 1.05rem; }
  .fgd-pillar p { margin: 0; font-size: 0.95rem; color: #333; }

  /* ── Mid-section CTA button (reusable across services / new doors / etc.) ── */
  .fgd-section-cta {
    margin-top: 32px;
    text-align: center;
  }
  .fgd-page a.fgd-section-cta-btn,
  .fgd-page a.fgd-section-cta-btn:link,
  .fgd-page a.fgd-section-cta-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ed1c23 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(237,28,35,0.28);
    transition: all 0.2s ease;
  }
  .fgd-page a.fgd-section-cta-btn:hover,
  .fgd-page a.fgd-section-cta-btn:focus,
  .fgd-page a.fgd-section-cta-btn:active {
    background: #c8151c !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(237,28,35,0.36);
    text-decoration: none;
  }
  .fgd-section-cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .fgd-section-cta-btn:hover svg { transform: translateX(3px); }

  /* ── Diff arrow list ── */
  .fgd-diff-list { list-style: none; padding: 0; margin: 8px 0 0; }
  .fgd-diff-list li {
    padding: 12px 16px 12px 44px;
    position: relative;
    border-bottom: 1px solid #efefef;
    font-size: 0.97rem;
  }
  .fgd-diff-list li::before {
    content: ">";
    position: absolute;
    left: 16px;
    color: #ed1c23;
    font-weight: 800;
  }

  /* ── Trustindex shortcode wrapper ── */
  .fgd-trustindex {
    margin-top: 26px;
    /* Trustindex widget styles itself; this just gives it breathing room */
  }

  /* ── Reviews (legacy / unused while Trustindex shortcode is active) ── */
  .fgd-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 26px;
  }
  .fgd-review {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 24px 22px;
    position: relative;
  }
  .fgd-review .fgd-stars {
    color: #ffb300;
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .fgd-review p {
    color: #1a1a1a;
    font-style: italic;
    font-size: 0.98rem;
    margin: 0 0 16px;
  }
  .fgd-review-author {
    color: #444;
    font-size: 0.88rem;
    font-weight: 600;
  }
  .fgd-review-author span {
    display: block;
    color: #888;
    font-weight: 400;
    font-size: 0.82rem;
    margin-top: 2px;
  }

  /* ── FAQ accordion ── */
  .fgd-faq-item {
    border: 1px solid #dedede;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .fgd-faq-item h3 {
    background: #000;
    color: #fff;
    margin: 0;
    padding: 16px 20px;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
  }
  .fgd-faq-item h3::after { content: " +"; color: #ed1c23; float: right; }
  .fgd-faq-item.fgd-open h3::after { content: " \2013"; }
  .fgd-faq-answer {
    padding: 0 20px;
    background: #fff;
    font-size: 0.95rem;
    color: #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .fgd-faq-item.fgd-open .fgd-faq-answer { padding: 16px 20px; max-height: 1000px; }

  /* ── Proudly Serving (preserved feel, restyled with fgd-* classes) ── */
  .fgd-proudly {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
  }
  .fgd-proudly-banner {
    background: #ed1c23;
    color: #fff;
    text-align: center;
    padding: 48px 24px 56px;
  }
  .fgd-proudly-banner h2 {
    color: #fff;
    border-bottom: none;
    padding: 0;
    margin: 0 auto 14px;
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .fgd-proudly-banner .fgd-rule {
    width: 64px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    margin: 0 auto 18px;
    opacity: 0.85;
  }
  .fgd-proudly-banner p {
    color: #fff;
    opacity: 0.95;
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
  }
  .fgd-zip-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 48px;
  }
  .fgd-zip-block h3 {
    color: #1a1a1a;
    font-size: 1.05rem;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fgd-zip-block h3 svg { width: 22px; height: 22px; color: #ed1c23; flex-shrink: 0; }
  .fgd-zip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
  }
  .fgd-zip {
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    text-align: center;
    padding: 14px 8px;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.18s ease;
  }
  .fgd-zip:hover {
    background: #ed1c23;
    color: #fff;
    border-color: #ed1c23;
    cursor: default;
  }

  /* ── Map + Local Trust two-column ── */
  .fgd-map-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  }
  @media (max-width: 900px) {
    .fgd-map-block { grid-template-columns: 1fr; }
  }
  .fgd-map-frame {
    position: relative;
    min-height: 420px;
    border-right: 1px solid #e8e8e8;
  }
  .fgd-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.55) contrast(1.05);
    transition: filter 0.6s ease;
  }
  .fgd-map-frame:hover iframe { filter: grayscale(0); }
  .fgd-map-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.82);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
    z-index: 2;
  }
  .fgd-map-copy {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  @media (max-width: 700px) { .fgd-map-copy { padding: 40px 28px; } }
  .fgd-map-copy .fgd-kicker {
    color: #ed1c23;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
  }
  .fgd-map-copy h3 {
    color: #000;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    line-height: 1.2;
    margin: 0 0 18px;
  }
  .fgd-map-copy p { color: #444; font-size: 0.97rem; margin: 0 0 22px; }
  .fgd-map-bullets { list-style: none; padding: 0; margin: 0 0 28px; }
  .fgd-map-bullets li {
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
  .fgd-map-bullets li::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ed1c23 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
    margin-right: 12px;
  }
  .fgd-map-buttons { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
  .fgd-page .fgd-map-buttons a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 16px 24px;
    transition: all 0.2s ease;
    color: #fff !important;
  }
  .fgd-page .fgd-map-buttons a.fgd-map-btn-red { background: #ed1c23; }
  .fgd-page .fgd-map-buttons a.fgd-map-btn-red:hover { background: #000; }
  .fgd-page .fgd-map-buttons a.fgd-map-btn-black { background: #000; }
  .fgd-page .fgd-map-buttons a.fgd-map-btn-black:hover { background: #333; }

  /* ── CTA Banner ── */
  .fgd-cta {
    background: #ed1c23;
    color: #fff;
    padding: 56px 32px;
    text-align: center;
  }
  .fgd-cta h2 { color: #fff; border-bottom: none; padding: 0; margin: 0 0 12px; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
  .fgd-cta p { margin: 0 0 24px; font-size: 1.02rem; opacity: 0.95; }
  .fgd-cta-buttons { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

  /* Buttons — text color forced white at every state to beat any theme overrides */
  .fgd-page a.fgd-btn,
  .fgd-page a.fgd-btn:link,
  .fgd-page a.fgd-btn:visited {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .fgd-page a.fgd-btn:hover,
  .fgd-page a.fgd-btn:focus,
  .fgd-page a.fgd-btn:active { background: #222; color: #fff !important; text-decoration: none; }

  .fgd-page a.fgd-btn-outline,
  .fgd-page a.fgd-btn-outline:link,
  .fgd-page a.fgd-btn-outline:visited {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .fgd-page a.fgd-btn-outline:hover,
  .fgd-page a.fgd-btn-outline:focus,
  .fgd-page a.fgd-btn-outline:active { background: rgba(255,255,255,0.1); color: #fff !important; border-color: #fff; }

  /* ── Mobile tweaks ── */
  @media (max-width: 600px) {
    .fgd-page h2 { font-size: 1.35rem; }
    .fgd-section { margin-top: 40px; margin-bottom: 40px; }
    .fgd-cta { padding: 44px 22px; }
    .fgd-hero-overlay { padding: 60px 22px 36px; }
  }

  /* ── Elementor parent overrides ── */
  .elementor-widget-container > .fgd-page { overflow: visible; }
  .elementor-element:has(> .elementor-widget-container > .fgd-page),
  .e-con:has(.fgd-page),
  .e-con-inner:has(.fgd-page),
  .elementor-widget-container:has(> .fgd-page) {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }