/* ========================= GLOBAL RESET & VARS ========================= */
    :root{
      --esp-brand:#FCB017;
      --esp-ink:#111111;
      --esp-text:#222222;
      --esp-line:rgba(0,0,0,.08);
      --esp-dark:#000000;
      --esp-contact-radius:18px;
    }

    /* FIX: Force full height to prevent white space below footer */
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }

    body{
      font-family:Nunito,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
      background:#ffffff;
      color:#111827;
    }
      
    /* Wrapper to handle sticky footer logic */
    .esp-page-wrap {
      display: flex;
      flex-direction: column;
      min-height: 100vh; 
      padding-top: 0; 
      box-sizing: border-box;
    }
      
    img{max-width:100%; height:auto; display:block}

.esp-container {
        flex: 1; 
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 100px; 
    }

    .esp-blog-layout {
      display: flex;
      flex-wrap: wrap; 
      gap: 30px;
      max-width: 1200px; 
      width: 100%;
      margin: 0 auto 60px;
      padding: 0 24px;
      align-items: flex-start; 
      box-sizing: border-box;
    }

    .wrap-blog {
      flex: 1 1 60%; 
      min-width: 300px;
      margin: 0;
      padding: 30px 24px;
      background: #fff;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      box-sizing: border-box;
    }
      
    .wrap-blog h1 { 
        color: #111827; 
        line-height: 1.2; 
        font-weight: 700; 
        font-size: clamp(28px, 4.5vw, 40px); 
        margin-bottom: 20px; 
        margin-top: 0; 
        text-align: left;
    }
      
    .wrap-blog h2 { 
        color: #111827; 
        line-height: 1.2; 
        font-weight: 700; 
        font-size: clamp(24px, 4vw, 32px); 
        margin-top: 40px; 
        margin-bottom: 16px; 
        text-align: left;
    }
      
    .wrap-blog h3 { 
        color: #111827; 
        line-height: 1.2; 
        font-weight: 700; 
        font-size: 20px; 
        margin-top: 24px; 
        margin-bottom: 10px; 
        text-align: left;
    }

    .wrap-blog p { margin: 0 0 12px; font-size: 15px; color: #374151; line-height: 1.7; }
    .wrap-blog ul { margin: 0 0 12px 18px; padding: 0; color: #374151; }
    .wrap-blog li { margin: 8px 0; font-size: 15px; line-height: 1.6; }
    .meta { font-size: 13px; color: #666666; margin-bottom: 24px; text-align: left; display: block; }
    .meta strong { font-weight: 600; }
      
    .note { 
        background: #fff7e6; 
        padding: 20px; 
        border-radius: 12px; 
        margin: 20px 0; 
        font-size: 15px; 
        color: #444; 
        line-height: 1.6; 
        text-align: left; 
        border: none; 
    }
      
    .check { 
        background: #ffffff; 
        padding: 20px; 
        border-radius: 12px; 
        margin-bottom: 20px; 
        border: 1px solid rgba(0,0,0,0.05); 
    }
      
    .check b { display: block; font-size: 18px; color: #000; margin-bottom: 8px; text-align: left; }
    .check p { text-align: left; }
    .check ul { text-align: left; display: block; }

    .hero-img { width: 100%; height: auto; max-height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 24px; display: block; }
      
    .internal-link-box {
        margin-top: 15px;
        font-weight: 700;
        font-size: 15px;
        text-align: left;
    }
    .internal-link-box a {
        color: var(--esp-brand);
        text-decoration: none;
        border-bottom: 1px dashed var(--esp-brand);
    }
    .internal-link-box a:hover {
        border-bottom-style: solid;
    }

    .sub-heading-lead {
        font-weight: 600;
        color: #475569;
        margin-bottom: 20px;
        font-size: 14.5px;
        font-style: italic;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Sidebar Styles */
    .esp-sidebar {
      flex: 1 1 300px; 
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 40px; 
    }

    .esp-widget {
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
      
    .esp-widget h3 {
      margin-top: 0;
      font-size: 18px;
      padding-bottom: 10px;
      margin-bottom: 16px;
      display: block;
      color: #111;
      text-align: left;
      border-bottom: none; 
      font-weight: 700;
    }
      
    .esp-widget ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
      
    .esp-widget li {
      margin-bottom: 12px;
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 12px;
    }
    .esp-widget li:last-child {
      border: none;
      margin: 0;
      padding: 0;
    }
      
    .esp-widget a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
    }

    /* Related Posts */
    .related-posts-custom .widget-title-custom {
        display: block; 
        border-bottom: none !important;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-weight: 700;
        font-size: 20px;
        color: #111;
        text-align: left;
    }
    .related-posts-custom .widget-title-custom::after {
        display: none;
    }
    .related-posts-custom ul li a {
        justify-content: space-between;
        font-weight: 600;
        color: #4b5563;
        padding: 5px 0;
    }
    .related-posts-custom ul li a span {
        color: #9ca3af; 
        font-size: 18px;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .related-posts-custom ul li a:hover {
        color: var(--esp-brand);
    }
    .related-posts-custom ul li a:hover span {
        color: var(--esp-brand);
        transform: translateX(5px);
    }

    /* Hover effects for widget links */
    .esp-widget a:hover {
      color: var(--esp-brand);
    }
    .esp-widget a:hover span {
        transform: translateX(4px);
    }
    .esp-widget a span {
        font-size: 15px;
        transition: transform 0.2s;
    }

    /* CTA Widget */
    .widget-cta {
        background: #111;
        color: #fff;
        text-align: center;
        border: none;
    }
    .widget-cta h3 {
        color: #fff;
        border: none;
        text-align: center;
    }
    .widget-cta p {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .esp-widget :is(a.esp-header__btn, button.esp-header__btn, .esp-header__btn a){
      background: var(--esp-brand) !important;
      color: #111 !important;
      border: 2px solid var(--esp-brand) !important;
      border-radius: 999px !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
      padding: 18px 30px !important;
      font-weight: 700;
      text-decoration: none;
    }
    .esp-widget :is(a.esp-header__btn, button.esp-header__btn, .esp-header__btn a):hover{
      background: #fff !important;
      color: var(--esp-brand) !important;
      border-color: var(--esp-brand) !important;
      box-shadow: 0 6px 16px rgba(252,176,23,.35) !important;
    }

    /* Contact Widget */
    .contact-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        justify-content: flex-start;
    }
    .contact-row svg {
        width: 18px;
        height: 18px;
        color: var(--esp-brand);
        flex-shrink: 0;
    }
    .contact-row:hover {
        color: var(--esp-brand);
    }

    /* Media Queries for Blog Section */
    @media (max-width: 900px) { 
      .esp-blog-layout {
         flex-direction: column; 
         padding: 0 16px;
      }
      .wrap-blog { 
         width: 100%; 
         margin-bottom: 20px;
      } 
      .esp-sidebar {
         width: 100%;
         max-width: 100%;
         position: static; 
      }
      .hero-img { max-height: 260px; } 
    }
    @media (max-width: 768px){
      .widget-cta .esp-header__btn{
        padding-top:18px;
        padding-bottom:18px;
        font-size:16px;
      }
    }
    @media (max-width: 640px) {
        .widget-cta .esp-header__btn {
            padding: 16px 26px;
            font-size: 16px;
        }
    }

.trendy-section {
        background-color: #ffffff;
        padding: 60px 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
        margin-top: auto; 
    }

    .trendy-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .trendy-header {
        text-align: center; 
        margin-bottom: 40px;
    }

    .trendy-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #111;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: -0.5px;
    }

    .trendy-header .divider {
        display: none;
    }

    .trendy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .trendy-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0,0,0,0.03);
    }

    .trendy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(252, 176, 23, 0.15);
        border-color: rgba(252, 176, 23, 0.3);
    }

    .trendy-img-box {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .trendy-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .trendy-card:hover .trendy-img-box img {
        transform: scale(1.1);
    }

    .trendy-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .trendy-cat {
        color: var(--esp-brand);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .trendy-title {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        margin: 0 0 12px;
        line-height: 1.4;
    }

    .trendy-excerpt {
        font-size: 14px;
        color: #666;
        margin: 0 0 20px;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .trendy-read-more {
        margin-top: auto;
        font-size: 14px;
        font-weight: 700;
        color: #111;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .trendy-read-more span {
        color: var(--esp-brand);
        transition: transform 0.2s ease;
    }

    .trendy-card:hover .trendy-read-more span {
        transform: translateX(5px);
    }

/* Inline styles for birmingham-construction-site-theft-increase.html */
.st-862bdb8d { background-color: #f8fafc !important; border-color: var(--esp-brand) !important; }
:root { --esp-brand:#FCB017;
      --esp-ink:#111111;
      --esp-text:#222222;
      --esp-line:rgba(0,0,0,.08);
      --esp-dark:#000000;
      --esp-contact-radius:18px;
      --container: 1200px; }
.esp-locations-hero { --brand: #FCB017;
      --ink: #ffffff;
      --overlay: rgba(0,0,0,.64);
      --minh: 30vh;
      position: relative;
      isolation: isolate;
      min-height: var(--minh);
      display: grid;
      place-items: center;
      color: var(--ink);
      background: url("https://eaglesecurityprotection.co.uk/wp-content/uploads/2025/12/Terrorism-banner.webp") center / cover no-repeat #222;
      padding-block: clamp(80px, 10vw, 120px); }
.esp-locations-hero .esp-loc__overlay { position: absolute;
      inset: 0;
      background: var(--overlay);
      z-index: 0; }
.esp-locations-hero .esp-loc__in { position: relative;
      z-index: 1;
      width: min(1200px, calc(100% - 48px));
      margin-inline: auto;
      text-align: left; }
.esp-locations-hero .esp-loc__bar { display: inline-block;
      width: 88px; height: 8px;
      background: var(--brand);
      border-radius: 6px;
      margin-bottom: 14px; }
.esp-locations-hero .esp-loc__title { margin: 0 0 8px;
      font: 700 clamp(32px, 6vw, 64px)/1.05 Nunito, system-ui, sans-serif;
      color: #fff; }
.esp-locations-hero .esp-loc__subtitle { margin: 10px 0 0;
      font: 600 clamp(16px, 2.7vw, 20px)/1.5 Nunito, system-ui, sans-serif;
      color: #e5e7eb;
      max-width: 46rem; }
.esp-locations-hero { --minh: 50vh;
        padding-block: 50px; }
.esp-blog { padding: 40px 12px 48px; }
.esp-blog { padding: 56px 16px; }
.esp-blog__in { max-width: 1200px !important;
      margin: 0 auto !important; }
.esp-blog-layout { display: grid;
      gap: 40px;
      grid-template-columns: 1fr; }
.esp-blog-layout { grid-template-columns: 2.4fr 1fr;
        gap: 40px;
        align-items: start; }
.esp-main-content { display: flex;
      flex-direction: column; }
.esp-controls-title { font-size: 24px;
        font-weight: 700;
        margin: 0 0 16px 0;
        color: var(--esp-text);
        display: flex;
        align-items: center;
        gap: 10px; }
.esp-controls-title::before { content: '';
        display: block;
        width: 6px;
        height: 24px;
        background: var(--esp-brand);
        border-radius: 4px; }
.esp-blog__controls { display: grid;
      gap: 12px;
      grid-template-columns: 1fr; /* Mobile: Stacked */
      margin: 0 0 30px; }
.esp-blog__controls { /* UPDATED LAYOUT: 
           1fr (Search - Biggest) 
           240px (Category - Medium) 
           150px (Sort - Smallest/50%) */
        grid-template-columns: 1fr 240px 150px;
        align-items: center;
        gap: 20px; }
.esp-field { position: relative; 
      display:flex; 
      flex-direction:column; }
.esp-input { font-family: 'Nunito', sans-serif;
      width: 100%; 
      height: 54px;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 22px 16px 6px;
      font-size: 15px;
      background: #ffffff;
      outline: 0;
      color: #1f2937;
      transition: border-color .15s ease, box-shadow .15s ease;
      box-sizing: border-box; }
.esp-input:focus-visible, .esp-input:focus { border-color: var(--esp-brand);
      box-shadow: 0 0 0 4px rgba(252,176,23,.25); }
.esp-label { position: absolute;
      left: 16px;
      top: 18px;
      font-size: 15px;
      font-weight: 400;
      color: #9ca3af;
      pointer-events: none;
      transition: all 0.2s ease-out;
      transform-origin: left top;
      font-family: 'Nunito', sans-serif; }
.esp-input:focus ~ .esp-label, .esp-input:not(:placeholder-shown) ~ .esp-label { top: 6px;
      transform: scale(0.85);
      color: var(--esp-brand);
      font-weight: 700; }
.esp-dd-wrap { position: relative; width: 100%; }
.esp-dd-native { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; z-index: -1; }
.esp-dd-btn { width: 100%; 
      padding: 10px 16px 10px; 
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      background: #fff;
      color: #111;
      font-family: 'Nunito', system-ui;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      cursor: pointer;
      transition: border-color .18s ease, box-shadow .18s ease;
      height: 54px;
      text-align: left;
      margin-left: 0; 
      box-sizing: border-box; }
.esp-dd-btn:focus, .esp-dd-wrap.is-open .esp-dd-btn { outline: none;
      border-color: var(--esp-brand);
      box-shadow: 0 0 0 4px rgba(252,176,23,.25); }
.esp-dd-text-grp { display: flex; flex-direction: column;
        overflow: hidden; /* Prevent text overflow */ }
.esp-dd-caption { font-size: 13px; color: var(--esp-brand); font-weight: 700; line-height: 1; margin-bottom: 2px; display: block;
        transform: scale(0.98); transform-origin: left;
        white-space: nowrap; }
.esp-dd-val { font-size: 15px; color: #111; line-height: 1.2;
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; }
.esp-dd-chev { width: 20px; height: 20px; display: grid; place-items: center;
      border-radius: 50%; border: 1px solid #d9d9d9; flex-shrink: 0; }
.esp-dd-chev::after { content: ""; display: inline-block; width: 7px; height: 7px;
      border-right: 2.5px solid var(--esp-brand); border-bottom: 2.5px solid var(--esp-brand);
      transform: rotate(45deg); margin-bottom: 3px; transition: transform .2s; }
.esp-dd-wrap.is-open .esp-dd-chev::after { transform: rotate(-135deg); margin-bottom: -2px; }
.esp-dd-menu { position: absolute; left: 0; right: 0; top: calc(100% + 8px);
      background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
      box-shadow: 0 14px 30px rgba(0,0,0,.10); padding: 6px; display: none; z-index: 50;    
      width: 100%; 
      margin-left: 0; }
.esp-dd-wrap.is-open .esp-dd-menu { display: block; }
.esp-dd-opt { width: 100%; border: 0; background: #fff; color: #111;
      font:  15px/1.2 Nunito, system-ui; padding: 15px 17px;
      border-radius: 8px; cursor: pointer; text-align: left;
      transition: background .15s, color .15s;
      display: block;
      box-sizing: border-box; }
.esp-dd-opt:hover, .esp-dd-opt:focus, .esp-dd-opt.is-selected { background: var(--esp-brand); color: #111; outline: none; }
.post-grid { display: grid;
      gap: 16px;
      opacity: 0;
      transition: opacity .2s ease;
      grid-template-columns: 1fr; }
.post-grid { grid-template-columns: repeat(2, 1fr); }
.post-grid { grid-template-columns: repeat(3, 1fr);
        gap: 20px; }
.post-grid.is-ready { opacity: 1; }
.post { display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid var(--esp-line);
      border-radius: 18px !important;
      border: 2px solid #FCB017 !important;
      overflow: hidden;
      box-shadow: 0 1px 0 rgba(0,0,0,.02);
      transition: border-color .15s ease;
      will-change: transform; }
.post { transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.post:hover { transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,0,0,.06);
        border-color: var(--esp-brand); }
.post__img { display: block;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #ddd; }
.post__img img { width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
.post__body { display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 14px;
      flex: 1; }
.post__body { padding: 16px; gap: 10px; }
.post__tag { display: inline-block;
      align-self: flex-start;
      text-decoration: none;
      color: #111;
      background: #fff;
      border: 1px solid var(--esp-line);
      border-radius: 999px;
      padding: 6px 10px;
      font: 700 12px/1 'Nunito', system-ui, sans-serif; }
.post__title { margin: 0;
      font: 700 clamp(17px, 3.6vw, 22px)/1.2 'Nunito', system-ui, sans-serif;
      letter-spacing: -.01em; }
.post__title a { color: var(--esp-ink); text-decoration: none; }
.post__title a:hover { color: #000; }
.post__excerpt { margin: 0;
      color: var(--esp-text);
      font:  15px/1.6 'Nunito', system-ui, sans-serif;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden; }
.post__meta { margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--esp-line);
      padding-top: 10px;
      gap: 10px;
      font: 600 14px/1.3 'Nunito', system-ui, sans-serif;
      color: #6b7280;
      flex-wrap: wrap; }
.post__more { text-decoration: none;
      color: #111;
      font-weight: 700;
      font-size: 14px; }
.post__more:hover { color: var(--esp-brand); }
.esp-blog__more { text-align: center; margin: 22px 0 0; }
.esp-btn { padding: 13px 20px;
      min-height: 48px;
      min-width: 160px;
      border-radius: 999px;
      border: 1.5px solid #111;
      background: #111;
      color: #fff;
      font: 700 15px/1 'Nunito', system-ui, sans-serif;
      cursor: pointer;
      touch-action: manipulation; }
.esp-btn:hover { transform: translateY(-1px); }
.esp-btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.esp-sidebar { display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative; }
.esp-sidebar { position: sticky;
            top: 20px; }
.esp-widget { background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.esp-widget-title { font-size: 19px;
        font-weight: 700;
        margin: 0 0 16px 0;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--esp-brand);
        display: inline-block; }
.esp-widget--cta { background: #111;
        color: #fff;
        border-color: #333;
        text-align: center; }
.esp-widget--cta .esp-widget-title { color: #fff; }
.esp-widget-cta p { font-size: 14px;
        line-height: 1.6;
        color: #ccc;
        margin-bottom: 16px; }
.esp-recent-list { list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px; }
.esp-recent-item { display: flex;
        gap: 12px;
        align-items: flex-start; }
.esp-recent-thumb { width: 70px;
        height: 70px;
        border-radius: 8px;
        object-fit: cover;
        background: #eee;
        flex-shrink: 0; }
.esp-recent-info { display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: left; }
.esp-recent-link { color: #222;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.4;
        transition: color 0.2s; }
.esp-recent-link:hover { color: var(--esp-brand); }
.esp-recent-date { font-size: 12px;
        color: #888;
        font-weight: 600; }
.esp-cat-list { list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; }
.esp-cat-item a { display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        color: #444;
        text-decoration: none;
        border-bottom: 1px dashed #eee;
        transition: all 0.2s; }
.esp-cat-item a:hover { color: var(--esp-brand);
        padding-left: 5px; }
.esp-cat-item:last-child a { border-bottom: none; }
.esp-sidebar-btn { background: var(--esp-brand);
        color: var(--esp-ink);
        border: 2px solid var(--esp-brand);
        border-radius: 999px;
        font-weight: 700;
        font-family: Nunito, sans-serif;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all .25s ease;
        letter-spacing: 0.5px;
        box-shadow: none;
        text-decoration: none;
        white-space: nowrap;
        width: 100%;
        padding: 18px 30px;
        font-size: 16px;
        box-sizing: border-box; }
.esp-sidebar-btn:hover { background: #ffffff;
        color: var(--esp-brand);
        border-color: var(--esp-brand);
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(252,176,23,.35); }
.esp-trust { --tc-yellow:#FCB017; --tc-ink:#0f172a; --tc-line:rgba(0,0,0,.06);
      background:#fafafa; padding: 70px 0 60px; }
.tc-eyebrow { display:inline-flex;align-items:center;gap:8px; padding:8px 14px;border:2px solid var(--esp-line);border-radius:999px;
      font:700 12px/1 Nunito;letter-spacing:.06em;text-transform:uppercase; color:var(--tc-yellow);background:#fff;margin:0 0 10px; }

/* === GLOBAL FOOTER ACCESSIBLE CONTRAST === */
.esp-global-footer,.esp-global-footer p,.esp-global-footer span,.esp-global-footer strong{color:#f3f4f6!important}
.esp-global-footer a{color:#fff!important;text-decoration-color:#fcb017!important}
.esp-global-footer a:hover,.esp-global-footer a:focus{color:#fcb017!important}


/* === GLOBAL HONEYPOT VISIBILITY FIX === */
input[name="company_site"] {
  position: fixed !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}