/* =========================================================
   Enterprise SEO Services — page-specific stylesheet
   Brand: #ec2024 (red) | Accent: #2348c9 (deep blue)
   Scoped under .esx-page
   ========================================================= */

.esx-page {
    --esx-red: #ec2024;
    --esx-red-deep: #b8181c;
    --esx-blue: #2348c9;
    --esx-blue-soft: #4f6dd6;
    --esx-ink: #0d1733;
    --esx-ink-2: #2b355a;
    --esx-mute: #5a6582;
    --esx-line: rgba(13, 23, 51, 0.08);
    --esx-bg: #fbfaf7;
    --esx-bg-2: #f3f1ec;
    --esx-card: #ffffff;
    --esx-shadow: 0 18px 48px -22px rgba(13, 23, 51, 0.18);
    --esx-shadow-lg: 0 30px 80px -30px rgba(13, 23, 51, 0.32);
    --esx-radius: 18px;
    background: var(--esx-bg);
    color: var(--esx-ink);
    font-family: 'Urbanist','Roboto',-apple-system,BlinkMacSystemFont,sans-serif;
    overflow-x: clip;
}

.esx-page * { box-sizing: border-box; }
.esx-page img { max-width: 100%; }

.esx-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }

.esx-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: ui-monospace,'SF Mono','Cascadia Code','Roboto Mono',Consolas,monospace;
    font-size: 11.5px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--esx-red);
    padding: 6px 12px; border: 1px solid rgba(236,32,36,0.25);
    border-radius: 999px; background: rgba(236,32,36,0.06);
}
.esx-eyebrow::before {
    content:""; width:6px; height:6px; border-radius:50%; background:var(--esx-red);
    box-shadow: 0 0 0 0 rgba(236,32,36,0.55); animation: esx-pulse 1.8s ease-out infinite;
}
@keyframes esx-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(236,32,36,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(236,32,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(236,32,36,0); }
}

