/* ========================= 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: 40px; 
    }

    .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 early-detection-strategies-for-squatter-prevention-in-the-uk.html */
.st-e467bba6 { width:100% !important; justify-content:center !important; box-sizing:border-box !important; }
:root { --esp-brand: #FCB017;
      --esp-brand-dark: #e59b05;
      --esp-ink: #111111;
      --esp-text: #222222;
      --esp-bg-light: #f9fafb;
      --esp-white: #ffffff;
      --esp-line: rgba(0,0,0,.08); }
body { margin: 0;
      font-family: 'Nunito', sans-serif;
      background: #f4f4f4;
      color: var(--esp-text);
      overflow-x: hidden; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-family: 'Nunito', sans-serif; }
p { line-height: 1.7; color: #4b5563; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px; }
.hero { background: radial-gradient(circle at top right, #222, #000);
      color: #fff;
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden; }
.hero-grid { display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center; }
.hero-content h1 { font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: clamp(40px, 5vw, 64px);
      color: var(--esp-brand);
      margin-bottom: 20px; }
.hero-content h2 { font-size: 24px;
      font-weight: 300;
      margin-bottom: 30px;
      letter-spacing: 1px;
      color: #ddd; }
.hero-tagline { font-size: 18px;
      border-left: 4px solid var(--esp-brand);
      padding-left: 20px;
      margin-bottom: 40px;
      font-style: italic;
      color: #aaa; }
.book-container { perspective: 1000px;
      display: flex;
      justify-content: center; }
.book { width: 300px;
      height: 450px;
      position: relative;
      transform-style: preserve-3d;
      transform: rotateY(-25deg) rotateX(5deg);
      transition: transform 0.5s ease;
      box-shadow: 20px 20px 50px rgba(0,0,0,0.55); }
.book:hover { transform: rotateY(-15deg) rotateX(0deg) scale(1.02); }
.book-front { position: absolute;
      width: 100%;
      height: 100%;
      background: url("https://eaglesecurityprotection.co.uk/wp-content/uploads/2025/12/Sabia-Kausers-Book-Cover.webp") no-repeat center center;
      background-size: cover;
      border: 1px solid #222;
      border-radius: 4px 8px 8px 4px;
      z-index: 2; }
.book-front > * { display: none; }
.book-spine { position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 100%;
      background: #000;
      transform: rotateY(-90deg) translateZ(20px);
      transform-origin: left;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--esp-brand);
      font-weight: bold;
      border-left: 1px solid #333; }
.spine-text { writing-mode: vertical-rl;
      transform: rotate(180deg);
      letter-spacing: 2px;
      font-size: 14px; }
.checkout-panel { background: #fff;
      max-width: 500px;
      margin: -60px auto 60px;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      position: relative;
      z-index: 10;
      text-align: center;
      border: 1px solid #eee; }
.price-tag { font-size: 48px;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px; }
.price-strike { font-size: 24px;
      color: #999;
      text-decoration: line-through;
      display: none; }
.cta-btn { display: block;
      width: 100%;
      background: var(--esp-brand);
      color: #000;
      font-weight: 700;
      text-transform: uppercase;
      padding: 18px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 14px rgba(252, 176, 23, 0.4); }
.cta-btn:hover { transform: translateY(-2px);
      background: var(--esp-brand-dark); }
.counter-wrapper { background: #fdf8ec;
        border: 2px dashed #e5cc95;
        border-radius: 12px;
        padding: 20px;
        margin: 15px 0 25px;
        display: inline-block;
        width: 100%;
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.odometer-container { display: inline-flex;
        align-items: center;
        background: #111; /* Mechanical background */
        border-radius: 6px;
        padding: 8px 10px;
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.7);
        border: 3px solid #333;
        overflow: hidden; }
.digit-window { width: 0.85em; /* Adjusted width so numbers don't get cut */
        height: 1.1em;
        overflow: hidden;
        position: relative;
        font-size: 50px; /* BIG FONT */
        font-weight: 900;
        line-height: 1.1em;
        color: #fff;
        margin: 0 1px;
        background: #1a1a1a;
        border-radius: 2px; }
.digit-strip { display: flex;
        flex-direction: column;
        will-change: transform;
        /* Ease-out back simulates the mechanical "clunk" stop */
        transition: transform 1.5s cubic-bezier(0.1, 0.8, 0.2, 1); }
.digit-strip span { height: 1.1em;
        display: flex;
        align-items: center;
        justify-content: center; }
.digit-overlay { position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.9) 0%, 
            rgba(0,0,0,0.1) 30%, 
            rgba(255,255,255,0.1) 50%, 
            rgba(0,0,0,0.1) 70%, 
            rgba(0,0,0,0.9) 100%);
        pointer-events: none;
        z-index: 2;
        box-shadow: inset 0 0 2px rgba(0,0,0,0.5); }
.counter-bump { animation: bumpEffect 0.4s ease-out;
        border-color: #FCB017 !important;
        background-color: #fff8e1 !important; }
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
.redeem-box { margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #eee; }
.redeem-toggle { color: #666;
      font-size: 14px;
      cursor: pointer;
      text-decoration: underline; }
.redeem-input-group { display: none;
      margin-top: 15px;
      gap: 10px; }
.redeem-input-group.active { display: flex; }
.redeem-input { flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      text-transform: uppercase; }
.apply-btn { background: #333;
      color: #fff;
      border: none;
      padding: 0 15px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 700; }
.success-msg { color: green;
      font-size: 13px;
      margin-top: 5px;
      display: none;
      font-weight: bold; }
.content-section { padding: 70px 0 60px; }
.section-title { text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%); }
.section-title::after { content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: var(--esp-brand);
      margin: 10px auto 0; }
.chapter-grid { display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px; }
.chapter-card { background: #fff;
      padding: 25px;
      border-radius: 8px;
      border-left: 4px solid var(--esp-brand);
      box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.chapter-num { color: var(--esp-brand-dark);
      font-weight: 700;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
      margin-bottom: 5px; }
.chapter-title { font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px; }
.author-section { background: #fff;
      display: flex;
      gap: 40px;
      align-items: center;
      padding: 60px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.author-img { width: 150px;
      height: 150px;
      background: #ddd;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      border: 4px solid var(--esp-brand); }
.author-img img { width: 100%; height: 100%; object-fit: cover; }
.esp-trust-logo { display: block; margin: 0 auto;; max-height: 140px; width: auto; max-width: 100%; object-fit: contain; }
.esp-trust { --tc-yellow:#FCB017; --tc-ink:#0f172a; --tc-line:rgba(0,0,0,.06);
      background:#fff; padding-block:clamp(28px,5vw,0px); padding: 70px 0 60px;border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.sales-popup { position: fixed;
      bottom: 20px;
      left: 20px;
      background: #fff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 1000;
      transform: translateY(150%);
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border-left: 4px solid var(--esp-brand);
      max-width: 350px; }
.sales-popup.active { transform: translateY(0); }
.popup-icon { width: 40px;
      height: 40px;
      background: #fef3c7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #d97706; }
.popup-text p { margin: 0; font-size: 13px; line-height: 1.4; }
.popup-name { font-weight: 700; color: #000; }
.popup-time { font-size: 11px; color: #888; }
.hero { padding-bottom: 50px; }
.hero-grid { grid-template-columns: 1fr; text-align: center; }
.book-container { margin-bottom: 10px; }
.hero-tagline { border-left: none; padding: 0; }
.author-section { flex-direction: column; text-align: center; padding: 30px; }
.checkout-panel { margin: 0 20px 40px; }
.sales-popup { display: flex; 
        left: 50%;
        bottom: 20px;
        transform: translate(-50%, 150%);
        width: 90%; }
.sales-popup.active { transform: translate(-50%, 0); }
.book { width: 220px;
        height: 330px; }
.digit-window { font-size: 32px; /* Smaller font on mobile */ }
.odometer-container { padding: 5px 8px;
        border-width: 2px; }
#counter-icon { font-size: 28px !important; }
.counter-wrapper { padding: 15px;
        margin: 10px 0 20px; }

/* === 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;
}