: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:#fafafa;
      color:#111827;
    }
    
    /* Wrapper to handle sticky footer logic */
    .esp-page-wrap {
      display: flex;
      flex-direction: column;
      min-height: 100vh; 
      padding-top: 120px; /* Keeps content below absolute header */
      box-sizing: border-box;
    }
    
    img{max-width:100%; height:auto; display:block}


    /* ========================= BLOG CONTENT & SIDEBAR STYLES ========================= */
    .esp-container {
        flex: 1; 
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .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(24px,4.5vw,34px); margin-bottom: 12px; margin-top: 0; }
    .wrap-blog h2 { color: #111827; line-height: 1.2; font-weight: 700; font-size: 21px; margin-top: 26px; margin-bottom: 10px; }
    .wrap-blog h3 { color: #111827; line-height: 1.2; font-weight: 700; font-size: 18px; margin-top: 22px; margin-bottom: 8px; }
    .wrap-blog p { margin: 0 0 12px; font-size: 15px; color: #374151; }
    .wrap-blog ul { margin: 0 0 12px 18px; padding: 0; color: #374151; }
    .wrap-blog li { margin: 5px 0; font-size: 15px; }
    .meta { font-size: 13px; color: #666666; margin-bottom: 14px; }
    .meta strong { font-weight: 600; }
    .note { border-left: 4px solid var(--esp-brand); background: #fff7e6; padding: 10px 12px; border-radius: 8px; margin: 12px 0; font-size: 14px; color: #555; }
    .check { border-left: 4px solid #10b981; background: #f0fdf9; padding: 15px; border-radius: 8px; margin-bottom: 20px; }
    .check b { display: block; font-size: 16px; color: #065f46; margin-bottom: 5px; }
    .hero-img { width: 100%; height: auto; max-height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 18px; display: block; }

    .esp-sidebar {
      flex: 1 1 300px; 
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 140px; 
    }

    .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;
      border-bottom: 2px solid var(--esp-brand);
      padding-bottom: 10px;
      margin-bottom: 16px;
      display: inline-block;
      color: #111;
    }
    
    .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;
      
    }

    /* === FIX: CUSTOM STYLES FOR RELATED POSTS === */
    .related-posts-custom .widget-title-custom {
        display: block; 
        border-bottom: none !important;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 25px;
        font-weight: 700;
        font-size: 20px;
        color: #111;
    }
    
    .related-posts-custom .widget-title-custom::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--esp-brand);
    }

    .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);
    }
    /* === END FIX === */

    @media (max-width: 640px) {
        .widget-cta .esp-header__btn {
            padding: 16px 26px;
            font-size: 16px;
        }
    }
    
    .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;
    }

    .widget-cta {
        background: #111;
        color: #fff;
        text-align: center;
        border: none;
    }
    .widget-cta h3 {
        color: #fff;
        border-color: rgba(255,255,255,0.2);
    }
    .widget-cta p {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    /* Widget Contact */
    .contact-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
    }
    .contact-row svg {
        width: 18px;
        height: 18px;
        color: var(--esp-brand);
        flex-shrink: 0;
    }
    .contact-row:hover {
        color: var(--esp-brand);
    }

    @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; } 
    }

    /* CTA button taller on mobile only (all blogs) */
    @media (max-width: 768px){
      .widget-cta .esp-header__btn{
        padding-top:18px;
        padding-bottom:18px;
        font-size:16px;
      }
    }

    .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;
    }

    .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;
    }

    /* ========================= TRENDY SECTION STYLES ========================= */
    .trendy-section {
        background-color: #f1f1f1;
        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 {
        width: 50px;
        height: 5px;
        background: var(--esp-brand);
        margin: 15px auto 0;
        border-radius: 3px;
    }

    .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;
    }

    .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);
    }

    .esp-trust-logo {
      display: block; margin: 0 auto; max-height: 140px; width: auto; max-width: 100%; object-fit: contain;
    }
    
    /* === FIX: PADDING UPDATE FOR TRUST SECTION === */
    .esp-trust{
      --tc-yellow:#FCB017; --tc-ink:#0f172a; --tc-line:rgba(0,0,0,.06);
      background:#fff; 
      /* Updated Padding */
      padding-top: 70px;
      padding-bottom: 60px;
      
      border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    }
    /* === END FIX === */
    
    .esp-trust .esp-trust-in{ max-width:1100px; margin:0 auto; padding:0 16px; }
    .tc-eyebrow{
      display:inline-flex;align-items:center;gap:8px; padding:8px 14px;border:2px solid var(--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;
    }
    .esp-trust h2{ margin:0 0 8px; text-align:center; color:#000; font: 700 clamp(28px, 4vw, 40px)/1.2 Nunito, system-ui, sans-serif; }
    .esp-trust p{ margin:0 0 20px; text-align:center; color:#475569; font:600 14.5px/1.55 Nunito,system-ui; }
    .esp-trust-grid{ display:grid; gap:18px; grid-template-columns:repeat(2,1fr); max-width:1100px; margin:0 auto; padding-inline:16px; }
    @media (min-width:960px){ .esp-trust-grid{ grid-template-columns:repeat(4,1fr); } }
    .esp-trust-card{
      display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
      min-height:150px; padding:16px; border:2px solid var(--tc-yellow); border-radius:16px; background:#fff;
      box-shadow:0 8px 20px rgba(0,0,0,.06); transition:all .25s ease; text-decoration:none; color:inherit;
    }
    .esp-trust-card:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(0,0,0,.12); border-color:#f7b615; }

/* Inline styles for hiring-warehouse-security-services-in-the-uk.html */
.st-e467bba6 { width:100% !important; justify-content:center !important; box-sizing:border-box !important; }
:root { /* BRAND COLORS */
    --esp-brand: #FCB017;
    --esp-brand-text: #FCB017; 
    --esp-ink: #111111;
    --esp-dark: #000000;
    --esp-text-muted: #424a57;
    --esp-card-radius: 18px;
    --esp-line: rgba(0,0,0,.08); }
.esp-hero { --brand: #FCB017;
    --ink: #ffffff;
    position: relative;
    isolation: isolate;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: var(--ink);
    padding-block: clamp(100px, 12vw, 140px);
    --mx: 50%;
    --my: 50%; }
.esp-hero__bg { position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: -2; 
    pointer-events: none; }
.esp-hero__overlay { position: absolute; 
    inset: 0; 
    background-color: rgba(0, 0, 0, .70); 
    background-image: radial-gradient(
        circle at var(--mx) var(--my), 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 60%
    );
    z-index: -1;
    transition: opacity 0.3s ease; }
.esp-hero__in { position: relative; 
    z-index: 1; 
    width: min(1200px, calc(100% - 40px)); 
    margin-inline: auto; 
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center; }
.esp-hero__in { grid-template-columns: 1fr; text-align: center; }
.esp-hero__bar { display: inline-block; width: 88px; height: 8px; background: var(--brand); border-radius: 6px }
.esp-hero__title { margin: 15px 0;
    font: 800 clamp(32px, 4.5vw, 48px)/1.15 Nunito, system-ui, sans-serif;
    color: #ffffff; }
.esp-hero__lead { margin: 0 0 24px;
    font: 18px/1.6 Nunito, system-ui, sans-serif;
    color: #f3f4f6; }
.esp-hero__accr { margin-top: 24px; font-size: 15px; font-weight: 700; letter-spacing: .03em; color: #ffffff; display: flex; flex-wrap: wrap; gap: 10px; }
.esp-hero__accr { justify-content: center; }
.esp-hero__accr span { color: var(--esp-brand); }
.esp-hero-form { background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    border-radius: var(--esp-card-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.esp-hero-form h3 { color: #fff; margin: 0 0 20px; font-size: 22px; text-align: center; }
.esp-hero-form form { display: grid; gap: 16px; }
.esp-hero-form input, .esp-hero-form select { width: 100%; padding: 14px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); outline: none; font-family: inherit; font-size: 16px;
    box-sizing: border-box; background: rgba(255,255,255,0.9); color: #111; }
.esp-hero-form .btn { width: 100%; border: none; font-size: 18px; padding: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 28px;
    border-radius: 999px; font-weight: 800; font-size: 16px; border: 2px solid var(--esp-brand);
    background: var(--esp-brand); color: #111; text-decoration: none; box-shadow: 0 14px 34px rgba(252, 176, 23, .28);
    transition: .2s ease-in-out; cursor: pointer; }
.btn:hover { background: #ffffff; color: var(--esp-brand); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0, 0, 0, .4) }
.seo-link { color: var(--esp-brand);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s; }
.seo-link:hover { color: var(--esp-ink);
    text-decoration: underline; }
.esp-hero { padding-top: 140px; padding-bottom: 60px; }
.esp-hero__title { font-size: 30px; }
.esp-about, .esp-features, .esp-our-services, .esp-services, .esp-addl, .esp-testimonials, .esp-faq { padding-top: 60px !important; padding-bottom: 50px !important; }
.esp-about, .esp-features, .esp-our-services, .esp-services, .esp-addl, .esp-testimonials, .esp-faq { padding-top: 80px !important; padding-bottom: 70px !important; }
.esp-about { background: #ffffff; padding: clamp(40px, 6vw, 90px) 24px }
.esp-about__in { max-width: 1200px; margin: 0 auto }
.esp-about__intro { text-align: center }
.esp-about__intro h2, .esp-features__header h2, .our-svc__head h2, .esp-addl__head h2, .esp-services h2 { margin: 0 0 8px; font: 800 clamp(30px, 4vw, 42px)/1.2 Nunito, system-ui, sans-serif; color: var(--esp-ink); }
.esp-about__intro p, .esp-features__header p, .our-svc__head p, .esp-addl__head p { margin: 0 auto 40px; max-width: 78ch; font: 16px/1.7 Nunito, system-ui, sans-serif; color: var(--esp-text-muted); }
.about-wrap { margin-top: clamp(24px, 4vw, 36px); display: grid; gap: clamp(18px, 3vw, 26px); align-items: stretch }
.about-wrap { grid-template-columns: .95fr 1.05fr; }
.about-col--left { display: flex; flex-direction: column; gap: 24px; }
.about-card { border: 2px solid var(--esp-brand); border-radius: var(--esp-card-radius); background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,.05); padding: 40px 24px; text-align: center; }
.about-card__title { margin: 0 0 12px; font: 800 22px/1.25 Nunito; color: var(--esp-ink); }
.about-card__text { margin: 0 auto; font: 16px/1.7 Nunito; color: var(--esp-text-muted); }
.about-media { margin: 0; border-radius: var(--esp-card-radius); overflow: hidden; border: 2px solid var(--esp-brand); background: #fff7e3; }
.about-media img { display: block; width: 100%; height: 100%; object-fit: cover }
.feature-grid, .our-svc__grid, .addl-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.feature-grid, .our-svc__grid, .addl-grid { grid-template-columns: repeat(4, 1fr); }
.feature-grid, .our-svc__grid, .addl-grid { grid-template-columns: repeat(2, 1fr); }
.feature-card, .svc-card, .addl-card { background: #ffffff; border-radius: var(--esp-card-radius); border: 2px solid transparent;
    padding: 32px 24px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: .2s ease; display: flex; flex-direction: column; align-items: center; }
.feature-card:hover, .svc-card:hover, .addl-card:hover { transform: translateY(-5px); border-color: var(--esp-brand); box-shadow: 0 15px 35px rgba(0,0,0,.1); }
.esp-features { background: linear-gradient(to bottom, #fafafa 0%, #f8f9fb 100%); padding: clamp(40px, 6vw, 90px) 24px; }
.esp-features__in { max-width: 1200px; margin: 0 auto }
.esp-features__header { text-align: center; margin-bottom: 40px }
.feature-icon .emoji { font-size: 46px; }
.feature-card h3 { margin: 15px 0 10px; font: 800 20px/1.25 Nunito; }
.feature-card p { margin: 0; color: var(--esp-text-muted); font: 15.5px/1.6 Nunito; }
.esp-our-services { background: #ffffff; padding: clamp(40px, 6vw, 90px) 24px; }
.esp-our-services .our-svc__in { max-width: 1200px; margin: 0 auto }
.our-svc__head { text-align: center; margin-bottom: 40px }
.svc-card__thumb { width: 110px; height: 110px; border-radius: 50%; padding: 4px; background: conic-gradient(var(--esp-brand), #ffd37a 60%, var(--esp-brand)); margin-bottom: 20px; }
.svc-card__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #ffffff; padding: 4px }
.svc-card__title { margin: 0 0 10px; font: 800 20px/1.25 Nunito; }
.svc-card__text { margin: 0; color: var(--esp-text-muted); font: 15px/1.6 Nunito; }
.esp-services { background: #fafafa; padding: clamp(48px, 8vw, 90px) 20px }
.esp-services__in { max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center }
.esp-services__in { grid-template-columns: 1fr }
.esp-svc-left { text-align: center }
.esp-svc-left-inner { max-width: 600px; margin:0 auto; }
.esp-svc-title { margin: 0 0 15px; font: 800 clamp(32px, 5vw, 48px)/1.1 Nunito; }
.esp-svc-lead { margin: 0 0 25px; color: var(--esp-text-muted); font: 18px/1.6 Nunito; }
.esp-svc-right { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.esp-svc-right { grid-template-columns: 1fr }
.esp-svc-item h3 { margin: 0 0 8px; font: 800 18px/1.25 Nunito; }
.esp-svc-item p { margin: 0; color: var(--esp-text-muted); font: 15px/1.6 Nunito; }
.esp-addl { background: #ffffff; padding: clamp(40px, 6vw, 90px) 24px }
.esp-addl__in { max-width: 1200px; margin: 0 auto }
.esp-addl__head { text-align: center; margin-bottom: 40px }
.addl-icon { font-size: 40px; margin-bottom: 15px; display: block }
.addl-card h3 { margin: 0 0 10px; font: 800 20px/1.25 Nunito; }
.addl-card p { margin: 0; color: var(--esp-text-muted); font: 15px/1.6 Nunito; }
.esp-faq { padding: clamp(40px, 6vw, 90px) 24px; background: #fafafa; }
.esp-faq__in { max-width: 850px; margin: 0 auto; }
.esp-faq h2 { text-align: center; margin-bottom: 40px; font: 800 clamp(30px, 4vw, 42px)/1.2 Nunito; }
.esp-faq details { background: #fff; margin-bottom: 15px; border-radius: 12px; border: 1px solid var(--esp-line); overflow: hidden; }
.esp-faq summary { padding: 20px 24px; font-weight: 800; font-size: 18px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.esp-faq summary::-webkit-details-marker { display: none; }
.esp-faq summary::after { content: '+'; font-size: 26px; color: var(--esp-brand); transition: 0.3s; }
.esp-faq details[open] summary::after { content: '−'; }
.esp-faq p { padding: 0 24px 24px; margin: 0; color: var(--esp-text-muted); line-height: 1.7; font-size: 16px; }
.esp-map { width: 100%; height: 450px; background: #eee; line-height: 0; }
.esp-map iframe { width: 100%; height: 100%; border: none; }
.esp-testimonials { padding:clamp(40px, 6vw, 90px) 24px; background: #ffffff }
.esp-testimonials__in { max-width: 1200px; margin: 0 auto }
.esp-testimonials__header { max-width: 720px; margin: 0 auto 40px; text-align: center }
.esp-testimonials__title { margin: 0 0 10px; font: 800 clamp(30px, 4vw, 42px)/1.15 Nunito; }
.esp-testimonials__lead { margin: 0; font-size: 16px; line-height: 1.7; color: var(--esp-text-muted) }
.esp-slider { position: relative; max-width: 900px; margin: 0 auto }
.esp-slider__viewport { overflow: hidden; padding-bottom: 20px; }
.esp-slider__track { display: flex; transition: transform .8s cubic-bezier(.22, .61, .36, 1); }
.esp-slide { flex: 0 0 100%; display: flex; padding: 20px 10px; box-sizing: border-box; }
.esp-slide__card { background: #fafafa; border-radius: var(--esp-card-radius); border: 1px solid var(--esp-line); padding: 32px; width: 100%; }
.esp-slide__header { display: flex; align-items: center; margin-bottom: 18px }
.esp-slide__avatar { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; border: 2px solid var(--esp-brand); }
.esp-slide__name { margin: 0; font-weight: 800; font-size: 18px; color: var(--esp-ink); }
.esp-slide__role { margin: 0; font-size: 14px; color: #666 }
.esp-slide__stars { font-size: 18px; color: var(--esp-brand); margin-bottom: 15px }
.esp-slide__text { margin: 0; font-size: 16px; line-height: 1.7; color: var(--esp-text-muted); font-style: italic; }
.esp-slider__progress { width: 100%; max-width: 200px; height: 4px; background: #eee; border-radius: 10px; margin: 20px auto 0; overflow: hidden; }
.esp-slider__bar { display: block; height: 100%; background: var(--esp-brand); width: 0; border-radius: 10px; }
from { width: 0%; }
to { width: 100%; }
.esp-slider__bar.animating { animation: espProgressFill 3500ms linear forwards; }
*, *::before, *::after { box-sizing: border-box; }
:root { --esp-brand: #FCB017;
    --esp-brand-text: #FCB017; 
    --esp-ink: #111111;
    --esp-dark: #000000;
    --esp-text-muted: #424a57;
    --esp-card-radius: 18px;
    --esp-line: rgba(0,0,0,.08); }
.esp-hero { --brand: #FCB017;
    --ink: #ffffff;
    position: relative;
    isolation: isolate;
    min-height: 65vh;
    display: grid;
    place-items: center;
    color: var(--ink);
    padding-block: clamp(80px, 10vw, 120px);
    --mx: 50%;
    --my: 50%; }
.esp-hero__overlay { position: absolute; 
    inset: 0; 
    background-color: rgba(0, 0, 0, .64); 
    background-image: radial-gradient(
        circle at var(--mx) var(--my), 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 60%
    );
    z-index: -1;
    transition: opacity 0.3s ease; }
.esp-hero__in { position: relative; z-index: 1; width: min(1200px, calc(100% - 40px)); margin-inline: auto; text-align: left }
.esp-hero__title { margin: 10px 0;
    font: 700 clamp(28px, 4vw, 40px)/1.2 Nunito, system-ui, sans-serif;
    color: #ffffff;
    max-width: 25ch; }
.esp-hero__lead { margin: 0 0 24px;
    font: 16px/1.7 Nunito, system-ui, sans-serif;
    max-width: 60ch;
    color: #f3f4f6; }
.esp-hero__ctas { display: flex; 
    flex-direction: column; 
    align-items: flex-start;
    gap: 16px; 
    margin-top: 14px; }
.btn-wrap { display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center; }
.btn { display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-decoration: none;
  background: var(--esp-brand);
  color: #111;
  border: 2px solid transparent;
  box-shadow: 0 14px 34px rgba(252, 176, 23, 0.28);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap; }
.btn-dark { background: #fcb017; color: black; border: 2px solid #fcb017; box-shadow: 0 14px 34px rgba(252, 176, 23, 0.18); }
.btn-outline { background: #fcb017; color: black; box-shadow: none; }
.btn:hover, .btn-dark:hover, .btn-outline:hover { background: #ffffff;
  color: #fcb017;
  border: 2px solid #fcb017;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.esp-hero__accr { font-size: 14px; 
    font-weight: 700; 
    letter-spacing: .03em; 
    color: #ffffff; 
    opacity: .9; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    justify-content: flex-start; }
.esp-hero__accr span { opacity: .6 }
.esp-hero { min-height: auto; padding-top: 160px; padding-bottom: 60px; text-align: left; }
.esp-hero__in { display: flex; flex-direction: column; align-items: flex-start }
.esp-hero__bar { margin-bottom: 25px; }
.esp-hero__title { font-size: 28px; margin-top: 0; }
.esp-hero__accr { justify-content: flex-start; text-align: left }
.esp-about, .esp-features, .esp-our-services, .esp-services, .esp-testimonials, .esp-trust, .esp-faq, .esp-lead-magnet { padding-top: 60px !important;
        padding-bottom: 50px !important; }
.esp-about, .esp-features, .esp-our-services, .esp-services, .esp-testimonials, .esp-trust, .esp-faq, .esp-lead-magnet { padding-top: 70px !important;
        padding-bottom: 60px !important; }
.esp-about { background: #ffffff; color: var(--esp-ink); padding: clamp(40px, 6vw, 90px) 24px }
.esp-about__intro h2, .esp-features__header h2, .our-svc__head h2, .esp-addl__head h2, .esp-faq__head h2 { margin: 0 0 8px; font: 700 clamp(28px, 4vw, 40px)/1.2 Nunito, system-ui, sans-serif; color: var(--esp-ink); letter-spacing: -.01em }
.esp-about__intro p, .esp-features__header p, .our-svc__head p, .esp-addl__head p, .esp-faq__head p { margin: 0 auto; margin-bottom: 40px; max-width: 78ch; font: 16px/1.7 Nunito, system-ui, sans-serif; color: var(--esp-text-muted); }
.about-wrap { grid-template-columns: .95fr 1.05fr; align-items: stretch }
.about-col--left { display: flex; flex-direction: column; justify-content: flex-start; gap: 24px; }
.about-card { border: 2px solid var(--esp-brand); border-radius: var(--esp-card-radius); background: #ffffff; box-shadow: 0 2px 6px rgba(16, 24, 40, .05), 0 30px 80px rgba(16, 24, 40, .1); padding: 57px 24px; display: flex; flex-direction: column; text-align: center; align-items: center; height: auto; justify-content: flex-start; min-height: 0; }
.about-card__title { margin: 0 0 8px; font: 700 clamp(18px, 2.2vw, 22px)/1.25 Nunito, system-ui, sans-serif; color: var(--esp-ink); letter-spacing: .01em; text-align: center; width: 100%; }
.about-card__text { margin: 0 auto; font: 15.5px/1.7 Nunito, system-ui, sans-serif; color: var(--esp-text-muted); text-align: center; max-width: 100%; }
.about-media { margin: 0; border-radius: var(--esp-card-radius); overflow: hidden; border: 2px solid var(--esp-brand); box-shadow: 0 12px 28px rgba(0, 0, 0, .1); background: #fff7e3; display: flex; align-items: center; justify-content: center }
.about-media picture { display: block; width: 100%; height: 100%; }
.about-wrap { grid-template-columns: 1fr }
.about-media { height: auto }
.about-media { height: auto !important; aspect-ratio: 16 / 9; width: 100%; max-width: 722px; margin-inline: auto; }
.about-col--left { text-align: center }
.feature-grid, .our-svc__grid, .addl-grid { display: grid; gap: clamp(16px, 2.4vw, 26px); grid-template-columns: 1fr; align-items: stretch; }
.feature-card, .svc-card, .addl-card { position: relative; background: #ffffff; border-radius: var(--esp-card-radius); border: 2px solid transparent; padding: 32px 24px; text-align: center; box-shadow: 0 2px 6px rgba(16, 24, 40, .05), 0 30px 80px rgba(16, 24, 40, .1); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; overflow: hidden; }
.feature-card:hover, .svc-card:hover, .addl-card:hover { transform: translateY(-3px); border-color: var(--esp-brand); box-shadow: 0 6px 14px rgba(16, 24, 40, .08), 0 36px 110px rgba(16, 24, 40, .14); }
.esp-features__header { text-align: center; margin-bottom: clamp(28px, 5vw, 48px) }
.feature-icon { display: grid; place-items: center; margin: 0 auto 16px; width: auto; height: auto; background: 0 0 !important; border-radius: 0 !important; box-shadow: none !important; padding: 0 }
.feature-icon .emoji { font-size: 46px; line-height: 1; background: 0 0 !important; box-shadow: none !important; filter: none !important; -webkit-text-stroke: 0 transparent; image-rendering: auto }
.feature-card h3 { margin: 0 0 12px; color: var(--esp-ink); font: 700 clamp(18px, 2.2vw, 22px)/1.25 Nunito, system-ui, sans-serif; text-align: center; }
.feature-card p { margin: 0 auto; max-width: 38ch; color: var(--esp-text-muted); font: 15.5px/1.75 Nunito, system-ui, sans-serif; }
.our-svc__head { text-align: center; margin-bottom: clamp(24px, 4vw, 36px) }
.svc-card__thumb-wrap { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-card__thumb { width: 116px; height: 116px; border-radius: 50%; padding: 3px; background: conic-gradient(var(--esp-brand), #ffd37a 60%, var(--esp-brand)); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0, 0, 0, .06) }
.svc-card__thumb img { box-sizing: border-box; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #ffffff; padding: 4px; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.svc-card__title { margin: 0 0 12px; color: var(--esp-ink); font: 700 clamp(18px, 2.2vw, 22px)/1.25 Nunito, sans-serif; }
.svc-card__text { margin: 0; max-width: 38ch; color: var(--esp-text-muted); font: 15.5px/1.75 Nunito, sans-serif; }
.svc-card__cta { margin-top: auto; padding-top: 24px; color: var(--esp-ink); font-weight: 800; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.svc-card__cta-icon { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #fff; border: 2px solid var(--esp-brand); color: var(--esp-ink); border-radius: 50%; font-size: 16px; transition: all 0.3s ease; }
.svc-card:hover .svc-card__cta { opacity: 1; transform: translateY(0); }
.svc-card:hover .svc-card__cta-icon { background: var(--esp-brand); color: #000; transform: translateX(6px); }
.svc-card__cta { opacity: 1; transform: translateY(0); }
.svc-card__cta-icon { background: var(--esp-brand); color: #000; }
.esp-services__in { max-width: 1200px; margin: 0 auto; display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: 1fr 1fr; align-items: center }
.esp-svc-left { display: flex; justify-content: center; align-items: center; text-align: center }
.esp-svc-left-inner { max-width: 600px }
.esp-svc-title { margin: 0 0 14px; color: var(--esp-ink); font: 700 clamp(28px, 5vw, 56px)/1.06 Nunito, system-ui, sans-serif; letter-spacing: -.015em }
.esp-svc-lead { margin: 0 0 22px; color: var(--esp-text-muted); font: clamp(15px, 2.2vw, 18px)/1.7 Nunito, system-ui, sans-serif }
.esp-svc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 999px; text-decoration: none; font: 700 16px/1 Nunito, system-ui, sans-serif; border: 2px solid var(--esp-brand); background: var(--esp-brand); color: #111; box-shadow: 0 14px 30px rgba(252, 176, 23, .14); transition: all .18s ease }
.esp-svc-btn:hover { background: #ffffff; color: var(--esp-brand); transform: translateY(-1px); box-shadow: 0 14px 34px rgba(252, 176, 23, .22) }
.esp-svc-btn { margin-bottom: 20px }
.esp-svc-right { display: grid; gap: clamp(18px, 2.4vw, 28px); grid-template-columns: 1fr 1fr; align-content: center }
.esp-svc-right { grid-template-columns: 1fr 1fr }
.esp-svc-item { padding: 8px 4px }
.esp-svc-item h3 { margin: 0 0 8px; color: var(--esp-ink); font: 700 clamp(18px, 2.2vw, 22px)/1.25 Nunito, system-ui, sans-serif }
.esp-svc-item p { margin: 0; color: var(--esp-text-muted); font: 15.5px/1.7 Nunito, system-ui, sans-serif }
.esp-testimonials { padding:clamp(40px, 6vw, 90px) 24px; background: #fafafa }
.esp-testimonials__title { margin: 0 0 10px; font-weight: 700; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; letter-spacing: -.01em; color: #0f172a }
.esp-testimonials__lead { margin: 0; font-size: 16px; line-height: 1.75; color: var(--esp-text-muted) }
.esp-slider__viewport { overflow: hidden; padding-bottom: 50px; margin-bottom: -20px; }
.esp-slider__track { display: flex; transition: transform .9s cubic-bezier(.22, .61, .36, 1); align-items: stretch; }
.esp-slide { flex: 0 0 100%; display: flex; padding: 20px 30px; box-sizing: border-box; height: auto; }
.esp-slide__card { background: #ffffff; border-radius: var(--esp-card-radius); box-shadow: 0 12px 26px rgba(0, 0, 0, .08); padding: 32px 28px; margin: 0; width: 100%; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; box-sizing: border-box; }
.esp-slide__avatar { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; margin-right: 16px }
.esp-slide__name { margin: 0; font-weight: 800; font-size: 18px; color: var(--esp-brand-text); }
.esp-slide__role { margin: 2px 0 0; font-size: 14px; color: #6b7280 }
.esp-slide__stars { display: flex; gap: 4px; font-size: 18px; color: var(--esp-brand-text); margin-bottom: 16px }
.esp-slide__divider { border: 0; border-top: 1px solid #e5e7eb; margin: 16px 0 18px }
.esp-slide__text { margin: 0; font-size: 16px; line-height: 1.75; color: var(--esp-text-muted) }
.esp-slider__progress { width: 100%; max-width: 240px; height: 4px; background: #e5e7eb; border-radius: 10px; margin: 30px auto 0; overflow: hidden; position: relative; }
.esp-slider__bar { display: block; height: 100%; background: #FCB017; width: 0; border-radius: 10px; }
.esp-slider__bar.animating { animation: espProgressFill 3000ms linear forwards; }
.esp-trust-logo { display: block; margin: 0 auto; max-height: 85px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1); transition: filter 0.3s ease; }
.esp-trust-card:hover .esp-trust-logo { filter: grayscale(0); }
.esp-trust { background:#fff; padding: 90px 0; border-top:1px solid var(--esp-line); border-bottom:1px solid var(--esp-line); }
.esp-trust-card { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; min-height:150px; padding:16px; border:2px solid var(--esp-brand); border-radius:16px; background:#fff; box-shadow:0 8px 20px rgba(0,0,0,.06); transition:all .25s ease; text-decoration:none; color:inherit; }
.esp-trust-card { height: 140px; }
.esp-modal-overlay { position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px; }
.esp-modal-overlay.open { opacity: 1; pointer-events: auto; }
.esp-modal-card { background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--esp-brand);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.esp-modal-close { position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--esp-ink);
    line-height: 1; }
.modal-progress-container { width: 100%; height: 6px; background: #e5e7eb; border-radius: 10px; margin-bottom: 24px; overflow: hidden; }
.modal-progress-bar { height: 100%; background: var(--esp-brand); width: 33.33%; transition: width 0.3s ease; }
.modal-step { display: none; }
.modal-step.active-step { display: flex; flex-direction: column; }
.modal-step h3 { font-size: 22px; margin: 0 0 20px; font-weight: 700; color: var(--esp-ink); }
.option-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.option-label { display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease; }
.option-label:hover { border-color: var(--esp-brand); background: #fffbeb; }
.option-label input[type="radio"] { accent-color: var(--esp-brand); width: 18px; height: 18px; margin: 0; }
.step-buttons { display: flex; gap: 12px; justify-content: flex-end; }
.input-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.input-group input { width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px; }
.input-group input:focus { outline: none; border-color: var(--esp-brand); }
.sticky-mobile-bar { position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--esp-brand);
    padding: 12px 16px;
    display: none;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.12); }
.sticky-btn-call { flex: 1.4; background: #111; color: #fff; text-decoration: none; text-align: center; padding: 14px; border-radius: 999px; font-weight: 800; font-size: 15px; }
.sticky-btn-audit { flex: 1; background: var(--esp-brand); color: #111; border: none; padding: 14px; border-radius: 999px; font-weight: 800; font-size: 15px; cursor: pointer; }
.sticky-mobile-bar { display: flex; }
body { padding-bottom: 74px; }
.esp-faq { background: #fafafa; padding: clamp(40px, 6vw, 90px) 24px; border-top: 1px solid var(--esp-line); }
.esp-faq__in { max-width: 900px; margin: 0 auto; }
.esp-faq__head { text-align: center; margin-bottom: 32px; }
.faq-container { display: flex; flex-direction: column; gap: 12px; }
.faq-item-accordion { border: 1px solid var(--esp-line); background: #ffffff; border-radius: 12px; overflow: hidden; transition: border-color 0.2s ease; }
.accordion-trigger { width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fafafa;
    border: none;
    outline: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    color: var(--esp-dark);
    cursor: pointer;
    transition: background 0.2s ease; }
.accordion-trigger:hover { background: #f5f6f8; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1); background: #ffffff; }
.accordion-panel p { padding: 20px 24px; margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--esp-text-muted); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-icon { font-size: 22px; transition: transform 0.2s ease; display: inline-block; line-height: 1; }
.esp-lead-magnet { background: #fff7e3; padding: 60px 24px; border-radius: 24px; max-width: 1200px; margin: 40px auto; border: 2px dashed var(--esp-brand); }
.magnet-container { display: grid; gap: 40px; grid-template-columns: 1.4fr 0.6fr; align-items: center; }
.magnet-container { grid-template-columns: 1fr; text-align: center; }
.magnet-visual-side { display: none; }
.magnet-badge { display: inline-block; background: #fff; padding: 6px 14px; border-radius: 999px; font-weight: 800; font-size: 13px; color: #b87a00; margin-bottom: 16px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.esp-lead-magnet h2 { font-size: clamp(24px, 3.5vw, 32px); margin: 0 0 12px; font-weight: 800; color: #111; }
.esp-lead-magnet p { font-size: 16px; color: var(--esp-text-muted); line-height: 1.6; margin: 0 0 24px; max-width: 65ch; }
.magnet-inline-form { display: flex; gap: 12px; flex-wrap: wrap; }
.magnet-inline-form { flex-direction: column; }
.magnet-inline-form input { flex: 1; padding: 14px 20px; border-radius: 999px; border: 2px solid #e5e7eb; font-size: 16px; min-width: 260px; font-family: inherit; }
.magnet-inline-form input:focus { border-color: var(--esp-brand); outline: none; }
.magnet-visual-side { display: flex; justify-content: center; }
.mockup-doc { background: #fff; width: 180px; height: 240px; border-radius: 12px; border: 2px solid #111; box-shadow: 12px 12px 0 #111; padding: 20px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.mockup-header { font-weight: 800; font-size: 13px; color: var(--esp-brand-text); border-bottom: 2px solid #e5e7eb; padding-bottom: 6px; }
.mockup-lines { height: 8px; background: #e5e7eb; border-radius: 4px; }
.mockup-lines.short { width: 60%; }
.mockup-badge { position: absolute; bottom: 20px; right: -10px; background: #111; color: #fff; font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 4px; }
.esp-btn { display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--esp-brand);
  color: #111;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(252, 176, 23, 0.3); }
.esp-btn:hover { background: #ffffff;
  color: #fcb017;
  border: 2px solid #fcb017;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.esp-btn-outline { background:var(--esp-brand);
  color: #111;
  border: 2px solid #fff;
  box-shadow: none; }
.esp-btn-outline:hover { background: #ffffff;
  color: #fcb017;
  border: 2px solid #fcb017;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }

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