.esx-h1 {
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 18px 0 18px;
    color: #fff;
    text-wrap: balance;
}
.esx-h1 .esx-grad {
    background: linear-gradient(90deg,#ff7a7c 0%, #ec2024 35%, #ffd2d3 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.esx-h2 {
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.018em;
    color: var(--esx-ink);
    margin: 0 0 14px;
    text-wrap: balance;
}
.esx-h2 .esx-grad {
    background: linear-gradient(90deg, var(--esx-blue) 0%, var(--esx-red) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.esx-lead { font-size: 16px; line-height: 1.7; color: var(--esx-mute); margin: 0; }
.esx-section-eyebrow {
    display: inline-block;
    font-family: ui-monospace,monospace;
    font-size: 12px; letter-spacing: 2.4px; font-weight: 700;
    text-transform: uppercase;
    color: var(--esx-red);
    margin-bottom: 12px;
}

/* ---------- HERO ---------- */
.esx-hero {
    position: relative;
    padding: 108px 0 80px;
    color: #fff;
    background:
        radial-gradient(60% 70% at 80% 0%, rgba(236,32,36,0.28) 0%, transparent 60%),
        radial-gradient(50% 60% at 0% 90%, rgba(35,72,201,0.32) 0%, transparent 65%),
        linear-gradient(160deg, #0d1733 0%, #1a2350 55%, #0d1733 100%);
    overflow: hidden;
    isolation: isolate;
}
.esx-hero::before {
    content:""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(80% 60% at 50% 40%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(80% 60% at 50% 40%, #000 0%, transparent 75%);
    z-index: 0;
}
.esx-hero::after {
    content:""; position: absolute; inset: -2px; pointer-events:none;
    background: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    z-index: 0;
}
.esx-hero-orb {
    position: absolute; border-radius: 50%; filter: blur(60px);
    pointer-events: none; z-index: 0; opacity: 0.5;
    animation: esx-float 12s ease-in-out infinite;
}
.esx-hero-orb.a { width: 420px; height: 420px; background: #ec2024; top: -120px; right: -80px; }
.esx-hero-orb.b { width: 360px; height: 360px; background: #2348c9; bottom: -160px; left: -60px; animation-delay: -4s; }
@keyframes esx-float {
    0%,100% { transform: translateY(0) scale(1); }
    50%     { transform: translateY(-30px) scale(1.05); }
}

.esx-hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.esx-hero-copy { animation: esx-fade-up 0.9s ease-out both; }
@keyframes esx-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Form card (used in form section) */
.esx-form-card {
    position: relative;
    padding: 30px 30px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.93));
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    box-shadow:
        0 30px 70px -20px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.18) inset,
        0 0 80px rgba(236,32,36,0.18);
    color: var(--esx-ink);
    animation: esx-fade-up 1s ease-out 0.15s both;
}
.esx-form-card::before {
    content:""; position: absolute; inset: -1px; border-radius: 21px; padding:1px;
    background: linear-gradient(135deg, rgba(236,32,36,0.6), rgba(35,72,201,0.5), rgba(236,32,36,0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events:none; opacity:0.55;
}
.esx-form-card__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px;
}
.esx-form-card__head h3,
.esx-form-card__head p.h {
    margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -0.01em;
}
.esx-form-card__head h3 span,
.esx-form-card__head p.h span { color: var(--esx-red); }
.esx-badge {
    font-family: ui-monospace,monospace;
    font-size: 10.5px; letter-spacing: 1.4px; font-weight: 700;
    color: #1f7a3a; text-transform: uppercase;
    padding: 4px 8px; border-radius: 6px;
    background: rgba(31,122,58,0.10); border: 1px solid rgba(31,122,58,0.25);
    display: inline-flex; gap:6px; align-items:center;
}
.esx-badge::before { content:""; width:6px; height:6px; border-radius:50%; background:#1f7a3a; }
.esx-form-card p.sub { margin: 0 0 18px; font-size: 13.5px; color: var(--esx-mute); }

.esx-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.esx-field { margin-bottom: 12px; }
.esx-field label {
    display:flex; align-items:center; justify-content:space-between;
    font-family: ui-monospace,monospace; font-size: 11px; font-weight:700;
    letter-spacing: 1.2px; text-transform: uppercase; color: #4a5478;
    margin-bottom: 6px;
}
.esx-field label::before { content:"//"; color: var(--esx-red); margin-right:6px; }
.esx-field label .opt {
    font-size: 9.5px; color:#7a849c; padding:1px 6px; border:1px solid #d8dbe4;
    border-radius: 3px; letter-spacing: 0.8px;
}
.esx-input-wrap { position: relative; }

/* Phone country indicator — same mechanism as the homepage popup
   modal (custom.js looks up `.tm-phone-country` inside the phone
   input's parent and writes the detected country in real time). */
.esx-page .tm-phone-country {
    display: block;
    margin-top: 5px;
    padding-left: 2px;
    font-family: ui-monospace,'SF Mono','Cascadia Code','Roboto Mono',Consolas,monospace;
    font-size: 11px;
    font-weight: 600;
    color: #c89200;          /* darker amber — readable on white form card */
    letter-spacing: 0.4px;
    line-height: 1.3;
    min-height: 14px;        /* reserves the row so layout never jerks */
}
.esx-input, .esx-textarea {
    width:100%;
    padding: 11px 13px;
    border: 1px solid #d8dde9;
    background: #fff;
    border-radius: 8px;
    font-size: 14px; color: var(--esx-ink);
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.esx-input::placeholder, .esx-textarea::placeholder { color:#a4abc0; }
.esx-input:focus, .esx-textarea:focus {
    outline: none; border-color: var(--esx-red);
    box-shadow: 0 0 0 4px rgba(236,32,36,0.10);
    background: #fffafa;
}
.esx-textarea { min-height: 86px; resize: vertical; }
.esx-error.error-message {
    display:block; font-family: ui-monospace,monospace; font-size: 11.5px;
    color: #c92a2e; min-height: 14px; margin-top: 4px;
}
.esx-submit {
    position: relative;
    width: 100%;
    margin-top: 4px;
    padding: 13px 22px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    font-family: ui-monospace,monospace;
    font-size: 13px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: #fff;
    background: linear-gradient(135deg, #ec2024 0%, #b8181c 60%, #ec2024 100%);
    background-size: 200% 100%;
    cursor: pointer; overflow: hidden;
    box-shadow: 0 14px 28px -10px rgba(236,32,36,0.55);
    transition: transform .2s, box-shadow .2s, background-position .6s;
    display:flex; align-items:center; justify-content:center; gap:10px;
}
.esx-submit::before {
    content:""; position:absolute; top:0; left:-75%; width:50%; height:100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.30), transparent);
    transform: skewX(-20deg); transition: left .65s ease;
}
.esx-submit:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 22px 40px -12px rgba(236,32,36,0.65);
}
.esx-submit:hover::before { left: 125%; }
.esx-submit-arrow { font-size: 16px; transition: transform .2s; }
.esx-submit:hover .esx-submit-arrow { transform: translateX(4px); }
.esx-fineprint { font-size: 11.5px; color:#7a849c; margin-top: 10px; text-align:center; line-height: 1.5; }

/* ---------- Generic section ---------- */
.esx-section { padding: 96px 0; position: relative; }
.esx-section.alt { background: var(--esx-bg-2); }
.esx-section.dark {
    color: #fff;
    background:
        radial-gradient(50% 60% at 90% 10%, rgba(236,32,36,0.22) 0%, transparent 60%),
        radial-gradient(50% 60% at 0% 90%, rgba(35,72,201,0.22) 0%, transparent 60%),
        linear-gradient(160deg, #0d1733 0%, #1a2350 100%);
    overflow: hidden;
}
.esx-section.dark::before {
    content:""; position: absolute; inset:0; pointer-events:none;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 22px 22px; opacity:.45;
}
.esx-section.dark .esx-h2 { color:#fff; }
.esx-section.dark .esx-lead { color: rgba(255,255,255,0.78); }
.esx-section.dark .esx-section-eyebrow { color: #ff8a8c; }

.esx-section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.esx-section-head.center { display: block; max-width: 820px; margin-left:auto; margin-right:auto; text-align:center; margin-bottom: 56px; }

/* ---------- Pillars ---------- */
.esx-pillars { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.esx-pillars-img {
    position: relative; border-radius: var(--esx-radius); overflow: hidden;
    background: linear-gradient(135deg, #eef0f7, #fff);
    border: 1px solid var(--esx-line);
    box-shadow: var(--esx-shadow-lg);
    aspect-ratio: 4/3;
}
.esx-pillars-img img { width:100%; height:100%; object-fit: cover; transition: transform .8s ease; }
.esx-pillars-img:hover img { transform: scale(1.04); }
.esx-pillars-img::after {
    content:""; position:absolute; inset:0;
    background: linear-gradient(135deg, transparent 60%, rgba(236,32,36,0.10) 100%);
}
.esx-pillar {
    position: relative;
    padding: 22px 24px 22px 76px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 14px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.esx-pillar + .esx-pillar { margin-top: 16px; }
.esx-pillar::before {
    content: attr(data-num);
    position: absolute; left: 18px; top: 22px;
    width: 44px; height: 44px;
    display:flex; align-items:center; justify-content:center;
    border-radius: 12px;
    font-family: ui-monospace,monospace; font-weight: 800; font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    box-shadow: 0 10px 22px -8px rgba(236,32,36,0.55);
}
.esx-pillar h3 { margin: 0 0 4px; font-size: 19px; font-weight: 700; }
.esx-pillar p { margin: 0; color: var(--esx-mute); font-size: 14.5px; line-height: 1.6; }
.esx-pillar:hover {
    transform: translateY(-3px);
    box-shadow: var(--esx-shadow);
    border-color: rgba(236,32,36,0.25);
}

/* ---------- CTA banner ---------- */
.esx-cta-card {
    position: relative;
    padding: 56px 40px;
    border-radius: 22px;
    background:
        radial-gradient(80% 100% at 100% 0%, rgba(255,255,255,0.06) 0%, transparent 60%),
        linear-gradient(135deg, #0d1733 0%, #2348c9 65%, #ec2024 130%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 70px -25px rgba(35,72,201,0.55);
}
.esx-cta-card::before {
    content:""; position:absolute; inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(70% 80% at 50% 50%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(70% 80% at 50% 50%, #000, transparent 80%);
    z-index:-1;
}
.esx-cta-card h3 { font-size: clamp(26px, 3vw, 38px); font-weight:800; line-height:1.2; margin:0 0 12px; }
.esx-cta-card p { font-size: 16px; line-height:1.7; color: rgba(255,255,255,0.85); margin:0 0 22px; max-width: 820px; }

.esx-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 24px;
    background: linear-gradient(135deg, #ec2024, #b8181c);
    color:#fff; text-decoration:none; font-weight: 700;
    border-radius: 10px; border:1px solid rgba(255,255,255,0.1);
    box-shadow: 0 14px 28px -12px rgba(236,32,36,0.65);
    transition: transform .2s, box-shadow .2s;
    font-size: 14.5px;
}
.esx-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(236,32,36,0.75); color:#fff; }
.esx-btn--ghost {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.25); box-shadow: none;
}
.esx-btn--ghost:hover { background: rgba(255,255,255,0.12); }
.esx-btn--solid-light {
    background: #fff; color: var(--esx-ink); border: 1px solid var(--esx-line);
    box-shadow: var(--esx-shadow);
}
.esx-btn--solid-light:hover { color: var(--esx-red); }

/* ---------- Service grid ---------- */
.esx-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.esx-svc {
    position: relative;
    padding: 26px 24px 26px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s, border-color .25s, background .25s;
    isolation: isolate;
}
.esx-svc::before {
    content:""; position:absolute; inset:0; z-index:-1;
    background: radial-gradient(80% 80% at 0% 0%, rgba(236,32,36,0.18), transparent 60%);
    opacity: 0; transition: opacity .35s;
}
.esx-svc:hover { transform: translateY(-4px); border-color: rgba(236,32,36,0.4); }
.esx-svc:hover::before { opacity: 1; }
.esx-svc-icon {
    width: 56px; height: 56px; display:flex; align-items:center; justify-content:center;
    background: rgba(236,32,36,0.15);
    border: 1px solid rgba(236,32,36,0.35);
    border-radius: 12px; margin-bottom: 16px;
    transition: transform .35s;
}
.esx-svc:hover .esx-svc-icon { transform: rotate(-6deg) scale(1.06); }
.esx-svc-icon img { width: 28px; height: 28px; }
.esx-svc h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: #fff; }
.esx-svc p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0; }

/* ---------- Package cards ---------- */
.esx-pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.esx-pkg {
    position: relative;
    padding: 28px 24px 26px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #fbfaf7);
    border: 1px solid var(--esx-line);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.esx-pkg::before {
    content:""; position:absolute; right:-30px; top:-30px; width: 120px; height:120px;
    background: radial-gradient(circle, rgba(236,32,36,0.16), transparent 70%);
    transition: transform .5s;
}
.esx-pkg:hover { transform: translateY(-5px); box-shadow: var(--esx-shadow-lg); border-color: rgba(236,32,36,0.25); }
.esx-pkg:hover::before { transform: scale(1.4); }
.esx-pkg-num {
    font-family: ui-monospace,monospace;
    font-size: 44px; font-weight: 800;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-blue));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; margin-bottom: 18px;
}
.esx-pkg h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.esx-pkg p { font-size: 14px; line-height: 1.6; color: var(--esx-mute); margin: 0; }

/* ---------- How we deliver ---------- */
.esx-process-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.esx-process {
    position: relative; overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(70% 80% at 0% 0%, rgba(255,255,255,0.04), transparent 60%),
        linear-gradient(160deg, #131c3f 0%, #1f2a55 100%);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.esx-process:hover { transform: translateY(-4px); border-color: rgba(236,32,36,0.45); box-shadow: 0 30px 50px -22px rgba(0,0,0,0.55); }
.esx-process-img { aspect-ratio: 16/10; overflow:hidden; border-bottom: 1px solid rgba(255,255,255,0.08); }
.esx-process-img img { width:100%; height:100%; object-fit: cover; opacity: 0.82; transition: transform .8s, opacity .4s; }
.esx-process:hover .esx-process-img img { transform: scale(1.06); opacity: 1; }
.esx-process-body { padding: 22px 22px 24px; }
.esx-process-step {
    font-family: ui-monospace,monospace; font-size: 11.5px; letter-spacing: 1.6px; font-weight: 700;
    color: #ff8a8c; text-transform: uppercase; margin-bottom: 8px;
}
.esx-process h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.esx-process p { margin:0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.78); }

/* ---------- AI & GEO split ---------- */
.esx-split { display:grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.esx-feature-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.esx-feature {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 14px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.esx-feature:hover { transform: translateY(-4px); border-color: rgba(35,72,201,0.3); box-shadow: var(--esx-shadow); }
.esx-feature-tag {
    display:inline-flex; align-items:center; gap:6px;
    font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: 1.4px;
    font-weight: 700; color: var(--esx-blue); text-transform: uppercase;
    margin-bottom: 10px;
}
.esx-feature-tag::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--esx-blue); }
.esx-feature h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 800; }
.esx-feature p { margin:0; color: var(--esx-mute); font-size: 13.5px; line-height: 1.6; }

/* ---------- Revenue list ---------- */
.esx-rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.esx-rev-list { display: grid; gap: 14px; }
.esx-rev-item {
    position: relative;
    padding: 18px 22px 18px 64px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    transition: transform .25s, background .25s, border-color .25s;
}
.esx-rev-item:hover { transform: translateX(6px); background: rgba(255,255,255,0.07); border-color: rgba(236,32,36,0.4); }
.esx-rev-item::before {
    content: "→"; position: absolute; left: 18px; top: 18px;
    width: 32px; height: 32px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(236,32,36,0.18);
    border: 1px solid rgba(236,32,36,0.4);
    border-radius: 8px; color: #ff8a8c; font-weight: 700;
}
.esx-rev-item h3 { margin: 0 0 4px; font-size: 17px; font-weight: 700; color: #fff; }
.esx-rev-item p { margin:0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72); }
.esx-rev-img-wrap {
    position: relative;
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
    aspect-ratio: 5/4;
}
.esx-rev-img-wrap img { width:100%; height:100%; object-fit: cover; }

/* ---------- Beyond SEO ---------- */
.esx-beyond-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.esx-beyond {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--esx-line);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.esx-beyond::after {
    content:""; position: absolute; left:0; top:0; height:3px; width: 0;
    background: linear-gradient(90deg, var(--esx-red), var(--esx-blue));
    transition: width .5s ease;
}
.esx-beyond:hover { transform: translateY(-4px); box-shadow: var(--esx-shadow-lg); border-color: rgba(236,32,36,0.20); }
.esx-beyond:hover::after { width: 100%; }
.esx-beyond-icon {
    width: 56px; height: 56px;
    display:flex; align-items:center; justify-content:center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(236,32,36,0.10), rgba(35,72,201,0.10));
    border: 1px solid var(--esx-line);
    margin-bottom: 16px;
}
.esx-beyond-icon img { width: 30px; height: 30px; }
.esx-beyond h3 { margin: 0 0 8px; font-size: 19px; font-weight: 800; }
.esx-beyond p { margin: 0; color: var(--esx-mute); font-size: 14.5px; line-height: 1.7; }

/* ---------- FAQ ---------- */
.esx-faq-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.esx-faq-item {
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.esx-faq-item.open { border-color: rgba(236,32,36,0.35); box-shadow: var(--esx-shadow); }
.esx-faq-q {
    width: 100%; text-align: left;
    background: none; border: 0;
    padding: 20px 56px 20px 22px; position: relative;
    font-size: 15.5px; font-weight: 700; color: var(--esx-ink);
    cursor: pointer; line-height: 1.45;
}
.esx-faq-q::after {
    content: "+"; position: absolute; right: 18px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    color: #fff; font-weight: 800; font-size: 18px;
    display:flex; align-items:center; justify-content:center;
    transition: transform .3s, background .3s;
}
.esx-faq-item.open .esx-faq-q::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.esx-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 22px;
    color: var(--esx-mute); font-size: 14.5px; line-height: 1.7;
}
.esx-faq-item.open .esx-faq-a { max-height: 480px; padding: 0 22px 20px; }

/* Reveal-on-scroll */
.esx-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.esx-reveal.is-visible { opacity: 1; transform: translateY(0); }
.esx-reveal[data-delay="1"].is-visible { transition-delay: .08s; }
.esx-reveal[data-delay="2"].is-visible { transition-delay: .16s; }
.esx-reveal[data-delay="3"].is-visible { transition-delay: .24s; }
.esx-reveal[data-delay="4"].is-visible { transition-delay: .32s; }


/* =========================================================
   HERO v2 — Operations Console
   ========================================================= */
.esx-hv2-corner {
    position: absolute; width: 26px; height: 26px;
    border-color: rgba(236,32,36,0.55); border-style: solid; border-width: 0;
    z-index: 2; pointer-events: none;
}
.esx-hv2-corner.tl { top: 18px; left: 18px;  border-top-width: 2px; border-left-width: 2px; }
.esx-hv2-corner.tr { top: 18px; right: 18px; border-top-width: 2px; border-right-width: 2px; }
.esx-hv2-corner.bl { bottom: 18px; left: 18px;  border-bottom-width: 2px; border-left-width: 2px; }
.esx-hv2-corner.br { bottom: 18px; right: 18px; border-bottom-width: 2px; border-right-width: 2px; }

.esx-hv2-beam { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.esx-hv2-beam::before {
    content:""; position: absolute; top: -20%; left: -30%;
    width: 60%; height: 140%;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.045) 50%, transparent 60%);
    transform: skewX(-12deg);
    animation: esx-hv2-beam 9s linear infinite;
}
@keyframes esx-hv2-beam {
    0%   { transform: translateX(-30%) skewX(-12deg); }
    100% { transform: translateX(220%) skewX(-12deg); }
}

.esx-hv2-net {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    opacity: 0.55;
    mask-image: radial-gradient(70% 60% at 50% 50%, #000 0%, transparent 90%);
    -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000 0%, transparent 90%);
}
.esx-hv2-net circle { fill: rgba(255,255,255,0.55); animation: esx-hv2-flicker 4s ease-in-out infinite; }
.esx-hv2-net circle.r { fill: #ec2024; }
.esx-hv2-net line { stroke: rgba(255,255,255,0.18); stroke-width: 1; }
.esx-hv2-net circle:nth-child(2n) { animation-delay: -1.2s; }
.esx-hv2-net circle:nth-child(3n) { animation-delay: -2.4s; }
@keyframes esx-hv2-flicker {
    0%,100% { opacity: 0.35; }
    50%     { opacity: 1; }
}

.esx-hv2-ticker {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-family: ui-monospace,'SF Mono','Cascadia Code','Roboto Mono',Consolas,monospace;
    font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase; color: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
}
.esx-hv2-ticker .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #18d36a;
    box-shadow: 0 0 0 0 rgba(24,211,106,0.55);
    animation: esx-hv2-pulse-g 1.6s ease-out infinite;
}
@keyframes esx-hv2-pulse-g {
    0%   { box-shadow: 0 0 0 0 rgba(24,211,106,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(24,211,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(24,211,106,0); }
}
.esx-hv2-ticker .label { color: #18d36a; font-weight: 800; }
.esx-hv2-ticker .feed {
    position: relative;
    display: inline-block;
    min-height: 1em;
    min-width: 280px;
}
.esx-hv2-ticker .feed > span {
    position: absolute; left: 0; top: 0; opacity: 0;
    white-space: nowrap;
    animation: esx-hv2-feed 12s linear infinite;
}
.esx-hv2-ticker .feed > span:nth-child(1) { animation-delay: 0s; }
.esx-hv2-ticker .feed > span:nth-child(2) { animation-delay: 3s; }
.esx-hv2-ticker .feed > span:nth-child(3) { animation-delay: 6s; }
.esx-hv2-ticker .feed > span:nth-child(4) { animation-delay: 9s; }
@keyframes esx-hv2-feed {
    0%, 22% { opacity: 0; transform: translateY(8px); }
    2%, 20% { opacity: 1; transform: translateY(0); }
    25%,100% { opacity: 0; transform: translateY(-8px); }
}

.esx-page .esx-h1 .esx-grad {
    background: linear-gradient(90deg,#ff7a7c 0%, #ec2024 35%, #ffd2d3 60%, #ec2024 85%, #ff7a7c 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: esx-hv2-shimmer 6s linear infinite;
}
@keyframes esx-hv2-shimmer {
    0%   { background-position: 0% 0; }
    100% { background-position: -200% 0; }
}

.esx-hv2-board {
    margin-top: 28px;
    position: relative;
    padding: 16px 18px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 40px -18px rgba(0,0,0,0.55);
    overflow: hidden;
    max-width: 580px;
}
.esx-hv2-board::before {
    content:""; position: absolute; left:0; top:0; height:1px; width: 30%;
    background: linear-gradient(90deg, transparent, #ec2024, transparent);
    box-shadow: 0 0 14px #ec2024;
    animation: esx-hv2-scan 4s linear infinite;
}
@keyframes esx-hv2-scan {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}
.esx-hv2-board-head {
    display:flex; align-items:center; justify-content:space-between;
    font-family: ui-monospace,monospace;
    font-size: 11px; letter-spacing: 1.6px; font-weight: 700;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}
.esx-hv2-board-head .heading { color: #fff; }
.esx-hv2-board-head .heading::before { content:"// "; color: #ec2024; }
.esx-hv2-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 10px 4px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}
.esx-hv2-row:first-of-type { border-top: 0; }
.esx-hv2-row .kw {
    font-size: 13.5px; color: rgba(255,255,255,0.92);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.esx-hv2-row .kw::before { content:'"'; color: rgba(255,255,255,0.35); }
.esx-hv2-row .kw::after  { content:'"'; color: rgba(255,255,255,0.35); }
.esx-hv2-row .shift {
    display:inline-flex; align-items:center; gap:8px;
    font-family: ui-monospace,monospace;
    font-size: 12.5px; color: rgba(255,255,255,0.7);
}
.esx-hv2-row .shift .from { color: rgba(255,255,255,0.45); text-decoration: line-through; }
.esx-hv2-row .shift .arrow { color: rgba(255,255,255,0.35); }
.esx-hv2-row .shift .to { color:#fff; font-weight: 800; min-width: 3ch; display:inline-block; text-align:right; }
.esx-hv2-row .delta {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: ui-monospace,monospace;
    font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
    background: rgba(24,211,106,0.14);
    border: 1px solid rgba(24,211,106,0.35);
    color: #6fea9f;
}
.esx-hv2-row .delta::before { content:"▲"; font-size: 9px; }

.esx-hv2-stage {
    position: relative; z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    animation: esx-fade-up 0.9s ease-out both;
}
.esx-hv2-stage .esx-eyebrow { margin-bottom: 4px; }
.esx-hv2-h1 { margin-top: 16px; }
.esx-hv2-lead {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.78);
}
.esx-hv2-actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
    margin-bottom: 44px;
}
.esx-hv2-panels {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    text-align: left;
    max-width: 880px;
    margin: 0 auto;
}
.esx-hv2-panels .esx-hv2-board { margin-top: 0; max-width: 100%; }

.esx-hv2-engines-card {
    position: relative;
    padding: 16px 18px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 40px -18px rgba(0,0,0,0.55);
    overflow: hidden;
}
.esx-hv2-engines-card::before {
    content:""; position: absolute; right:0; top:0; height:1px; width: 30%;
    background: linear-gradient(90deg, transparent, #2348c9, transparent);
    box-shadow: 0 0 14px #2348c9;
    animation: esx-hv2-scan 4.5s linear infinite reverse;
}

.esx-hv2-engines { display:flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.esx-hv2-engines-card .esx-hv2-engines { margin-top: 4px; }
.esx-hv2-engines .lbl {
    font-family: ui-monospace,monospace;
    font-size: 11px; letter-spacing: 1.6px; font-weight: 700;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    margin-right: 4px;
}
.esx-hv2-engine {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    font-family: ui-monospace,monospace;
    font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
    color: rgba(255,255,255,0.9);
    transition: border-color .25s, background .25s, transform .25s;
}
.esx-hv2-engine::before {
    content:""; width: 6px; height: 6px; border-radius:50%;
    background: var(--c, #ec2024);
    box-shadow: 0 0 8px var(--c, #ec2024);
}
.esx-hv2-engine:hover {
    border-color: var(--c, #ec2024);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}


/* =========================================================
   FORM SECTION (light)
   ========================================================= */
.esx-form-section {
    position: relative;
    padding: 80px 0 96px;
    background:
        radial-gradient(50% 60% at 100% 0%, rgba(35,72,201,0.08) 0%, transparent 60%),
        radial-gradient(50% 60% at 0% 100%, rgba(236,32,36,0.07) 0%, transparent 60%),
        linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
    overflow: hidden;
}
.esx-form-section::before {
    content:""; position:absolute; inset:0; pointer-events:none;
    background-image:
        linear-gradient(rgba(13,23,51,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,23,51,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent 80%);
}
.esx-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.esx-form-aside .eyebrow {
    display: inline-flex; align-items:center; gap: 10px;
    font-family: ui-monospace,monospace;
    font-size: 11.5px; letter-spacing: 2px; font-weight: 700;
    text-transform: uppercase; color: var(--esx-red);
    padding: 6px 12px; border: 1px solid rgba(236,32,36,0.25);
    border-radius: 999px; background: rgba(236,32,36,0.06);
}
.esx-form-aside .eyebrow::before {
    content:""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--esx-red); animation: esx-pulse 1.8s ease-out infinite;
}
.esx-form-aside h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.018em;
    color: var(--esx-ink);
    margin: 16px 0 14px;
    text-wrap: balance;
}
.esx-form-aside h2 .esx-grad {
    background: linear-gradient(90deg, var(--esx-blue) 0%, var(--esx-red) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.esx-form-aside p.lead {
    margin: 0 0 24px; color: var(--esx-mute);
    font-size: 16px; line-height: 1.7;
}
.esx-form-checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.esx-form-checks li {
    position: relative;
    padding: 12px 14px 12px 52px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 12px;
    font-size: 14.5px; line-height: 1.5; color: var(--esx-ink-2);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.esx-form-checks li:hover {
    transform: translateX(4px);
    border-color: rgba(236,32,36,0.25);
    box-shadow: var(--esx-shadow);
}
.esx-form-checks li::before {
    content:"✓";
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px;
    display:flex; align-items:center; justify-content:center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    color: #fff; font-weight: 800; font-size: 14px;
    box-shadow: 0 6px 14px -6px rgba(236,32,36,0.55);
}
.esx-form-checks li b { color: var(--esx-ink); }
.esx-form-meta {
    display:flex; flex-wrap: wrap; gap: 18px;
    font-size: 13px; color: var(--esx-mute);
}
.esx-form-meta span { display:inline-flex; align-items:center; gap: 8px; }
.esx-form-meta span::before {
    content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--esx-red);
}
.esx-form-section .esx-form-card {
    background: #ffffff;
    box-shadow: var(--esx-shadow-lg);
}
.esx-form-section .esx-form-card::before {
    background: linear-gradient(135deg, rgba(236,32,36,0.45), rgba(35,72,201,0.45), rgba(236,32,36,0.35));
    opacity: 0.7;
}


/* =========================================================
   INDUSTRY SPOTLIGHT
   ========================================================= */
.esx-spot {
    position: relative; overflow: hidden;
    background:
        radial-gradient(60% 50% at 100% 0%, rgba(35,72,201,0.08) 0%, transparent 60%),
        radial-gradient(50% 60% at 0% 100%, rgba(236,32,36,0.07) 0%, transparent 60%),
        linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
}
.esx-spot::before {
    content:""; position:absolute; inset:0; pointer-events:none;
    background-image:
        linear-gradient(rgba(13,23,51,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,23,51,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent 80%);
}
.esx-spot-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}
.esx-spot-preview {
    position: sticky; top: 100px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--esx-line);
    overflow: hidden;
    box-shadow: var(--esx-shadow-lg);
    isolation: isolate;
}
.esx-spot-preview-frame {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #eef1fa, #fff);
}
.esx-spot-preview-frame img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .55s ease, transform 1.1s ease;
}
.esx-spot-preview-frame img.is-active { opacity: 1; transform: scale(1); }
.esx-spot-preview-frame::after {
    content:""; position:absolute; left:0; top:0; height:100%; width: 2px;
    background: linear-gradient(180deg, transparent, #ec2024, transparent);
    box-shadow: 0 0 18px #ec2024;
    opacity: 0; transform: translateX(0);
}
.esx-spot-preview-frame.swap::after { animation: esx-scan-x .9s ease-out; }
@keyframes esx-scan-x {
    0%   { opacity: 0; transform: translateX(0); }
    20%  { opacity: 1; }
    100% { opacity: 0; transform: translateX(110%); }
}
.esx-spot-preview-frame::before {
    content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
    background: linear-gradient(180deg, rgba(13,23,51,0.05) 0%, rgba(13,23,51,0.0) 30%, rgba(13,23,51,0.55) 100%);
}
.esx-spot-pill {
    position: absolute; top: 18px; left: 18px; z-index: 2;
    display: inline-flex; align-items:center; gap: 8px;
    padding: 7px 12px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(13,23,51,0.08);
    border-radius: 999px;
    font-family: ui-monospace,monospace;
    font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--esx-ink);
    backdrop-filter: blur(6px);
}
.esx-spot-pill::before {
    content:""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--esx-red);
    box-shadow: 0 0 0 0 rgba(236,32,36,0.55);
    animation: esx-pulse 1.8s ease-out infinite;
}
.esx-spot-counter {
    position: absolute; top: 18px; right: 18px; z-index: 2;
    font-family: ui-monospace,monospace;
    font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
    color: rgba(255,255,255,0.92);
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    background: rgba(13,23,51,0.35);
    backdrop-filter: blur(6px);
}
.esx-spot-counter b { color: #fff; }
.esx-spot-counter span { opacity: 0.65; }
.esx-spot-body { padding: 28px 30px 26px; position: relative; }
.esx-spot-title {
    font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2;
    font-weight: 800; margin: 0 0 10px;
    letter-spacing: -0.012em;
    color: var(--esx-ink);
    opacity: 0; transform: translateY(8px);
    transition: opacity .5s ease .1s, transform .5s ease .1s;
}
.esx-spot-desc {
    margin: 0 0 18px; color: var(--esx-mute);
    font-size: 14.5px; line-height: 1.7;
    opacity: 0; transform: translateY(8px);
    transition: opacity .5s ease .18s, transform .5s ease .18s;
}
.esx-spot-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    opacity: 0; transform: translateY(8px);
    transition: opacity .5s ease .26s, transform .5s ease .26s;
}
.esx-spot-chip {
    font-family: ui-monospace,monospace;
    font-size: 11.5px; font-weight: 600; letter-spacing: 0.4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(236,32,36,0.06), rgba(35,72,201,0.06));
    border: 1px solid var(--esx-line);
    border-radius: 999px; color: var(--esx-ink-2);
}
.esx-spot-chip::before { content:"+ "; color: var(--esx-red); font-weight: 800; }
.esx-spot-preview.is-ready .esx-spot-title,
.esx-spot-preview.is-ready .esx-spot-desc,
.esx-spot-preview.is-ready .esx-spot-chips { opacity: 1; transform: translateY(0); }
.esx-spot-progress {
    position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: rgba(13,23,51,0.06);
    overflow: hidden;
}
.esx-spot-progress span {
    display:block; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--esx-red) 0%, var(--esx-blue) 100%);
    box-shadow: 0 0 12px rgba(236,32,36,0.45);
}
.esx-spot-preview.is-running .esx-spot-progress span {
    animation: esx-progress 6s linear forwards;
}
@keyframes esx-progress { from { width: 0%; } to { width: 100%; } }

.esx-spot-list { display: flex; flex-direction: column; gap: 10px; }
.esx-spot-row {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 22px 18px 18px;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--esx-line);
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--esx-ink);
    transition: transform .35s cubic-bezier(.2,.7,.2,1.2), background .35s, border-color .35s, box-shadow .35s;
    overflow: hidden;
    isolation: isolate;
    --esx-mx: 50%;
    --esx-my: 50%;
}
.esx-spot-row::before {
    content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
    background: radial-gradient(180px circle at var(--esx-mx) var(--esx-my), rgba(236,32,36,0.10), transparent 65%);
    opacity: 0; transition: opacity .35s;
}
.esx-spot-row:hover::before { opacity: 1; }
.esx-spot-row:hover {
    transform: translateX(6px);
    border-color: rgba(35,72,201,0.25);
    background: #fff;
    box-shadow: var(--esx-shadow);
}
.esx-spot-row.is-active {
    transform: translateX(10px);
    background: #ffffff;
    border-color: rgba(236,32,36,0.45);
    box-shadow: var(--esx-shadow-lg);
}
.esx-spot-row.is-active::after {
    content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--esx-red), var(--esx-blue));
    border-radius: 0 4px 4px 0;
}
.esx-spot-row-num {
    font-family: ui-monospace,monospace;
    font-size: 13px; font-weight: 800; letter-spacing: 0.6px;
    color: var(--esx-mute);
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3f1ec, #ffffff);
    border: 1px solid var(--esx-line);
    transition: color .25s, background .25s, border-color .25s;
}
.esx-spot-row.is-active .esx-spot-row-num,
.esx-spot-row:hover .esx-spot-row-num {
    color: #fff;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    border-color: rgba(236,32,36,0.4);
}
.esx-spot-row-title { font-size: 17px; font-weight: 700; margin: 0 0 2px; color: var(--esx-ink); }
.esx-spot-row-tag {
    font-family: ui-monospace,monospace;
    font-size: 11.5px; letter-spacing: 0.6px; color: var(--esx-mute);
}
.esx-spot-row-arrow {
    width: 36px; height: 36px;
    display:flex; align-items:center; justify-content:center;
    border-radius: 50%;
    border: 1px solid var(--esx-line);
    background: #fff;
    color: var(--esx-ink-2);
    font-size: 16px; font-weight: 700;
    transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.esx-spot-row:hover .esx-spot-row-arrow,
.esx-spot-row.is-active .esx-spot-row-arrow {
    transform: rotate(-45deg);
    background: var(--esx-ink);
    color: #fff;
    border-color: var(--esx-ink);
}


/* =========================================================
   NEW: "What is Enterprise SEO?" definition card
   ========================================================= */
.esx-def {
    position: relative;
    padding: 36px 40px 36px 90px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
    border: 1px solid var(--esx-line);
    box-shadow: var(--esx-shadow);
    overflow: hidden;
    isolation: isolate;
}
.esx-def::before {
    content:""; position:absolute; left:0; top:0; bottom:0; width: 4px;
    background: linear-gradient(180deg, var(--esx-red), var(--esx-blue));
}
.esx-def::after {
    content:"“"; position: absolute; left: 22px; top: 18px;
    font-family: 'Urbanist',serif;
    font-size: 90px; line-height: 1; font-weight: 900;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-blue));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    opacity: 0.85;
}
.esx-def .lbl {
    display:inline-block;
    font-family: ui-monospace,monospace;
    font-size: 11px; font-weight: 800; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--esx-red);
    margin-bottom: 8px;
}
.esx-def h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800; line-height: 1.25; margin: 0 0 12px;
    color: var(--esx-ink); letter-spacing: -0.012em;
}
.esx-def p { margin: 0 0 10px; font-size: 16px; line-height: 1.75; color: var(--esx-ink-2); }
.esx-def p:last-child { margin-bottom: 0; }
.esx-def b { color: var(--esx-ink); }
.esx-def a { color: var(--esx-red); text-decoration: none; font-weight: 700; border-bottom: 1px dashed rgba(236,32,36,0.4); }
.esx-def a:hover { border-bottom-style: solid; }


/* =========================================================
   NEW: Comparison table (Enterprise SEO vs Traditional SEO)
   ========================================================= */
.esx-cmp-wrap {
    border-radius: 18px; overflow: hidden;
    border: 1px solid var(--esx-line);
    background: #fff;
    box-shadow: var(--esx-shadow);
}
.esx-cmp { width: 100%; border-collapse: separate; border-spacing: 0; }
.esx-cmp thead th {
    text-align: left;
    padding: 22px 24px;
    font-size: 14px; font-weight: 800;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, #0d1733 0%, #1a2350 100%);
    color: #fff;
    position: relative;
}
.esx-cmp thead th:first-child {
    font-family: ui-monospace,monospace;
    font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase;
    color: rgba(255,255,255,0.7); width: 24%;
}
.esx-cmp thead th.win {
    background: linear-gradient(135deg, #ec2024 0%, #b8181c 100%);
}
.esx-cmp thead th .badge {
    display: inline-block; margin-top: 4px;
    font-family: ui-monospace,monospace;
    font-size: 10px; letter-spacing: 1.4px; font-weight: 700;
    padding: 2px 8px; border-radius: 999px;
    background: rgba(255,255,255,0.15); color: #fff;
}
.esx-cmp tbody td {
    padding: 18px 24px;
    font-size: 14.5px; line-height: 1.55;
    color: var(--esx-ink-2);
    border-top: 1px solid var(--esx-line);
    vertical-align: top;
}
.esx-cmp tbody tr:nth-child(even) td { background: #fbfaf7; }
.esx-cmp tbody td:first-child {
    font-weight: 800; color: var(--esx-ink);
    font-family: ui-monospace,monospace;
    font-size: 12.5px; letter-spacing: 0.4px; text-transform: uppercase;
    background: linear-gradient(90deg, rgba(13,23,51,0.03), transparent);
}
.esx-cmp tbody td.enterprise {
    background: linear-gradient(90deg, rgba(236,32,36,0.04), transparent);
    border-left: 2px solid rgba(236,32,36,0.25);
    font-weight: 600; color: var(--esx-ink);
}
.esx-cmp tbody td.enterprise::before {
    content:"✓ "; color: var(--esx-red); font-weight: 800; margin-right: 4px;
}


/* =========================================================
   NEW: Pricing snippet
   ========================================================= */
.esx-price {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #fbfaf7 100%);
    border: 1px solid var(--esx-line);
    box-shadow: var(--esx-shadow-lg);
    overflow: hidden;
    isolation: isolate;
}
.esx-price::before {
    content:""; position:absolute; right:-80px; top:-80px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(236,32,36,0.18), transparent 70%);
}
.esx-price::after {
    content:""; position: absolute; left:-60px; bottom:-60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(35,72,201,0.14), transparent 70%);
}
.esx-price-amount {
    font-family: ui-monospace,monospace;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800; letter-spacing: -0.02em; line-height: 1;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-blue));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin: 0;
}
.esx-price-amount small {
    font-size: 14px; color: var(--esx-mute);
    font-family: 'Urbanist',sans-serif; font-weight: 600;
    -webkit-text-fill-color: var(--esx-mute);
    margin-left: 6px;
}
.esx-price-pre {
    display:inline-block;
    font-family: ui-monospace,monospace;
    font-size: 11.5px; font-weight: 800; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--esx-red);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(236,32,36,0.06);
    border: 1px solid rgba(236,32,36,0.25);
    margin-bottom: 12px;
}
.esx-price h3 { font-size: 22px; font-weight: 800; margin: 14px 0 10px; }
.esx-price p { font-size: 15px; line-height: 1.7; color: var(--esx-mute); margin: 0 0 18px; }
.esx-price-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.esx-price-list { display: grid; gap: 10px; position: relative; z-index: 1; }
.esx-price-list-item {
    padding: 14px 16px 14px 46px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 12px;
    font-size: 14px; line-height: 1.5;
    position: relative;
}
.esx-price-list-item::before {
    content: "→";
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 22px; height: 22px;
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    color: #fff; border-radius: 6px;
    font-weight: 800; font-size: 12px;
}
.esx-price-list-item b { color: var(--esx-ink); }


/* =========================================================
   NEW: Process timeline (Month 1/2/3/Ongoing)
   ========================================================= */
.esx-tl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    counter-reset: esx-tl;
}
.esx-tl-grid::before {
    content:""; position: absolute;
    left: 6%; right: 6%; top: 38px; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(236,32,36,0.4) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.esx-tl {
    position: relative; z-index: 1;
    padding: 0 14px;
    text-align: center;
}
.esx-tl-dot {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, #fff 0%, #fbfaf7 100%);
    border: 2px solid rgba(236,32,36,0.45);
    box-shadow: var(--esx-shadow), 0 0 0 6px rgba(236,32,36,0.06);
    font-family: ui-monospace,monospace;
    font-size: 13px; font-weight: 800; letter-spacing: 1.2px;
    color: var(--esx-red);
    transition: transform .3s, box-shadow .3s;
}
.esx-tl:hover .esx-tl-dot {
    transform: translateY(-4px);
    box-shadow: var(--esx-shadow-lg), 0 0 0 8px rgba(236,32,36,0.10);
}
.esx-tl h3 {
    font-size: 17px; font-weight: 800; margin: 0 0 6px; color: var(--esx-ink);
}
.esx-tl-tag {
    display:inline-block;
    font-family: ui-monospace,monospace;
    font-size: 11px; letter-spacing: 1.2px; font-weight: 700;
    text-transform: uppercase; color: var(--esx-red);
    margin-bottom: 8px;
}
.esx-tl ul { list-style: none; padding: 0; margin: 12px 0 0; }
.esx-tl ul li {
    text-align: left;
    padding: 10px 12px 10px 32px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 10px;
    font-size: 13.5px; line-height: 1.45;
    color: var(--esx-ink-2);
    position: relative;
    transition: transform .25s, border-color .25s;
}
.esx-tl ul li + li { margin-top: 8px; }
.esx-tl ul li::before {
    content:""; position: absolute; left: 12px; top: 14px;
    width: 12px; height: 12px;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    border-radius: 3px;
    transform: rotate(45deg);
}
.esx-tl ul li:hover {
    transform: translateX(3px);
    border-color: rgba(236,32,36,0.25);
}


/* =========================================================
   NEW: Tools / Tech Stack
   ========================================================= */
.esx-tools {
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--esx-shadow);
}
.esx-tools-head {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: end;
    margin-bottom: 24px;
}
.esx-tools-head h3 { font-size: 22px; font-weight: 800; margin: 6px 0 8px; color: var(--esx-ink); }
.esx-tools-head p { font-size: 14.5px; line-height: 1.65; color: var(--esx-mute); margin: 0; }
.esx-tools-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.esx-tool {
    padding: 14px 16px;
    background: linear-gradient(180deg, #fff, #fbfaf7);
    border: 1px solid var(--esx-line);
    border-radius: 12px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.esx-tool:hover {
    transform: translateY(-3px);
    border-color: rgba(236,32,36,0.25);
    box-shadow: var(--esx-shadow);
}
.esx-tool-name {
    font-weight: 800; font-size: 14.5px; color: var(--esx-ink);
    display: flex; align-items: center; gap: 8px;
}
.esx-tool-name::before {
    content:""; width: 8px; height: 8px; border-radius: 2px;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-blue));
    transform: rotate(45deg);
}
.esx-tool-cat {
    font-family: ui-monospace,monospace;
    font-size: 10.5px; letter-spacing: 1px; font-weight: 700;
    color: var(--esx-mute); text-transform: uppercase;
    margin-top: 4px; padding-left: 16px;
}


/* =========================================================
   NEW: Case Studies
   ========================================================= */
.esx-cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.esx-cs {
    position: relative;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
}
.esx-cs:hover {
    transform: translateY(-6px);
    box-shadow: var(--esx-shadow-lg);
    border-color: rgba(236,32,36,0.25);
    color: inherit;
}
.esx-cs-img {
    aspect-ratio: 16/10; overflow: hidden;
    background: linear-gradient(135deg, #eef1fa, #f3f1ec);
    border-bottom: 1px solid var(--esx-line);
    position: relative;
}
.esx-cs-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.esx-cs:hover .esx-cs-img img { transform: scale(1.06); }
.esx-cs-tag {
    position: absolute; top: 14px; left: 14px;
    font-family: ui-monospace,monospace;
    font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 10px; border-radius: 6px;
    background: rgba(255,255,255,0.95);
    color: var(--esx-red);
    border: 1px solid var(--esx-line);
}
.esx-cs-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.esx-cs h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; color: var(--esx-ink); line-height: 1.3; }
.esx-cs p { font-size: 14px; line-height: 1.6; color: var(--esx-mute); margin: 0 0 14px; }
.esx-cs-cta {
    margin-top: auto;
    font-family: ui-monospace,monospace;
    font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--esx-red);
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap .25s;
}
.esx-cs:hover .esx-cs-cta { gap: 10px; }
.esx-cs-foot { text-align: center; margin-top: 32px; }


/* =========================================================
   NEW: Recent Blogs
   ========================================================= */
.esx-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.esx-blog {
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: flex; flex-direction: column;
}
.esx-blog:hover {
    transform: translateY(-4px);
    box-shadow: var(--esx-shadow);
    border-color: rgba(35,72,201,0.25);
    color: inherit;
}
.esx-blog-img {
    aspect-ratio: 16/9; overflow: hidden;
    background: linear-gradient(135deg, #eef1fa, #f3f1ec);
}
.esx-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.esx-blog:hover .esx-blog-img img { transform: scale(1.05); }
.esx-blog-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.esx-blog-cat {
    font-family: ui-monospace,monospace;
    font-size: 11px; letter-spacing: 1.2px; font-weight: 800;
    text-transform: uppercase; color: var(--esx-blue);
    margin-bottom: 8px;
}
.esx-blog h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px; color: var(--esx-ink); line-height: 1.4; }
.esx-blog-meta {
    margin-top: auto;
    font-family: ui-monospace,monospace;
    font-size: 11.5px; color: var(--esx-mute);
    display: flex; gap: 12px; align-items: center;
}
.esx-blog-meta span::before { content:"//  "; color: var(--esx-red); }


/* =========================================================
   NEW: Author / Reviewer block
   ========================================================= */
.esx-author-card {
    padding: 36px;
    border-radius: 22px;
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(236,32,36,0.06), transparent 60%),
        radial-gradient(50% 60% at 0% 100%, rgba(35,72,201,0.06), transparent 60%),
        linear-gradient(135deg, #fff, #fbfaf7);
    border: 1px solid var(--esx-line);
    box-shadow: var(--esx-shadow);
}
.esx-author-head {
    text-align: center; margin-bottom: 26px;
}
.esx-author-head .lbl {
    display: inline-block;
    font-family: ui-monospace,monospace;
    font-size: 11px; font-weight: 800; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--esx-red);
    padding: 4px 12px; border-radius: 999px;
    background: rgba(236,32,36,0.06); border: 1px solid rgba(236,32,36,0.25);
    margin-bottom: 10px;
}
.esx-author-head h3 {
    font-size: 22px; font-weight: 800; margin: 0; color: var(--esx-ink);
}
.esx-author-head p { font-size: 14px; color: var(--esx-mute); margin: 6px 0 0; }
.esx-author-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.esx-author {
    display: grid; grid-template-columns: 96px 1fr; gap: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 16px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    text-decoration: none; color: inherit;
}
.esx-author:hover {
    transform: translateY(-3px);
    border-color: rgba(236,32,36,0.30);
    box-shadow: var(--esx-shadow);
    color: inherit;
}
.esx-author-photo {
    width: 96px; height: 96px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(236,32,36,0.35), var(--esx-shadow);
    background: linear-gradient(135deg, #eef1fa, #f3f1ec);
    flex-shrink: 0;
}
.esx-author-photo img { width: 100%; height: 100%; object-fit: cover; }
.esx-author-info { display: flex; flex-direction: column; justify-content: center; }
.esx-author-name { font-size: 17px; font-weight: 800; color: var(--esx-ink); margin: 0; }
.esx-author-role {
    font-family: ui-monospace,monospace;
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.6px;
    color: var(--esx-red); text-transform: uppercase;
    margin: 4px 0 8px;
}
.esx-author-bio { font-size: 13.5px; line-height: 1.55; color: var(--esx-mute); margin: 0; }
.esx-author-link {
    margin-top: 8px;
    font-family: ui-monospace,monospace;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; color: var(--esx-blue);
    display: inline-flex; align-items: center; gap: 4px;
}
.esx-author:hover .esx-author-link { gap: 8px; }


/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
    .esx-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .esx-pillars, .esx-rev-grid, .esx-split { grid-template-columns: 1fr; gap: 36px; }
    .esx-svc-grid, .esx-pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .esx-process-grid { grid-template-columns: repeat(2, 1fr); }
    .esx-beyond-grid, .esx-faq-grid { grid-template-columns: 1fr; }
    .esx-section-head { grid-template-columns: 1fr; gap: 18px; }
    .esx-feature-grid { grid-template-columns: 1fr; }
    .esx-form-grid { grid-template-columns: 1fr; gap: 36px; }
    .esx-hv2-panels { grid-template-columns: 1fr; gap: 14px; }
    .esx-spot-grid { grid-template-columns: 1fr; gap: 24px; }
    .esx-spot-preview { position: relative; top: 0; }
    .esx-cs-grid, .esx-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .esx-tl-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .esx-tl-grid::before { display: none; }
    .esx-tools-grid { grid-template-columns: repeat(2, 1fr); }
    .esx-tools-head { grid-template-columns: 1fr; gap: 12px; }
    .esx-author-grid { grid-template-columns: 1fr; }
    .esx-price { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
@media (max-width: 720px) {
    .esx-hero { padding: 84px 0 64px; }
    .esx-section { padding: 72px 0; }
    .esx-svc-grid, .esx-pkg-grid, .esx-process-grid { grid-template-columns: 1fr; }
    .esx-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .esx-form-card { padding: 24px 22px; }
    .esx-cta-card { padding: 36px 24px; }
    .esx-beyond { padding: 24px; }
    .esx-hv2-board, .esx-hv2-engines-card { padding: 14px; }
    .esx-hv2-row .kw { font-size: 12.5px; }
    .esx-hv2-corner { display: none; }
    .esx-hv2-actions { flex-direction: column; align-items: stretch; }
    .esx-hv2-actions .esx-btn { justify-content: center; }
    .esx-spot-row { grid-template-columns: 44px 1fr auto; gap: 12px; padding: 14px 14px 14px 12px; }
    .esx-spot-row-num { width: 36px; height: 36px; font-size: 12px; }
    .esx-spot-row-title { font-size: 15.5px; }
    .esx-spot-body { padding: 22px 22px 22px; }
    .esx-cs-grid, .esx-blog-grid { grid-template-columns: 1fr; }
    .esx-tl-grid { grid-template-columns: 1fr; }
    .esx-cmp thead th { padding: 14px; font-size: 12.5px; }
    .esx-cmp tbody td { padding: 12px 14px; font-size: 13.5px; }
    .esx-def { padding: 28px 22px 28px 22px; }
    .esx-def::after { display: none; }
    .esx-tools { padding: 22px; }
    .esx-tools-grid { grid-template-columns: 1fr; }
    .esx-author { grid-template-columns: 72px 1fr; gap: 14px; padding: 16px; }
    .esx-author-photo { width: 72px; height: 72px; }
    .esx-author-card { padding: 22px; }
}


/* =========================================================
   NEW: Why hire an Enterprise SEO Consultant — 6-card grid
   ========================================================= */
.esx-hire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.esx-hire {
    position: relative;
    padding: 28px 26px 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
    border: 1px solid var(--esx-line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    isolation: isolate;
}
.esx-hire::before {
    content:""; position:absolute; right:-50px; bottom:-50px;
    width: 160px; height:160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(35,72,201,0.10), transparent 70%);
    transition: transform .5s;
    z-index: -1;
}
.esx-hire:hover {
    transform: translateY(-5px);
    border-color: rgba(236,32,36,0.30);
    box-shadow: var(--esx-shadow-lg);
}
.esx-hire:hover::before { transform: scale(1.6); }
.esx-hire-num {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    font-family: ui-monospace, monospace;
    font-weight: 800; font-size: 14px; letter-spacing: 0.6px;
    color: #fff;
    background: linear-gradient(135deg, var(--esx-red), var(--esx-red-deep));
    box-shadow: 0 10px 22px -8px rgba(236,32,36,0.55);
    margin-bottom: 16px;
}
.esx-hire h3 {
    font-size: 18px; font-weight: 800;
    margin: 0 0 8px; color: var(--esx-ink);
    letter-spacing: -0.01em;
}
.esx-hire p {
    font-size: 14px; line-height: 1.65;
    color: var(--esx-mute); margin: 0;
}


/* =========================================================
   NEW: Enterprise SEO Consultant in India & USA — geo split
   ========================================================= */
.esx-geo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.esx-geo {
    position: relative;
    padding: 36px 32px 32px;
    background: #fff;
    border: 1px solid var(--esx-line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    isolation: isolate;
}
.esx-geo::before {
    content:""; position:absolute; left:0; top:0; height: 4px; width: 0;
    background: linear-gradient(90deg, var(--esx-red), var(--esx-blue));
    transition: width .55s ease;
}
.esx-geo:hover {
    transform: translateY(-4px);
    box-shadow: var(--esx-shadow-lg);
    border-color: rgba(236,32,36,0.25);
}
.esx-geo:hover::before { width: 100%; }
.esx-geo-flag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236,32,36,0.06), rgba(35,72,201,0.06));
    border: 1px solid var(--esx-line);
    font-family: ui-monospace, monospace;
    font-size: 11.5px; font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--esx-ink);
    margin-bottom: 18px;
}
.esx-geo-flag .emoji { font-size: 18px; line-height: 1; }
.esx-geo h3 {
    font-size: 22px; font-weight: 800; margin: 0 0 12px;
    letter-spacing: -0.012em; color: var(--esx-ink);
}
.esx-geo h3 .esx-grad {
    background: linear-gradient(90deg, var(--esx-red), var(--esx-blue));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.esx-geo p { font-size: 14.5px; line-height: 1.7; color: var(--esx-mute); margin: 0 0 22px; }
.esx-geo ul {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: grid; gap: 8px;
}
.esx-geo ul li {
    position: relative;
    padding: 8px 12px 8px 30px;
    background: linear-gradient(180deg, #fbfaf7, #fff);
    border: 1px solid var(--esx-line);
    border-radius: 10px;
    font-size: 13.5px; line-height: 1.5; color: var(--esx-ink-2);
}
.esx-geo ul li::before {
    content:"✓";
    position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--esx-red); font-weight: 800; font-size: 11px;
}

@media (max-width: 1100px) {
    .esx-hire-grid { grid-template-columns: repeat(2, 1fr); }
    .esx-geo-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .esx-hire-grid { grid-template-columns: 1fr; }
    .esx-geo { padding: 26px 22px; }
}
