/* ============================================================
   enterprise-seo.css — RanksBreathe Enterprise SEO Page
   Light Theme — Matching Main Website Design Language
   Prefix: es-
   ============================================================ */

:root {
  --es-pr: #0052e0;
  --es-pr2: #4f46e5;
  --es-pr-g: linear-gradient(135deg, #0052e0, #4f46e5);
  --es-bg: #ffffff;
  --es-bg2: #f8fafc;
  --es-surf: #ffffff;
  --es-surf2: #f1f5f9;
  --es-bdr: #e2e8f0;
  --es-bdr2: #cbd5e1;
  --es-tx1: #0f172a;
  --es-tx2: #475569;
  --es-tx3: #94a3b8;
  --es-gr: #10b981;
  --es-yw: #f59e0b;
  --es-rd: #ef4444;
  --es-wrap: 1200px;
  --es-r: 16px;
}

.es-wrap {
  background: var(--es-bg);
  color: var(--es-tx1);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* ── Scroll Reveal ── */
.es-rv, .es-rv-l, .es-rv-r {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.es-rv-l { transform: translateX(-22px); }
.es-rv-r { transform: translateX(22px); }
.es-rv.es-in, .es-rv-l.es-in, .es-rv-r.es-in { opacity: 1; transform: none; }

/* ── Shared Utilities ── */
.es-container { max-width: var(--es-wrap); margin: 0 auto; padding: 0 1.5rem; }

.es-h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.15;
  color: var(--es-tx1); margin: .5rem 0 1rem;
  letter-spacing: -0.03em;
}

.es-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 12px;
  font-size: .9rem; font-weight: 700;
  text-decoration: none; transition: all .25s;
  cursor: pointer; border: none; line-height: 1;
  font-family: inherit;
}
.es-btn-p {
  background: var(--es-pr);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,82,224,.25);
}
.es-btn-p:hover { background: #003DA8; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,82,224,.35); }
.es-btn-ghost { background: transparent; color: var(--es-tx1); border: 1.5px solid var(--es-bdr2); }
.es-btn-ghost:hover { border-color: var(--es-pr); color: var(--es-pr); }
.es-btn-ghost-l { background: transparent; color: var(--es-pr); border: 1.5px solid var(--es-pr); }
.es-btn-ghost-l:hover { background: rgba(0,82,224,.06); }
.es-btn-ghost-d { background: transparent; color: var(--es-tx2); border: 1.5px solid var(--es-bdr); }
.es-btn-ghost-d:hover { border-color: var(--es-bdr2); color: var(--es-tx1); }
.es-btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.es-btn-xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.es-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-left: -4px; }

.es-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,82,224,.06); border: 1px solid rgba(0,82,224,.15);
  color: var(--es-pr); padding: .4rem .9rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: .75rem;
}
.es-chip svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── HERO ── */
.es-hero {
  position: relative; overflow: hidden;
  background: #060d1a;
  padding: 5rem 1.5rem 5rem;
  min-height: 85vh;
  display: flex; align-items: center;
}

/* Grid overlay — matches homepage exactly */
.es-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* Top-right glow — matches homepage ::after */
.es-hero-bg1 {
  position: absolute; top: -200px; right: -150px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,82,224,.22) 0%, rgba(99,102,241,.1) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Bottom-left glow — matches homepage .hero-glow2 */
