/* --- GLOBAL UTILITIES (DO NOT REMOVE) --- */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #424a57;
}
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
:focus-visible { outline: 2px solid #FCB017; outline-offset: 2px; }

/* Global Gradient Top Bar */
body::before { 
    content:""; position:absolute; top:0; left:0; width: 100%; height:10px;
    background: linear-gradient(90deg, #FFC956 0%, #FCB017 40%, #F4A90C 100%);
    z-index:9999; 
}

/* Base Variables matching the Master Brand */
:root {
    --brand: #FCB017;
    --ink: #111111;
    --text: #424a57;
    --line: rgba(0,0,0,.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.esp-wrap { max-width: 1100px; margin: 0 auto; padding-inline: 16px; }

/* Unified Button Style Helper */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: 999px; text-decoration: none;
    font-weight: 700; font-size: 15px; line-height: 1;
    transition: all 0.25s ease; cursor: pointer;
    border: 2px solid var(--brand); background: var(--brand);
    color: #111; box-shadow: 0 4px 10px rgba(0,0,0,.08);
    font-family: 'Nunito', sans-serif;
}
.btn:hover { background: #fff; color: var(--brand); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,.12); }
.btn .material-symbols-outlined { font-size: 18px; font-weight: bold; }

/* ===== HEADER FIXED (BLACK BG + LEFT LOGO) ===== */
.esp-header {
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.esp-header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.esp-logo img { height: 52px; width: auto; display: block; }

/* --- HERO SECTION (BACKGROUND KO FAFAFA KIYA AUR LIGHT THEME SET KIYA) --- */
.esp-hero { background: #fafafa; color: #424a57; padding: 120px 16px 60px; border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Grid container to ensure equal width and height on desktop */
.esp-hero-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media(min-width:900px){ 
    .esp-hero-grid { 
        grid-template-columns: 1fr 1fr; 
        align-items: stretch; /* Isse dono boxes ki height perfectly equal ho jayegi */
    } 
}

.esp-hero-card { 
    background: #fff; 
    border: 1px solid rgba(0,0,0,0.05); 
    border-radius: 16px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.04); 
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.esp-hero .eyebrow-pill {
    display:inline-block; 
    align-self: flex-start; /* Fix: restricts the width to content size inside vertical flex container */
    padding:6px 14px; 
    border:2px solid rgba(0,0,0,0.05); 
    border-radius:999px;
    font-weight:700; font-size: 12px; letter-spacing:.05em; text-transform:uppercase;
    color: var(--brand); background:rgba(252, 176, 23, 0.05); margin:0 0 16px;
}
.esp-hero .h1 {
    font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #111; margin: 0 0 14px; line-height: 1.15;
}
.esp-hero .p {
    font-size: 16px; line-height: 1.6; color: #424a57; margin: 0 0 24px;
}
.esp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-media { 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    text-align: center; 
    font-size: 0; 
    height: 100%;
    display: flex;
}
.hero-media img { 
    display: block; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Isse image box ke size ke mutabiq auto-crop ho jayegi aur stretch nahi hogi */
    border-radius: 16px; 
}

/* Fade-in Animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; animation: fadeInUp 0.9s ease forwards; }
.fade-in.delay { animation-delay: 0.3s; }

/* NEXT STEPS */
.esp-steps { background: #fff; padding: 70px 16px 60px; text-align: center; }
.esp-steps .h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: #111; margin: 0 0 32px; line-height: 1.15; }
.steps-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media(min-width:768px){ .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
    padding: 30px 24px; opacity: 0; transform: translateY(20px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-align: left;
}
.step:hover { transform: translateY(-8px); border-color: var(--brand); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.step.visible { animation: fadeInUp 0.9s ease forwards; }
.step .ico { font-size: 46px; color: var(--brand); line-height: 1; margin-bottom: 16px; display: inline-block; }
.step h3 { margin: 0 0 8px; color: #111; font-weight: 700; font-size: 18px; }
.step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #424a57; }

/* TRUST & COMPLIANCE STRIP */
.esp-trust { background: #fafafa; padding: 70px 16px 60px; border-top: 1px solid rgba(0,0,0,0.03); }
.esp-trust h2 { margin: 0 0 8px; text-align: center; color: #111; font-size: clamp(28px, 4vw, 38px); font-weight: 700; line-height: 1.15; }
.esp-trust p { margin: 0 0 40px; text-align: center; color: #424a57; font-size: 16px; font-weight: 500; }
.esp-trust-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media(min-width:960px){ .esp-trust-grid { grid-template-columns: repeat(4, 1fr); } }

.esp-trust-card {
    background: #fff; border: 2px solid var(--brand); border-radius: 16px; padding: 20px;
    text-align: center; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; align-items: center; min-height: 170px;
}
.esp-trust-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.esp-trust-logo { height: 96px; width: auto; object-fit: contain; margin-inline: auto; display: block; }
.esp-trust-note { margin: 12px 0 0; color: #111; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }

/* SOCIAL SECTION */
.esp-social { background: #fff; padding: 70px 16px 60px; border-top: 1px solid rgba(0,0,0,0.03); }
.esp-social-head { font-size: clamp(24px, 3.2vw, 32px); font-weight: 700; margin: 0 0 8px; color: #111; text-align: center; }
.esp-social-sub { font-size: 15px; margin: 0 0 32px; color: #424a57; text-align: center; font-weight: 500; }
.social-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media(min-width:480px){ .social-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:780px){ .social-grid { grid-template-columns: repeat(5, 1fr); } }

.social-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px;
    padding: 14px 16px; text-decoration: none; font-weight: 700; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,.08);
    transition: transform .2s ease, filter .2s ease; font-family: 'Nunito', sans-serif; font-size: 14px;
}
.social-btn:hover { filter: brightness(1.08); transform: scale(1.02); }
.social-btn:active { transform: scale(0.98); }
.social-ico { font-family: "Material Symbols Outlined"; font-size: 20px; line-height: 1; }
.fb { background: #1877F2; }
.ig { background: linear-gradient(135deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4); }
.yt { background: #FF0000; }
.tk { background: #000; }
.li { background: #0A66C2; }

/* Responsive Adjustments */
@media(max-width: 900px){
    body, section[class*="esp"] { text-align: center !important; }
    .esp-hero-card { text-align: center; padding: 30px 20px; }
    .esp-hero .eyebrow-pill { align-self: center; } /* Centers the pill inside flex container on mobile */
    .esp-hero-actions { justify-content: center; }
    .btn { width: 100%; box-sizing: border-box; }
    .step { text-align: center !important; }
}

/* === 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;
}
