/* Global border-box fix */
*, *::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);
}

body{
    margin: 0;
    font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #ffffff;
    color: var(--esp-ink);
    overflow-x: hidden; 
}

/* ========================= HERO SECTION ========================= */
.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__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, .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__bar { display: inline-block; width: 88px; height: 8px; background: var(--brand); border-radius: 6px }

.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 }

@media (max-width:768px) {
    .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;
    }
}

@media (min-width: 769px) {
    .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;
    }
}

/* About Section */
.esp-about { background: #ffffff; color: var(--esp-ink); 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-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 { margin-top: clamp(24px, 4vw, 36px); display: grid; gap: clamp(18px, 3vw, 26px); align-items: stretch }
@media(min-width:1024px) { .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-media img { display: block; width: 100%; height: 100%; object-fit: cover }

@media(max-width:800px) { .about-wrap { grid-template-columns: 1fr } .about-media { height: auto } }
@media (max-width: 768px) { .about-media { height: auto !important; aspect-ratio: 16 / 9; width: 100%; max-width: 722px; margin-inline: auto; } }
@media (max-width:640px) { .about-col--left { text-align: center } }

/* Shared Grid Settings */
.feature-grid, .our-svc__grid, .addl-grid { display: grid; gap: clamp(16px, 2.4vw, 26px); grid-template-columns: 1fr; align-items: stretch; }
@media (min-width:900px) { .feature-grid, .our-svc__grid, .addl-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width:640px) and (max-width:899px) { .feature-grid, .our-svc__grid, .addl-grid { grid-template-columns: repeat(2, 1fr); } }

/* Shared Card Base */
.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); }

/* Features Section */
.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: 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 Services Section */
.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: 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; }

/* Hover CTA Effect */
.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); }

@media (max-width: 768px) {
    .svc-card__cta { opacity: 1; transform: translateY(0); }
    .svc-card__cta-icon { background: var(--esp-brand); color: #000; }
}

/* Professional Services Section */
.esp-services { background: #fafafa; padding: clamp(48px, 8vw, 90px) 20px }
.esp-services__in { max-width: 1200px; margin: 0 auto; display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: 1fr 1fr; align-items: center }
@media (max-width:980px) { .esp-services__in { grid-template-columns: 1fr } }
.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) }
@media (max-width:640px) { .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 }
@media (max-width:720px) { .esp-svc-right { grid-template-columns: 1fr 1fr } }
@media (max-width:480px) { .esp-svc-right { grid-template-columns: 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 }
.areas-served-list { margin: 0; padding-left: 20px; columns: 2; column-gap: 28px; color: var(--esp-text-muted); font: 15.5px/1.7 Nunito, system-ui, sans-serif; }
.areas-served-list li { break-inside: avoid; margin-bottom: 4px; }

.esp-process { background: #fff; padding: clamp(48px, 7vw, 80px) 24px; }
.esp-process__in { max-width: 1200px; margin: 0 auto; }
.esp-process__head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.esp-process__head h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 40px); line-height: 1.2; }
.esp-process__head p { margin: 0; color: var(--esp-text-muted); font-size: 16px; line-height: 1.7; }
.esp-process__steps { list-style: none; counter-reset: deployment-step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; }
.esp-process__steps li { counter-increment: deployment-step; position: relative; padding: 28px 24px 24px; border: 1px solid var(--esp-line); border-radius: var(--esp-card-radius); background: #fafafa; }
.esp-process__steps li::before { content: counter(deployment-step); display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 18px; border-radius: 50%; background: var(--esp-brand); color: #111; font-weight: 800; }
.esp-process__steps strong { display: block; margin-bottom: 8px; font-size: 18px; }
.esp-process__steps span { display: block; color: var(--esp-text-muted); font-size: 15.5px; line-height: 1.7; }
@media (max-width: 760px) { .esp-process__steps { grid-template-columns: 1fr; } .areas-served-list { columns: 1; } }

/* Testimonials Section */
.esp-testimonials { padding:clamp(40px, 6vw, 90px) 24px; background: #fafafa }
.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-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 { position: relative; max-width: 900px; margin: 0 auto }
.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__header { display: flex; align-items: center; margin-bottom: 18px }
.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; }

@keyframes espProgressFill { from { width: 0%; } to { width: 100%; } }
.esp-slider__bar.animating { animation: espProgressFill 3000ms linear forwards; }

/* Stabilized Trust/Accreditation Layout */
.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 .esp-trust-in{ max-width:1100px; margin:0 auto; padding:0 16px; }
.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 40px; 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(--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:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(0,0,0,.12); border-color:#f7b615; }

@media (max-width: 480px) { .esp-trust { padding: 40px 0; } .esp-trust-card { height: 140px; } }

/* =========================================================================
   NEW ADVANCED COMPONENTS (INTERACTIVE MODAL, ACCORDION, STICKY, MAGNET)
========================================================================= */

/* 1. Interactive Modal Glassmorphism */
.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-question { font-size: 22px; line-height: 1.3; 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); }

/* 3. On-Page AEO/GEO Accordion FAQs */
.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-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);
}

/* Inline styles for homepage.html */
.st-1f6fb8c1 { text-decoration: none !important; color: inherit !important; display: contents !important; }
.st-1f6fb8c1 { text-decoration: none !important; color: inherit !important; display: contents !important; }
.st-ca560539 { background: #fff !important; padding: 60px 24px !important; text-align: center !important; margin: 40px 0 !important; }
.st-eb46d9df { max-width: 800px !important; margin: 0 auto !important; }
.st-e1e9fbf1 { color: #111 !important; font-size: clamp(28px, 4vw, 36px) !important; font-weight: 700 !important; margin-bottom: 16px !important; }
.st-9c4e5dd2 { color: #111 !important; font-size: 16px !important; margin-bottom: 32px !important; line-height: 1.6 !important; }
.st-2f6e6648 { display: flex !important; gap: 16px !important; justify-content: center !important; flex-wrap: wrap !important; margin-bottom: 40px !important; }
.esp-contact-address { margin: 24px auto 0; color: var(--esp-text-muted); font-style: normal; font-size: 15px; line-height: 1.7; }
.esp-contact-address a { color: #111; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