.es-hero-bg2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Center glow — matches homepage .hero-glow3 */
.es-hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,82,224,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.es-hero * { color: #fff; }
.es-hero-inner {
  max-width: var(--es-wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}

.es-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,82,224,.12); border: 1px solid rgba(0,82,224,.3);
  color: #93c5fd !important; padding: .45rem 1.1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: es-badge-glow 3s ease-in-out infinite;
}
@keyframes es-badge-glow {
  0%,100%{box-shadow: 0 0 10px rgba(0,82,224,.15)} 
  50%{box-shadow: 0 0 25px rgba(0,82,224,.3)}
}
.es-badge-ico { display: flex; }
.es-badge-ico svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.es-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  color: #fff !important; margin: 0 0 1.25rem;
  letter-spacing: -0.04em;
}
.es-hl {
  background: linear-gradient(135deg, #4f8fff 0%, #00e5cc 50%, #4f8fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: es-gradient-shift 4s ease-in-out infinite;
}
@keyframes es-gradient-shift {
  0%,100%{background-position:0% 50%} 50%{background-position:100% 50%}
}

.es-hdesc {
  font-size: 1.05rem; color: rgba(255,255,255,.55) !important;
  line-height: 1.75; margin: 0 0 1.75rem; max-width: 520px;
}
.es-hbtns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.es-hero .es-btn-p {
  background: linear-gradient(135deg, #0052E0 0%, #4f46e5 100%);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(0,82,224,.4);
  transition: all .3s;
}
.es-hero .es-btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,82,224,.5);
}
.es-hero .es-btn-ghost {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85) !important;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.04);
}
.es-hero .es-btn-ghost:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff !important;
}
.es-proof-row { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.es-proof-pill {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; color: rgba(255,255,255,.5) !important;
}
.es-proof-pill strong { color: #fff !important; }
.es-pp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--es-gr); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16,185,129,.5);
}

/* ── Dashboard Card (Glassmorphism) ── */
.es-dashboard {
  background: rgba(8,12,35,.85);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(0,82,224,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .4s, box-shadow .4s;
}
.es-dashboard:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 90px rgba(0,0,0,.65),
    0 0 40px rgba(0,82,224,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.es-dash-bar {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .75rem 1.1rem; font-size: .74rem;
}
.es-db-dot { width: 10px; height: 10px; border-radius: 50%; }
.es-db-dot:nth-child(1) { background: #ef4444; }
.es-db-dot:nth-child(2) { background: #f59e0b; }
.es-db-dot:nth-child(3) { background: #22c55e; }
.es-dash-title {
  color: rgba(255,255,255,.35) !important; margin-left: .35rem; flex: 1;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: .72rem;
}
.es-dash-live {
  display: flex; align-items: center; gap: .4rem;
  color: var(--es-gr) !important; font-weight: 600; font-size: .73rem;
}
.es-dlv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--es-gr);
  box-shadow: 0 0 8px rgba(16,185,129,.6);
  animation: es-pulse 1.8s infinite;
}
@keyframes es-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.85)} }

.es-dash-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.es-dm {
  padding: 1.4rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.es-dm:last-child { border-right: none; }
.es-dm-val { font-size: 1.6rem; font-weight: 800; color: #fff !important; line-height: 1; letter-spacing: -0.02em; }
.es-dm-val span { font-size: .9rem; color: rgba(255,255,255,.3) !important; }
.es-dm-lbl { font-size: .7rem; color: rgba(255,255,255,.35) !important; margin: .3rem 0; text-transform: uppercase; letter-spacing: .03em; }
.es-dm-change { font-size: .78rem; font-weight: 600; }
.es-dm-change.up { color: var(--es-gr) !important; }

.es-dash-pillars { padding: .9rem; display: flex; flex-direction: column; gap: .45rem; }
.es-dp {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; color: rgba(255,255,255,.6) !important;
  padding: .5rem .8rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 8px;
  transition: background .2s;
}
.es-dp:hover { background: rgba(255,255,255,.06); }
.es-dp-ico { width: 18px; text-align: center; font-style: normal; }
.es-dp span:nth-child(2) { flex: 1; }
.es-dp-badge {
  font-size: .68rem; font-weight: 600;
  padding: .2rem .55rem; border-radius: 5px;
}
.es-dp-badge.pass { background: rgba(16,185,129,.15); color: var(--es-gr) !important; }
.es-dp-badge.warn { background: rgba(245,158,11,.15); color: var(--es-yw) !important; }
.es-dp-warn .es-dp-ico { color: var(--es-yw) !important; }

.es-dash-foot {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1.1rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .7rem; color: rgba(255,255,255,.25) !important;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
.es-df-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--es-pr); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,82,224,.5);
}

/* ── TICKER ── */
.es-ticker {
  background: var(--es-bg2);
  border-top: 1px solid var(--es-bdr); border-bottom: 1px solid var(--es-bdr);
  overflow: hidden; white-space: nowrap; padding: .65rem 0;
}
.es-ttrack {
  display: inline-flex;
  animation: es-tick 32s linear infinite;
}
@keyframes es-tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.es-ti {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--es-tx2); padding: 0 1.2rem; font-weight: 500;
}
.es-ti svg { width: 12px; height: 12px; stroke: var(--es-pr); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.es-tdot { color: var(--es-tx3); padding: 0 .2rem; }

/* ── STATS ── */
.es-stats {
  background: var(--es-bg2);
  border-bottom: 1px solid var(--es-bdr);
  padding: 3.5rem 1.5rem;
}
.es-sgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.es-sitem {
  text-align: center;
  background: var(--es-surf);
  border: 1px solid var(--es-bdr);
  border-radius: var(--es-r);
  padding: 2rem 1.5rem;
  transition: transform .2s, box-shadow .2s;
}
.es-sitem:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.es-sico { font-size: 1.75rem; margin-bottom: .5rem; }
.es-sval {
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 800; color: var(--es-tx1); line-height: 1; margin-bottom: .35rem;
}
.es-sval b { font-size: .65em; color: var(--es-tx3); font-weight: 600; }
.es-slbl { font-size: .8rem; color: var(--es-tx3); line-height: 1.45; }

/* ── WHAT WE DO ── */
.es-wwd-sec { padding: 5rem 1.5rem; background: var(--es-bg); }
.es-sh {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem;
}
.es-sh2 { text-align: center; margin-bottom: 2.5rem; }
.es-sh2-desc { color: var(--es-tx2); font-size: .98rem; max-width: 560px; margin: .5rem auto 0; }

.es-wwd-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.es-wwd-card {
  background: var(--es-surf); border: 1px solid var(--es-bdr);
  border-radius: var(--es-r); padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.es-wwd-card:hover { border-color: rgba(0,82,224,.25); box-shadow: 0 4px 16px rgba(0,0,0,.06); transform: translateY(-2px); }
.es-wwd-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 1rem;
}
.es-wwd-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(0,82,224,.08); border: 1px solid rgba(0,82,224,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.es-wwd-ico svg { width: 20px; height: 20px; stroke: var(--es-pr); fill: none; stroke-width: 1.8; }
.es-wwd-num { font-size: 2rem; font-weight: 800; color: var(--es-bdr); line-height: 1; }
.es-wwd-title { font-size: 1rem; font-weight: 700; color: var(--es-tx1); margin-bottom: .55rem; }
.es-wwd-card p { font-size: .85rem; color: var(--es-tx2); line-height: 1.65; margin: 0 0 1rem; }
.es-wwd-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.es-wt {
  font-size: .71rem; background: var(--es-bg2);
  border: 1px solid var(--es-bdr); color: var(--es-tx3);
  padding: .2rem .6rem; border-radius: 6px; font-weight: 500;
}

/* ── WHO IT'S FOR ── */
.es-who-sec { padding: 4.5rem 1.5rem; background: var(--es-bg2); }
.es-who-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.es-who-card {
  background: var(--es-surf); border: 1px solid var(--es-bdr);
  border-radius: var(--es-r); padding: 1.5rem; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.es-who-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.es-who-ico { font-size: 2rem; margin-bottom: .75rem; }
.es-who-card h4 { font-size: .95rem; font-weight: 700; color: var(--es-tx1); margin: 0 0 .55rem; }
.es-who-card p { font-size: .82rem; color: var(--es-tx2); line-height: 1.6; margin: 0; }

/* ── PROCESS ── */
.es-proc-sec { padding: 5rem 1.5rem; background: var(--es-bg); }
.es-procsh { text-align: center; margin-bottom: 2.5rem; }
.es-procsh p { color: var(--es-tx2); max-width: 520px; margin: 0 auto; }
.es-procgrid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }
.es-pcard {
  background: var(--es-surf); border: 1px solid var(--es-bdr);
  border-radius: var(--es-r); padding: 1.5rem;
  position: relative; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.es-pcard:hover { border-color: rgba(0,82,224,.25); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.es-pnum {
  font-size: .7rem; font-weight: 700; color: var(--es-pr);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem;
}
.es-pico { font-size: 1.75rem; margin-bottom: .65rem; }
.es-pcard h4 { font-size: .9rem; font-weight: 700; color: var(--es-tx1); margin: 0 0 .5rem; }
.es-pcard p { font-size: .8rem; color: var(--es-tx2); line-height: 1.6; margin: 0; }

/* ── COMPARISON ── */
.es-cmp-sec { padding: 5rem 1.5rem; background: var(--es-bg2); }
.es-cmpbox { border-radius: var(--es-r); border: 1px solid var(--es-bdr); overflow: hidden; background: var(--es-surf); }
.es-cmpscroll { overflow-x: auto; }
.es-cmpt { width: 100%; border-collapse: collapse; font-size: .87rem; }
.es-cmpt th {
  padding: 1rem 1.25rem; text-align: left;
  background: var(--es-bg2); color: var(--es-tx2);
  font-weight: 700; border-bottom: 1px solid var(--es-bdr);
  white-space: nowrap;
}
.es-cmpt th.es-thus { color: var(--es-pr); background: rgba(0,82,224,.06); }
.es-cmpt td {
  padding: .85rem 1.25rem; border-bottom: 1px solid var(--es-bdr);
  color: var(--es-tx2); vertical-align: middle;
}
.es-cmpt tr:last-child td { border-bottom: none; }
.es-cmpt tr:hover td { background: var(--es-bg2); }
.es-tdyes { color: var(--es-gr) !important; font-weight: 600; }
.es-tdno { color: var(--es-rd) !important; }
.es-tdmeh { color: var(--es-yw) !important; }
.es-io { color: var(--es-gr); }
.es-ix { color: var(--es-rd); }
.es-im { color: var(--es-yw); }

/* ── RESULTS ── */
.es-results-sec { padding: 5rem 1.5rem; background: var(--es-bg); }
.es-resgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.es-rc {
  background: var(--es-surf); border: 1px solid var(--es-bdr);
  border-radius: var(--es-r); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.es-rc:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.es-rctop { border-bottom: 1px solid var(--es-bdr); padding-bottom: 1rem; }
.es-rcdom { font-size: .74rem; color: var(--es-tx3); font-family: monospace; margin-bottom: .7rem; }
.es-rcmet { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; }
.es-rcm { text-align: center; }
.es-rcmv { font-size: 1.15rem; font-weight: 800; color: var(--es-tx1); }
.es-rcml { font-size: .68rem; color: var(--es-tx3); margin-top: .15rem; }
.es-rcbot { display: flex; flex-direction: column; gap: .7rem; }
.es-rcq { font-size: .85rem; color: var(--es-tx2); line-height: 1.65; font-style: italic; }
.es-rcby { display: flex; align-items: center; gap: .7rem; }
.es-rcav {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.es-rcn { font-size: .85rem; font-weight: 600; color: var(--es-tx1); }
.es-rcr { font-size: .73rem; color: var(--es-tx3); }

/* ── FAQ ── */
.es-faq-sec { padding: 5rem 1.5rem; background: var(--es-bg2); }
.es-faq-inner {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 3.5rem; align-items: start;
}
.es-faq-left { position: sticky; top: 5rem; }
.es-faq-left > p { color: var(--es-tx2); font-size: .88rem; line-height: 1.68; margin: 0 0 1.5rem; }
.es-faq-cta {
  background: var(--es-surf); border: 1px solid var(--es-bdr);
  border-radius: var(--es-r); padding: 1.25rem;
}
.es-faq-cta h4 { font-size: .9rem; font-weight: 700; color: var(--es-tx1); margin: 0 0 .4rem; }
.es-faq-cta p { font-size: .8rem; color: var(--es-tx2); margin: 0 0 1rem; line-height: 1.6; }
.es-faq-list { display: flex; flex-direction: column; }
.es-faq-item { border-bottom: 1px solid var(--es-bdr); }
.es-faq-q {
  display: flex; justify-content: space-between;
  align-items: center; padding: 1.1rem 0;
  cursor: pointer; gap: 1rem; user-select: none;
}
.es-faq-qt { font-size: .9rem; font-weight: 600; color: var(--es-tx1); }
.es-faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--es-tx3); transition: transform .3s;
}
.es-faq-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.es-faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.es-faq-ai {
  overflow: hidden; font-size: .85rem;
  color: var(--es-tx2); line-height: 1.72; padding-bottom: 0;
}
.es-faq-item.es-open .es-faq-a { grid-template-rows: 1fr; }
.es-faq-item.es-open .es-faq-ai { padding-bottom: 1.1rem; }
.es-faq-item.es-open .es-faq-icon { transform: rotate(45deg); }
.es-faq-ai a { color: var(--es-pr); text-decoration: none; }
.es-faq-ai a:hover { text-decoration: underline; }

/* ── FINAL CTA ── */
.es-cta-sec {
  padding: 5rem 1.5rem; background: var(--es-bg);
  border-top: 1px solid var(--es-bdr);
}
.es-cta-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,82,224,.04), rgba(79,70,229,.03));
  border: 1px solid rgba(0,82,224,.12); border-radius: 20px; padding: 3rem;
}
.es-cta-h2 { font-size: clamp(1.8rem, 3vw, 2.5rem) !important; }
.es-cta-left > p { color: var(--es-tx2); margin: 0 0 1.5rem; font-size: 1rem; line-height: 1.65; }
.es-cta-list { display: flex; flex-direction: column; gap: .5rem; }
.es-cl-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--es-tx2);
}
.es-cl-ico { color: var(--es-gr); font-weight: 700; width: 18px; flex-shrink: 0; }
.es-cta-right { display: flex; flex-direction: column; }
.es-cta-trust {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; font-size: .74rem; color: var(--es-tx3);
  margin-top: .75rem; justify-content: center;
}

/* ── Related Services (inline) ── */
.es-wrap + section { background: var(--es-bg2) !important; border-top-color: var(--es-bdr) !important; }
.es-wrap + section p { color: var(--es-tx3) !important; }
.es-wrap + section a { border-color: var(--es-bdr) !important; color: var(--es-tx1) !important; }
.es-wrap + section a:hover { border-color: var(--es-pr) !important; color: var(--es-pr) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .es-hero { min-height: auto; padding: 4rem 1.5rem; }
  .es-hero-inner { grid-template-columns: 1fr; }
  .es-hero-right { display: none; }
  .es-sgrid { grid-template-columns: repeat(2,1fr); }
  .es-wwd-grid { grid-template-columns: repeat(2,1fr); }
  .es-who-grid { grid-template-columns: repeat(2,1fr); }
  .es-procgrid { grid-template-columns: repeat(3,1fr); }
  .es-resgrid { grid-template-columns: repeat(2,1fr); }
  .es-faq-inner { grid-template-columns: 1fr; }
  .es-faq-left { position: static; }
  .es-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .es-hero { padding: 3rem 1rem 3rem; }
  .es-wwd-grid { grid-template-columns: 1fr; }
  .es-procgrid { grid-template-columns: repeat(2,1fr); }
  .es-resgrid { grid-template-columns: 1fr; }
  .es-sh { flex-direction: column; align-items: flex-start; }
  .es-cta-inner { padding: 2rem 1.5rem; }
  .es-sgrid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .es-who-grid { grid-template-columns: 1fr; }
  .es-procgrid { grid-template-columns: 1fr; }
  .es-hbtns { flex-direction: column; }
  .es-btn-lg { width: 100%; justify-content: center; }
  .es-btn-xl { width: 100%; }
  .es-cta-inner { grid-template-columns: 1fr; }
}
