/* ==========================================================================
   E-SKILL NOVA — Design System
   ========================================================================== */

:root{
  --bg:#08080e;
  --bg-alt:#0c0c15;
  --surface:#12121d;
  --surface-2:#181826;
  --border:rgba(255,255,255,0.08);
  --border-strong:rgba(255,255,255,0.14);
  --text:#f2f2f7;
  --muted:#9797ad;
  --muted-2:#6d6d82;

  --blue:#2F80FF;
  --blue-soft:#5B9DFF;
  --cyan:#22d3ee;
  --cyan-soft:#8fe0ff;
  --danger:#ff5470;

  --gradient:linear-gradient(135deg,#2F80FF 0%,#22d3ee 100%);
  --gradient-soft:linear-gradient(135deg,rgba(47,128,255,0.16),rgba(34,211,238,0.14));

  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Manrope', sans-serif;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:26px;
  --container:1240px;

  --shadow-glow:0 20px 60px rgba(139,92,246,0.18);
}

/* ---------------------------------- base ---------------------------------- */
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color:var(--muted); }
a{ color:var(--cyan); transition:color .2s ease; text-decoration:none; }
a:hover{ color:var(--blue-soft); }
/* Defensive: some WP core/plugin stylesheets re-add underlines to links
   inside specific contexts. Nothing in this theme's own link-like
   elements should ever show one. */
a, .esn-btn, .esn-card-link, .esn-menu-item a, .esn-mobile-menu-list a,
.esn-footer-col a, .esn-footer-contact a, .esn-social-icon,
.esn-portfolio-view, .esn-logo a, .esn-logo-text-link{
  text-decoration:none !important;
}
::selection{ background:var(--blue); color:#fff; }

.esn-container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.esn-narrow{ max-width:820px; }
.esn-main{ position:relative; z-index:1; }

.esn-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:12.5px;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:14px;
}
.esn-eyebrow::before{
  content:""; width:22px; height:1px; background:var(--gradient);
}

.esn-section{ padding:110px 0; position:relative; }
.esn-section-alt{ background:var(--bg-alt); }
.esn-section-heading{ max-width:640px; margin:0 auto 56px; text-align:center; }
.esn-section-heading h2{ font-size:clamp(28px,4vw,42px); }
.esn-section-heading p{ margin-top:14px; font-size:17px; }
.esn-section-cta{ text-align:center; margin-top:48px; }

.esn-prose{ color:var(--muted); font-size:17px; }
.esn-prose h2,.esn-prose h3{ color:var(--text); margin-top:1.4em; }
.esn-prose a{ text-decoration:underline; }
.esn-prose img{ border-radius:var(--radius-md); margin:1.2em 0; }

.esn-empty-note{
  text-align:center; color:var(--muted-2); font-size:15px;
  padding:40px; border:1px dashed var(--border-strong); border-radius:var(--radius-md);
  grid-column:1/-1;
}

/* ---------------------------------- buttons ---------------------------------- */
.esn-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:15px;
  padding:15px 30px; border-radius:999px; border:1px solid transparent;
  cursor:pointer; transition:all .25s ease; white-space:nowrap;
}
.esn-btn span{ transition:transform .25s ease; display:inline-block; }
.esn-btn:hover span{ transform:translateX(4px); }
.esn-btn-primary{
  background:var(--gradient); color:#08080e;
  box-shadow:0 10px 30px rgba(139,92,246,0.35);
}
.esn-btn-primary:hover{ box-shadow:0 14px 40px rgba(34,211,238,0.4); color:#08080e; transform:translateY(-2px); }
.esn-btn-ghost{
  background:rgba(255,255,255,0.04); color:var(--text); border-color:var(--border-strong);
  backdrop-filter:blur(10px);
}
.esn-btn-ghost:hover{ background:rgba(255,255,255,0.08); color:var(--text); border-color:var(--cyan); }
.esn-btn-outline{
  background:transparent; color:var(--text); border-color:var(--border-strong);
}
.esn-btn-outline:hover{ border-color:var(--cyan); color:var(--cyan); }
.esn-btn-lg{ padding:18px 36px; font-size:16px; }
.esn-btn-sm{ padding:10px 20px; font-size:13px; }
.esn-btn-block{ width:100%; }

/* ---------------------------------- header ---------------------------------- */
/* ---------------------------------- announcement bar ---------------------------------- */
.esn-announcement{
  background:linear-gradient(90deg, #0a2740, #0d3550 55%, #0a2740);
  border-bottom:1px solid rgba(63,198,255,0.2);
  padding:10px 0;
}
.esn-announcement-inner{
  display:flex; align-items:center; justify-content:center; gap:14px; position:relative;
}
.esn-announcement-msg{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:center;
  font-size:13.5px; font-weight:600; color:var(--text);
}
.esn-announcement-icon{ color:var(--cyan); font-size:14px; }
.esn-announcement-inner a{
  color:var(--cyan); text-decoration:underline !important; font-weight:700;
}
.esn-announcement-close{
  position:absolute; right:0; background:none; border:none; color:var(--muted);
  font-size:14px; cursor:pointer; padding:4px 8px; line-height:1;
}
.esn-announcement-close:hover{ color:var(--text); }
.esn-announcement.is-hidden{ display:none; }

.esn-header{
  position:sticky; top:0; z-index:100;
  background:rgba(5,7,13,0.85); backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
body.admin-bar .esn-header{ top:32px; }
@media screen and (max-width:782px){
  body.admin-bar .esn-header{ top:46px; }
}
.esn-header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:88px; gap:24px;
}
.esn-logo{ display:flex; align-items:center; max-height:56px; overflow:hidden; }
.esn-logo a{ display:flex; align-items:center; gap:10px; }
.esn-logo img{ max-height:44px; max-width:220px; width:auto; height:auto; object-fit:contain; }
.esn-logo-text-link{ text-decoration:none; }
.esn-logo-mark{
  width:34px; height:34px; border-radius:9px; flex-shrink:0;
  background:linear-gradient(140deg, var(--cyan), #1f6fa8);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:16px; color:#08080e;
  box-shadow:0 0 16px rgba(63,198,255,0.4);
}
.esn-logo-text{
  font-family:var(--font-body); font-weight:600; font-size:18px; color:var(--muted); white-space:nowrap;
}
.esn-logo-text strong{ color:var(--text); font-weight:800; }
.esn-nav{ flex:1; display:flex; justify-content:center; }
.esn-menu{ display:flex; align-items:center; gap:36px; }
.esn-menu-item{ position:relative; }
.esn-menu-item > a{
  color:var(--muted); font-weight:600; font-size:14.5px;
  display:flex; align-items:center; gap:4px;
}
.esn-menu-item > a:hover{ color:var(--text); }
.esn-caret{ font-size:10px; color:var(--muted); }
.esn-sub-menu{
  position:absolute; top:calc(100% + 18px); left:50%; transform:translateX(-50%);
  background:var(--surface); border:1px solid var(--border-strong); border-radius:var(--radius-sm);
  padding:10px; min-width:200px; opacity:0; visibility:hidden; transition:all .2s ease;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.esn-menu-item.has-children:hover .esn-sub-menu{ opacity:1; visibility:visible; top:calc(100% + 10px); }
.esn-sub-menu .esn-menu-item > a{ padding:9px 12px; border-radius:8px; font-size:14px; }
.esn-sub-menu .esn-menu-item > a:hover{ background:rgba(255,255,255,0.05); }

.esn-header-actions{ display:flex; align-items:center; gap:16px; }
.esn-btn-header{
  background:var(--surface-2); border:1px solid var(--border-strong); color:var(--text);
  font-weight:700; font-size:14px; padding:13px 24px; border-radius:999px;
  display:inline-flex; align-items:center; gap:8px;
}
.esn-btn-header:hover{ border-color:var(--cyan); color:var(--text); }
.esn-menu-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:rgba(255,255,255,0.05); border:1px solid var(--border-strong);
  border-radius:10px; cursor:pointer;
}
.esn-menu-toggle span{ width:18px; height:2px; background:var(--text); margin:0 auto; transition:all .25s ease; }
.esn-menu-toggle.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.esn-menu-toggle.is-active span:nth-child(2){ opacity:0; }
.esn-menu-toggle.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.esn-mobile-menu{
  position:fixed; inset:84px 0 0 0; background:rgba(8,8,14,0.98); backdrop-filter:blur(20px);
  z-index:99; padding:32px 24px; transform:translateY(-12px); opacity:0; visibility:hidden;
  transition:all .3s ease; overflow-y:auto;
}
.esn-mobile-menu.is-open{ transform:translateY(0); opacity:1; visibility:visible; }
.esn-mobile-menu-list{ display:flex; flex-direction:column; gap:4px; margin-bottom:28px; }
.esn-mobile-menu-list a{
  display:block; padding:16px 4px; color:var(--text); font-family:var(--font-display);
  font-weight:700; font-size:22px; border-bottom:1px solid var(--border);
}

/* ---------------------------------- hero ---------------------------------- */
.esn-hero{
  position:relative; min-height:94vh; display:flex; align-items:center;
  overflow:hidden; padding:70px 0; background:var(--bg);
}
.esn-hero-network{
  position:absolute; inset:0; z-index:0; width:100%; height:100%; display:block;
}
.esn-hero-split{
  position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center;
  width:100%;
}
.esn-hero-content{ text-align:left; }
.esn-hero-eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-body); font-weight:700; font-size:12.5px;
  letter-spacing:.14em; text-transform:uppercase; color:var(--cyan-soft);
  background:rgba(63,198,255,0.08); border:1px solid rgba(63,198,255,0.3);
  border-radius:999px; padding:9px 18px 9px 14px; margin-bottom:26px;
}
.esn-eyebrow-dot{ width:7px; height:7px; border-radius:50%; background:var(--cyan); box-shadow:0 0 8px var(--cyan); flex-shrink:0; }
.esn-hero-heading{
  display:block; font-size:clamp(36px,5.4vw,58px); font-weight:800; line-height:1.1;
  margin-bottom:24px; letter-spacing:-0.01em;
}
.esn-hero-heading-1{ display:block; color:var(--white); }
.esn-hero-heading-2{ display:block; color:var(--cyan); min-height:1.1em; }
.esn-cursor{ color:var(--cyan); font-weight:400; animation:esn-blink 1s step-end infinite; }
@keyframes esn-blink{ 50%{ opacity:0; } }
.esn-hero-sub{ font-size:clamp(15.5px,1.6vw,17.5px); color:var(--muted); max-width:560px; margin:0 0 36px; line-height:1.7; }
.esn-hero-actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:26px; }
.esn-hero-caption{
  font-size:12.5px; font-weight:600; letter-spacing:.04em; color:var(--muted-2);
  text-transform:uppercase;
}

.esn-hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.esn-hero-image-frame{
  position:relative; border-radius:24px; overflow:hidden; border:1px solid var(--border-strong);
  box-shadow:0 30px 80px rgba(0,0,0,0.5); width:100%; aspect-ratio:1/1; background:var(--surface);
}
.esn-hero-image-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.esn-hero-image-frame .esn-hero-video{ width:100%; height:100%; object-fit:cover; display:block; }
.esn-hero-globe{ position:absolute; inset:0; width:100%; height:100%; display:block; }

.esn-hero-stat-badge{
  position:absolute; left:20px; bottom:20px; z-index:2;
  background:rgba(6,14,28,0.85); backdrop-filter:blur(10px);
  border:1px solid var(--border-strong); border-radius:14px; padding:12px 18px;
}
.esn-hero-stat-label{ display:block; font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:4px; }
.esn-hero-stat-value{ display:block; font-family:var(--font-display); font-weight:800; font-size:19px; color:var(--cyan); }

.esn-hero-float{
  position:absolute; z-index:2; font-family:var(--font-display); font-weight:800; font-size:15px;
  padding:8px 14px; border-radius:10px; backdrop-filter:blur(10px);
  animation:esn-badge-float 4.5s ease-in-out infinite;
}
.esn-hero-float-1{
  top:14%; right:6%; color:var(--blue-soft); background:rgba(47,128,255,0.12); border:1px solid rgba(47,128,255,0.35);
  animation-delay:.3s;
}
.esn-hero-float-2{
  bottom:16%; right:-4%; color:var(--cyan); background:rgba(63,198,255,0.12); border:1px solid rgba(63,198,255,0.35);
  animation-delay:1s;
}
@keyframes esn-badge-float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

.esn-hero-eyebrow{ justify-content:center; }

/* page hero (inner pages) */
.esn-page-hero{
  position:relative; padding:170px 0 80px; overflow:hidden; text-align:center;
}
.esn-page-hero h1{ font-size:clamp(32px,5vw,54px); position:relative; z-index:1; }
.esn-page-hero .esn-eyebrow{ position:relative; z-index:1; justify-content:center; }
.esn-page-hero .esn-eyebrow::before{ display:none; }
.esn-page-hero-intro{ position:relative; z-index:1; max-width:640px; margin:16px auto 0; }
.esn-single-hero{ text-align:left; padding:160px 0 50px; }
.esn-single-hero .esn-eyebrow::before{ display:inline-block; }
.esn-single-hero .esn-eyebrow{ justify-content:flex-start; }

/* ---------------------------------- stats ---------------------------------- */
.esn-stats-bar{
  background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:56px 0;
}
.esn-stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.esn-stat-num{
  display:block; font-family:var(--font-display); font-weight:800; font-size:clamp(30px,4vw,44px);
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.esn-stat-label{ display:block; color:var(--muted); font-size:14px; margin-top:6px; }

/* ---------------------------------- about ---------------------------------- */
.esn-about-grid{ display:grid; grid-template-columns:.85fr 1fr; gap:70px; align-items:center; }
.esn-about-visual{ position:relative; }
.esn-about-frame{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-strong);
  box-shadow:var(--shadow-glow); position:relative;
}
.esn-placeholder-visual{
  aspect-ratio:4/5; background:var(--gradient-soft); display:flex; align-items:center; justify-content:center;
  text-align:center; padding:30px;
}
.esn-placeholder-visual span{ font-family:var(--font-display); font-weight:800; font-size:22px; color:var(--text); opacity:.6; }
.esn-about-badge{
  position:absolute; bottom:-24px; right:-24px; background:var(--surface-2);
  border:1px solid var(--border-strong); border-radius:var(--radius-md); padding:20px 26px;
  text-align:center; box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.esn-about-badge strong{ display:block; font-family:var(--font-display); font-size:28px; background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.esn-about-badge span{ font-size:12px; color:var(--muted); }
.esn-about-content h2{ font-size:clamp(26px,3.4vw,38px); }
.esn-check-list{ margin:24px 0; display:flex; flex-direction:column; gap:12px; }
.esn-check-list li{ position:relative; padding-left:30px; color:var(--text); font-weight:600; font-size:15px; }
.esn-check-list li::before{
  content:"✓"; position:absolute; left:0; top:0; width:20px; height:20px; border-radius:50%;
  background:var(--gradient); color:#08080e; font-size:12px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}

/* ---------------------------------- cards ---------------------------------- */
.esn-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:34px 28px; transition:all .3s ease; position:relative;
}
.esn-card:hover{ transform:translateY(-6px); border-color:var(--border-strong); box-shadow:var(--shadow-glow); }

.esn-services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.esn-service-icon{
  width:56px; height:56px; border-radius:16px; background:var(--gradient-soft);
  display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:20px;
}
.esn-service-icon-lg{ width:80px; height:80px; font-size:38px; border-radius:22px; margin:0 auto 20px; }
.esn-card-title{ font-size:19px; margin-bottom:10px; }
.esn-card-desc{ font-size:14.5px; margin-bottom:16px; }
.esn-card-link{ font-size:13.5px; font-weight:700; color:var(--cyan); display:inline-flex; align-items:center; gap:6px; }
.esn-card-link span{ transition:transform .2s ease; }
.esn-card:hover .esn-card-link span{ transform:translateX(4px); }

/* process — animated timeline */
.esn-timeline{ position:relative; display:flex; justify-content:space-between; gap:20px; margin-top:60px; padding-top:34px; }
.esn-timeline-line{
  position:absolute; top:15px; left:24px; right:24px; height:1px;
  background:var(--border-strong); z-index:0;
}
.esn-timeline-line::after{
  content:""; position:absolute; top:0; left:0; height:100%; width:0%;
  background:var(--gradient); transition:width 1.4s cubic-bezier(.4,0,.2,1);
}
.esn-timeline.is-visible .esn-timeline-line::after{ width:100%; }
.esn-timeline-step{
  position:relative; z-index:1; flex:1; min-width:0;
  opacity:0; transform:translateX(-24px); transition:opacity .6s ease, transform .6s ease;
}
.esn-timeline.is-visible .esn-timeline-step{ opacity:1; transform:translateX(0); }
.esn-timeline-step[data-step="0"]{ transition-delay:.1s; }
.esn-timeline-step[data-step="1"]{ transition-delay:.5s; }
.esn-timeline-step[data-step="2"]{ transition-delay:.9s; }
.esn-timeline-step[data-step="3"]{ transition-delay:1.3s; }
.esn-timeline-step[data-step="4"]{ transition-delay:1.7s; }
.esn-timeline-dot{
  position:absolute; top:-34px; left:0; width:30px; height:30px; border-radius:50%;
  border:1px solid var(--border-strong); background:var(--bg); display:flex; align-items:center; justify-content:center;
  transition:border-color .4s ease, box-shadow .4s ease;
}
.esn-timeline-dot span{
  width:8px; height:8px; border-radius:50%; background:var(--muted-2); transition:background .4s ease, box-shadow .4s ease;
}
.esn-timeline.is-visible .esn-timeline-step[data-step="0"] .esn-timeline-dot,
.esn-timeline.is-visible .esn-timeline-step .esn-timeline-dot{
  border-color:rgba(34,211,238,0.5);
}
.esn-timeline.is-visible .esn-timeline-step .esn-timeline-dot span{
  background:var(--cyan); box-shadow:0 0 10px var(--cyan);
}
.esn-timeline-num{ display:block; font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--muted-2); margin-bottom:10px; }
.esn-timeline-step h3{ font-size:18px; margin-bottom:8px; }
.esn-timeline-step p{ font-size:13.5px; color:var(--muted); }

/* portfolio */
.esn-filter-bar{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.esn-filter-btn{
  padding:10px 20px; border-radius:999px; border:1px solid var(--border-strong); background:transparent;
  color:var(--muted); font-size:13.5px; font-weight:700; cursor:pointer; transition:all .2s ease;
}
.esn-filter-btn:hover{ color:var(--text); border-color:var(--cyan); }
.esn-filter-btn.is-active{ background:var(--gradient); color:#08080e; border-color:transparent; }

.esn-portfolio-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.esn-portfolio-item{ display:contents; }
.esn-portfolio-card{ display:block; border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border); background:var(--surface); transition:all .3s ease; }
.esn-portfolio-card:hover{ transform:translateY(-6px); border-color:var(--border-strong); box-shadow:var(--shadow-glow); }
.esn-portfolio-media{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.esn-portfolio-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.esn-portfolio-card:hover .esn-portfolio-media img{ transform:scale(1.08); }
.esn-portfolio-placeholder{ width:100%; height:100%; background:var(--gradient-soft); }

/* ---------------------------------- services page: featured work ---------------------------------- */
.esn-featured-work-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:44px; }
.esn-featured-work-card{ display:block; color:inherit; }
.esn-featured-work-media{
  position:relative; border-radius:16px; overflow:hidden; aspect-ratio:4/3; margin-bottom:18px; background:var(--surface);
}
.esn-featured-work-media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.esn-featured-work-card:hover .esn-featured-work-media img{ transform:scale(1.05); }
.esn-featured-work-num{
  display:block; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:8px;
}
.esn-featured-work-card h3{ font-size:19px; margin-bottom:6px; transition:color .2s ease; }
.esn-featured-work-card:hover h3{ color:var(--cyan); }
.esn-featured-work-meta{ font-size:13.5px; color:var(--muted); margin:0; }

/* ---------------------------------- services page: industries grid ---------------------------------- */
.esn-industries-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px; }
.esn-industry-card{
  padding:30px 26px; border-radius:16px; border:1px solid var(--border-strong); background:var(--surface);
  transition:transform .3s ease, border-color .3s ease, background .3s ease;
}
.esn-industry-card:hover{ transform:translateY(-4px); border-color:rgba(34,211,238,0.4); background:var(--gradient-soft); }
.esn-industry-num{
  display:block; font-family:var(--font-display); font-weight:800; font-size:13px; color:var(--muted-2);
  margin-bottom:12px; transition:color .3s ease;
}
.esn-industry-card:hover .esn-industry-num{ color:var(--cyan); }
.esn-industry-card h3{ font-size:19px; margin:0; }

/* ---------------------------------- services page: why e-skill + final cta ---------------------------------- */
.esn-why-reveal-heading{ line-height:1.25; }
.esn-why-reveal-heading span{
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}

.esn-final-cta{ position:relative; padding:140px 0; overflow:hidden; text-align:center; }
.esn-final-cta-inner{ position:relative; z-index:1; max-width:820px; margin:0 auto; }
.esn-final-cta-lead{ font-size:15px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--cyan); margin-bottom:20px; }
.esn-final-cta-heading{ font-size:clamp(32px,5vw,54px); font-weight:800; line-height:1.2; margin-bottom:20px; }
.esn-final-cta-sub{ font-size:17px; color:var(--muted); max-width:560px; margin:0 auto 36px; }

/* ---------------------------------- single service: capabilities ---------------------------------- */
.esn-capabilities-grid{ display:flex; flex-wrap:wrap; gap:14px; margin-top:44px; }
.esn-capability-chip{
  padding:14px 24px; border-radius:999px; border:1px solid var(--border-strong); background:var(--surface);
  font-size:14.5px; font-weight:600; color:var(--text); transition:all .25s ease;
}
.esn-capability-chip:hover{ border-color:rgba(34,211,238,0.5); background:var(--gradient-soft); color:var(--cyan); }
.esn-deliverables-grid{ grid-template-columns:repeat(3,1fr); }

/* ---------------------------------- about page: hero constellation ---------------------------------- */
.esn-constellation{ position:relative; width:100%; height:400px; max-width:400px; margin:0 auto; }
.esn-constellation-lines{ position:absolute; inset:0; width:100%; height:100%; }
.esn-constellation-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2;
  width:86px; height:86px; border-radius:50%; background:rgba(10,10,16,0.88); backdrop-filter:blur(10px);
  border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 44px rgba(34,211,238,0.16);
}
.esn-constellation-node{
  position:absolute; padding:11px 18px; border-radius:12px; background:rgba(18,18,29,0.75); backdrop-filter:blur(8px);
  border:1px solid var(--border-strong); font-size:13px; font-weight:600; color:var(--text);
  animation:esn-skill-float 7s ease-in-out infinite; box-shadow:0 12px 30px rgba(0,0,0,0.3);
}
.esn-constellation-node-1{ top:14%; left:6%;  animation-delay:0s; }
.esn-constellation-node-2{ top:8%;  left:74%; animation-delay:1.4s; }
.esn-constellation-node-3{ top:58%; left:82%; animation-delay:2.8s; }
.esn-constellation-node-4{ top:84%; left:46%; animation-delay:4.2s; }
.esn-constellation-node-5{ top:64%; left:2%;  animation-delay:5.6s; }

/* ---------------------------------- about page: our story ---------------------------------- */
.esn-story-grid{ display:grid; grid-template-columns:1.3fr .7fr; gap:60px; align-items:start; }
.esn-story-prose{ margin-top:20px; }
.esn-story-timeline{ position:sticky; top:120px; display:flex; flex-direction:column; gap:22px; padding-left:26px; border-left:2px solid var(--border-strong); }
.esn-story-stage{ position:relative; opacity:.35; transition:opacity .4s ease; }
.esn-story-stage.is-active{ opacity:1; }
.esn-story-stage-dot{
  position:absolute; left:-33px; top:4px; width:12px; height:12px; border-radius:50%;
  background:var(--surface); border:2px solid var(--border-strong); transition:all .4s ease;
}
.esn-story-stage.is-active .esn-story-stage-dot{ background:var(--cyan); border-color:var(--cyan); box-shadow:0 0 0 4px rgba(34,211,238,0.18); }
.esn-story-stage-label{ font-family:var(--font-display); font-weight:700; font-size:20px; color:var(--text); }
.esn-story-stage:not(.is-active) .esn-story-stage-label{ color:var(--muted); }

/* ---------------------------------- about page: philosophy flow chain ---------------------------------- */
.esn-flow-chain{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px; margin:44px 0 28px; }
.esn-flow-chip{
  padding:12px 22px; border-radius:999px; border:1px solid var(--border-strong); background:var(--surface);
  font-size:14.5px; font-weight:600; color:var(--muted);
}
.esn-flow-arrow{ color:var(--muted-2); font-size:16px; }
.esn-flow-final{
  font-family:var(--font-display); font-weight:800; font-size:clamp(26px,3.4vw,38px); margin-bottom:16px;
  color:var(--text);
}

/* ---------------------------------- about page: we build / we teach split panels ---------------------------------- */
.esn-split-panels{ display:flex; gap:2px; border-radius:22px; overflow:hidden; }
.esn-split-panel{
  flex:1; padding:56px 44px; background:var(--surface); border:1px solid var(--border-strong);
  display:flex; flex-direction:column; gap:16px; text-decoration:none; color:inherit;
  transition:flex .45s ease, background .45s ease;
}
.esn-split-panel:hover{ flex:1.3; background:var(--gradient-soft); }
.esn-split-panel-label{ font-family:var(--font-display); font-weight:800; font-size:clamp(24px,2.6vw,32px); color:var(--text); }
.esn-split-panel p{ font-size:15px; color:var(--muted); margin:0; flex-grow:1; }
.esn-split-panel-cta{ font-weight:700; font-size:14px; color:var(--cyan); }

/* ---------------------------------- about page: editorial selected work ---------------------------------- */
.esn-editorial-projects{ display:flex; flex-direction:column; gap:70px; }
.esn-editorial-project{
  display:grid; grid-template-columns:1.3fr 1fr; gap:50px; align-items:center;
  text-decoration:none; color:inherit;
}
.esn-editorial-project-rev{ grid-template-columns:1fr 1.3fr; }
.esn-editorial-project-rev .esn-editorial-project-media{ order:2; }
.esn-editorial-project-rev .esn-editorial-project-info{ order:1; }
.esn-editorial-project-media{
  position:relative; border-radius:20px; overflow:hidden; aspect-ratio:16/10;
  box-shadow:0 30px 70px rgba(0,0,0,0.4);
}
.esn-editorial-project-media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.esn-editorial-project:hover .esn-editorial-project-media img{ transform:scale(1.05); }
.esn-editorial-project-num{ display:block; font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--cyan); margin-bottom:12px; }
.esn-editorial-project-info h3{ font-size:clamp(24px,3vw,34px); margin-bottom:10px; }
.esn-editorial-project-info p{ font-size:14.5px; color:var(--muted); margin-bottom:18px; }
.esn-editorial-project-cta{ font-weight:700; font-size:14px; color:var(--text); transition:color .2s ease; }
.esn-editorial-project:hover .esn-editorial-project-cta{ color:var(--cyan); }

/* ---------------------------------- about page: location node ---------------------------------- */
.esn-location-node{ display:inline-flex; align-items:center; gap:12px; margin-top:36px; padding:14px 26px; border-radius:999px; border:1px solid var(--border-strong); background:var(--surface); }
.esn-location-pulse{ position:relative; width:10px; height:10px; border-radius:50%; background:var(--cyan); }
.esn-location-pulse::after{
  content:""; position:absolute; inset:-6px; border-radius:50%; border:1px solid var(--cyan);
  animation:esn-location-ping 2.2s ease-out infinite;
}
@keyframes esn-location-ping{ 0%{ transform:scale(0.6); opacity:1; } 100%{ transform:scale(2.2); opacity:0; } }
.esn-location-label{ font-weight:700; font-size:14.5px; color:var(--text); }

/* ---------------------------------- about page: team ---------------------------------- */
.esn-team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.esn-team-card{ text-align:center; }
.esn-team-photo{
  position:relative; border-radius:16px; overflow:hidden; aspect-ratio:3/4; margin-bottom:16px;
  background:var(--surface);
}
.esn-team-photo img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:grayscale(100%) brightness(0.75); transition:filter .4s ease, transform .4s ease;
}
.esn-team-card:hover .esn-team-photo img{ filter:grayscale(0%) brightness(1); transform:scale(1.04); }
.esn-team-photo-placeholder{ width:100%; height:100%; border-radius:0; font-size:36px; }
.esn-team-specialty{
  position:absolute; bottom:12px; left:12px; font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  color:#fff; background:rgba(0,0,0,0.55); padding:5px 11px; border-radius:999px; backdrop-filter:blur(4px);
  opacity:0; transform:translateY(6px); transition:opacity .3s ease, transform .3s ease;
}
.esn-team-card:hover .esn-team-specialty{ opacity:1; transform:translateY(0); }
.esn-team-card h3{ font-size:17px; margin-bottom:4px; }
.esn-team-role{ font-size:13px; color:var(--muted); }

/* ---------------------------------- about page: client voices ---------------------------------- */
.esn-featured-quote{ margin-top:40px; }
.esn-featured-quote-text{
  font-family:var(--font-display); font-weight:600; font-size:clamp(20px,2.6vw,30px); line-height:1.4;
  color:var(--text); margin-bottom:32px;
}
.esn-featured-quote-author{ display:flex; align-items:center; justify-content:center; gap:14px; }
.esn-featured-quote-author div{ text-align:left; }
.esn-featured-quote-author strong{ display:block; font-size:15px; }
.esn-featured-quote-author span{ display:block; font-size:13px; color:var(--muted); margin-top:2px; }

/* ---------------------------------- about page: how we think (redesign) ---------------------------------- */
.esn-think-header{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:end; margin-bottom:56px; }
.esn-think-heading{ margin-bottom:0; }
.esn-think-heading-accent{ background:linear-gradient(90deg,#3b82f6,#a855f7); -webkit-background-clip:text; background-clip:text; color:transparent; }
.esn-think-intro-col .esn-section-sub-lg{ margin:0; max-width:420px; }

.esn-think-nodes{ position:relative; display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin-bottom:70px; }
.esn-think-line{ position:absolute; top:44px; left:24px; right:24px; height:2px; background:var(--border-strong); z-index:0; }
.esn-think-line-fill{ position:absolute; top:0; left:0; height:100%; width:0%; background:var(--gradient); transition:width .3s ease; box-shadow:0 0 12px rgba(34,211,238,0.5); }
.esn-think-node{
  position:relative; z-index:1; text-align:center; padding:0 6px; opacity:.4; transition:opacity .4s ease;
}
.esn-think-node.is-active,.esn-think-node.is-done{ opacity:1; }
.esn-think-node-icon{
  display:flex; align-items:center; justify-content:center; width:56px; height:56px; margin:0 auto 14px;
  border-radius:50%; background:var(--surface); border:1px solid var(--border-strong); color:var(--muted-2);
  transition:all .4s ease;
}
.esn-think-node.is-active .esn-think-node-icon{
  border-color:var(--cyan); color:var(--cyan); box-shadow:0 0 22px rgba(34,211,238,0.3); background:var(--gradient-soft);
}
.esn-think-node-num{ display:block; font-family:var(--font-display); font-weight:800; font-size:11px; color:var(--muted-2); margin-bottom:6px; }
.esn-think-node.is-active .esn-think-node-num{ color:var(--cyan); }
.esn-think-node h3{ font-size:15px; margin-bottom:6px; }
.esn-think-node p{ font-size:12.5px; color:var(--muted); margin:0; line-height:1.4; }

.esn-think-resolve{ text-align:center; }
.esn-think-resolve-line{ display:block; width:60px; height:1px; background:var(--border-strong); margin:0 auto 28px; }
.esn-think-resolve .esn-think-resolve-line:last-child{ margin:28px auto 0; }
.esn-flow-final span{ background:linear-gradient(90deg,#3b82f6,#22d3ee); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------------------------------- about page: two sides ecosystem (redesign) ---------------------------------- */
.esn-ecosystem-heading{ text-align:center; margin:0 auto 50px; }
.esn-ecosystem-accent-build{ color:var(--cyan); }
.esn-ecosystem-accent-teach{ color:#a855f7; margin-left:10px; }
.esn-ecosystem-wrap{ display:grid; grid-template-columns:1fr auto 1fr; gap:0; align-items:stretch; }
.esn-ecosystem-panel{
  padding:48px 40px; background:var(--surface); border:1px solid var(--border-strong); text-decoration:none; color:inherit;
  display:flex; flex-direction:column; gap:16px; transition:all .5s ease; position:relative; z-index:1;
}
.esn-ecosystem-panel-build{ border-radius:22px 0 0 22px; border-right:none; }
.esn-ecosystem-panel-teach{ border-radius:0 22px 22px 0; border-left:none; }
.esn-ecosystem-wrap:hover .esn-ecosystem-panel{ opacity:.6; }
.esn-ecosystem-wrap .esn-ecosystem-panel:hover{ opacity:1; background:var(--gradient-soft); transform:scale(1.02); }
.esn-ecosystem-panel-label{ font-family:var(--font-display); font-weight:800; font-size:clamp(22px,2.4vw,28px); }
.esn-ecosystem-panel-build .esn-ecosystem-panel-label{ color:var(--cyan); }
.esn-ecosystem-panel-teach .esn-ecosystem-panel-label{ color:#a855f7; }
.esn-ecosystem-panel p{ font-size:14.5px; color:var(--muted); margin:0; }
.esn-ecosystem-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.esn-ecosystem-tags span{
  font-size:11.5px; font-weight:600; padding:6px 13px; border-radius:999px; border:1px solid var(--border-strong);
  color:var(--muted); background:rgba(255,255,255,0.02);
}
.esn-ecosystem-panel-cta{ font-weight:700; font-size:14px; color:var(--text); margin-top:auto; padding-top:6px; }
.esn-ecosystem-panel-build .esn-ecosystem-panel-cta{ color:var(--cyan); }
.esn-ecosystem-panel-teach .esn-ecosystem-panel-cta{ color:#a855f7; }
.esn-ecosystem-center{
  position:relative; z-index:2; width:150px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; background:var(--bg); border-top:1px solid var(--border-strong); border-bottom:1px solid var(--border-strong);
}
.esn-ecosystem-center-mark{
  width:70px; height:70px; border-radius:50%; background:var(--surface); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; box-shadow:0 0 30px rgba(34,211,238,0.12);
}
.esn-ecosystem-path{ font-size:10.5px; font-weight:700; letter-spacing:.03em; color:var(--muted-2); text-align:center; max-width:110px; }

/* ---------------------------------- about page: karachi / global reach (redesign) ---------------------------------- */
.esn-location-header{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; margin-bottom:56px; }
.esn-location-heading-accent{ background:linear-gradient(90deg,#3b82f6,#a855f7,#22d3ee); -webkit-background-clip:text; background-clip:text; color:transparent; }
.esn-globe-visual{ width:100%; max-width:900px; margin:0 auto 56px; }
.esn-globe-svg{ width:100%; height:auto; display:block; }
.esn-globe-origin{ fill:var(--cyan); filter:drop-shadow(0 0 8px rgba(34,211,238,0.8)); }
.esn-globe-node{ fill:rgba(34,211,238,0.7); opacity:0; transition:opacity .6s ease .8s; }
.esn-globe-visual.is-visible .esn-globe-node{ opacity:1; }
.esn-globe-visual g[stroke]:not(.esn-skyline){ stroke-dasharray:600; stroke-dashoffset:600; transition:stroke-dashoffset 1.4s ease .3s; }
.esn-globe-visual.is-visible g[stroke]:not(.esn-skyline){ stroke-dashoffset:0; }
.esn-location-cta{ text-align:center; }
.esn-location-cta h3{ font-family:var(--font-display); font-weight:800; font-size:clamp(22px,2.8vw,32px); margin-bottom:24px; }

/* ---------------------------------- services page: cross-service journeys ---------------------------------- */
.esn-journeys-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:44px; max-width:640px; margin-left:auto; margin-right:auto; }
.esn-journey-path{
  display:flex; flex-direction:column; align-items:center; gap:6px; padding:32px 20px;
  border:1px solid var(--border-strong); border-radius:20px; background:var(--surface);
}
.esn-journey-step{
  font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--text); padding:10px 20px;
  border-radius:999px; background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.25); text-align:center;
}
.esn-journey-arrow{ color:var(--cyan); font-size:16px; line-height:1; }
.esn-portfolio-overlay{
  position:absolute; inset:0; background:rgba(8,8,14,0.55); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s ease;
}
.esn-portfolio-card:hover .esn-portfolio-overlay{ opacity:1; }
.esn-portfolio-view{ color:#fff; font-weight:700; font-size:14px; display:flex; align-items:center; gap:6px; }
.esn-portfolio-info{ padding:22px 22px 26px; }
.esn-portfolio-tag{
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--cyan); margin-bottom:8px;
}
.esn-portfolio-info h3{ font-size:18px; margin-bottom:4px; color:var(--text); }
.esn-portfolio-info p{ font-size:13.5px; margin:0; }

/* testimonials */
.esn-testimonials-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.esn-testimonials-heading{ text-align:center; margin-bottom:48px; }
.esn-testimonials-heading .esn-eyebrow-plain{ text-align:center; }
.esn-testimonials-heading .esn-section-title-lg{ margin:0 auto; }
.esn-testimonial-marquee{
  overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.esn-testimonial-track{
  display:inline-flex; width:max-content; gap:24px; animation:esn-marquee 42s linear infinite;
}
.esn-testimonial-marquee:hover .esn-testimonial-track{ animation-play-state:paused; }
.esn-testimonial-item{ flex:0 0 380px; width:380px; white-space:normal; }
.esn-testimonial-item .esn-card{ height:100%; transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.esn-testimonial-item .esn-card:hover{ transform:translateY(-6px); border-color:rgba(63,198,255,0.4); box-shadow:0 20px 50px rgba(0,0,0,0.4); }
.esn-testimonial-stars{ color:var(--muted-2); font-size:15px; letter-spacing:2px; margin-bottom:14px; }
.esn-testimonial-stars .is-filled{ color:var(--cyan); }
.esn-testimonial-quote{ color:var(--text); font-size:15.5px; line-height:1.6; margin-bottom:22px; }
.esn-testimonial-author{ display:flex; align-items:center; gap:12px; }
.esn-testimonial-avatar{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.esn-avatar-placeholder{
  display:flex; align-items:center; justify-content:center; background:var(--gradient);
  color:#08080e; font-family:var(--font-display); font-weight:800; font-size:16px;
}
.esn-testimonial-author strong{ display:block; font-size:14.5px; color:var(--text); }
.esn-testimonial-author span{ display:block; font-size:12.5px; color:var(--muted-2); }

/* blog */
.esn-blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.esn-blog-grid-full{ grid-template-columns:repeat(3,1fr); }
.esn-blog-card{ display:block; border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border); background:var(--surface); transition:all .3s ease; padding:0; }
.esn-blog-card:hover{ transform:translateY(-6px); border-color:var(--border-strong); box-shadow:var(--shadow-glow); }
.esn-blog-media{ aspect-ratio:16/10; overflow:hidden; }
.esn-blog-media img{ width:100%; height:100%; object-fit:cover; }
.esn-blog-body{ padding:24px; }
.esn-blog-date{ font-size:12px; color:var(--muted-2); font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.esn-blog-body h3{ font-size:18px; margin:10px 0 8px; color:var(--text); }
.esn-blog-body p{ font-size:14px; margin:0; }
.esn-single-thumb{ border-radius:var(--radius-lg); overflow:hidden; margin-bottom:20px; border:1px solid var(--border); }
.esn-post-tags{ margin-top:36px; display:flex; gap:8px; flex-wrap:wrap; }
.esn-tag{
  display:inline-block; padding:6px 14px; border-radius:999px; border:1px solid var(--border-strong);
  font-size:12.5px; color:var(--muted);
}

/* project single */
.esn-project-grid{ display:grid; grid-template-columns:260px 1fr; gap:56px; }
.esn-project-meta{ display:flex; flex-direction:column; gap:20px; align-self:start; position:sticky; top:110px; }
.esn-project-meta-item span{ display:block; font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted-2); margin-bottom:4px; }
.esn-project-meta-item strong{ font-size:15px; color:var(--text); }

/* ---------------------------------- cinematic project hero + case study ---------------------------------- */
.esn-project-hero{ padding:150px 0 40px; }
.esn-project-hero-title{ font-size:clamp(34px,5.5vw,64px); margin:16px 0 20px; max-width:900px; }
.esn-project-hero-meta{ display:flex; flex-wrap:wrap; gap:12px; }
.esn-project-hero-meta span{
  font-size:13px; font-weight:600; color:var(--muted); padding:7px 16px; border:1px solid var(--border-strong);
  border-radius:999px; background:rgba(255,255,255,0.02);
}
.esn-project-image-reveal{
  border-radius:24px; overflow:hidden; margin-bottom:20px; transform:scale(1.08); opacity:0;
  transition:transform 1.1s cubic-bezier(.16,1,.3,1), opacity 1s ease;
}
.esn-project-image-reveal.is-visible{ transform:scale(1); opacity:1; }
.esn-project-image-reveal img{ width:100%; height:auto; display:block; }

.esn-case-study-inner{ display:flex; flex-direction:column; gap:64px; max-width:820px; margin:0 auto; }
.esn-case-block{ padding-left:28px; border-left:2px solid var(--border-strong); }
.esn-case-label{
  display:block; font-family:var(--font-display); font-weight:700; font-size:13px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--cyan); margin-bottom:14px;
}
.esn-case-block p{ font-size:19px; line-height:1.6; color:var(--text); margin:0; }
.esn-case-block-result{ border-left-color:var(--cyan); }
.esn-case-block-result p{ font-size:22px; font-weight:600; }

/* anchor targets should clear the sticky header */
#services,#portfolio,#contact{ scroll-margin-top:100px; }

/* ---------------------------------- marquee ticker ---------------------------------- */
.esn-ticker{
  background:var(--surface); border-bottom:1px solid var(--border); overflow:hidden;
  padding:14px 0; white-space:nowrap;
}
.esn-ticker-alt{ background:var(--bg-alt); }
.esn-ticker-track{
  display:inline-flex; width:max-content; gap:0; animation:esn-marquee 32s linear infinite;
}
.esn-ticker:hover .esn-ticker-track{ animation-play-state:paused; }
@keyframes esn-marquee{ from{ transform:translateX(0); } to{ transform:translateX(-33.3333%); } }
.esn-ticker-item{
  display:inline-flex; align-items:center; gap:18px; font-family:var(--font-display);
  font-weight:700; font-size:16px; color:var(--muted); padding:0 22px; text-transform:uppercase; letter-spacing:.03em;
  flex-shrink:0;
}
.esn-ticker-dot{ color:var(--cyan); font-size:12px; }

/* ---------------------------------- typewriter hero ---------------------------------- */
.esn-typewriter-heading{ display:block; }
.esn-typewriter{
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.esn-cursor{ color:var(--cyan); font-weight:400; animation:esn-blink 1s step-end infinite; }
@keyframes esn-blink{ 50%{ opacity:0; } }
.esn-hero-trust{ font-size:13.5px; color:var(--muted-2); margin-top:28px; }

/* ---------------------------------- big stat banner ---------------------------------- */
.esn-big-stat{ text-align:center; padding:90px 0; }
.esn-big-stat .esn-eyebrow{ justify-content:center; }
.esn-big-stat .esn-eyebrow::before{ display:none; }
.esn-big-stat h2{
  font-size:clamp(26px,4.4vw,44px); max-width:900px; margin:0 auto;
  background:linear-gradient(135deg,#fff,rgba(255,255,255,0.55)); -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------------------------------- trust strip ---------------------------------- */
.esn-trust{ padding:80px 0 60px; overflow:hidden; }
.esn-trust-heading{ text-align:center; margin-bottom:44px; }
.esn-trust-heading h2{ font-size:clamp(24px,3.2vw,32px); margin-bottom:12px; }
.esn-trust-heading p{
  font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted-2); margin:0;
}
.esn-trust-marquee{
  overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.esn-trust-track{
  display:inline-flex; width:max-content; align-items:center; gap:64px; white-space:nowrap;
  animation:esn-marquee 30s linear infinite;
}
.esn-trust-marquee:hover .esn-trust-track{ animation-play-state:paused; }
.esn-trust-item{
  font-family:var(--font-display); font-weight:700; font-size:18px; letter-spacing:.05em;
  color:var(--muted); text-transform:uppercase; opacity:.75; transition:opacity .2s ease;
  display:inline-flex; align-items:center; flex-shrink:0;
}
.esn-trust-item:hover{ opacity:1; color:var(--text); }
.esn-trust-logo{ max-height:32px; width:auto; flex-shrink:0; filter:grayscale(1) brightness(1.6); opacity:.7; }

/* ---------------------------------- training ---------------------------------- */
.esn-training-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.esn-training-eyebrow{ color:#f472b6; text-align:left; }
.esn-training-heading{
  font-size:clamp(32px,4.6vw,50px); font-weight:800; line-height:1.1; margin:16px 0 20px;
}
.esn-training-heading span{ display:block; color:var(--white); }
.esn-training-accent{
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent !important;
}
.esn-training-desc{ font-size:16px; color:var(--muted); max-width:480px; margin-bottom:24px; }
.esn-training-badge{
  display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--cyan-soft);
  background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.3); border-radius:999px;
  padding:9px 18px; margin-bottom:32px;
}
.esn-training-course-heading{ font-size:19px; margin-bottom:18px; }
.esn-training-checklist{
  display:grid; grid-template-columns:1fr 1fr; gap:12px 24px; margin-bottom:34px;
}
.esn-training-checklist li{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--muted); }
.esn-check-icon{
  width:18px; height:18px; border-radius:50%; background:rgba(34,211,238,0.12); color:var(--cyan);
  display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0;
}
.esn-training-visual{ position:relative; }
.esn-training-frame{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-strong);
  box-shadow:0 30px 80px rgba(0,0,0,0.5); background:var(--surface);
}
.esn-training-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.esn-training-placeholder{
  aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; padding:40px; text-align:center; background:var(--gradient-soft);
}
.esn-training-placeholder span{ font-size:40px; }
.esn-training-placeholder p{ font-size:13px; color:var(--muted); margin:0; max-width:260px; }

.esn-training-detail-grid{ display:grid; grid-template-columns:1.4fr .9fr; gap:56px; align-items:start; }
.esn-training-detail-main .esn-training-desc{ font-size:17px; margin-bottom:20px; }
.esn-training-detail-main .esn-training-checklist{ grid-template-columns:1fr 1fr; }
.esn-training-detail-side{ position:relative; }

/* ---------------------------------- training: redesigned full-screen hero ---------------------------------- */
.esn-training-hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding:150px 0 60px; overflow:hidden;
}
.esn-training-hero-split{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; position:relative; z-index:1; }
.esn-training-hero-heading{ font-size:clamp(32px,4.6vw,50px); font-weight:800; line-height:1.12; margin:16px 0 6px; }
.esn-training-hero-heading span{ display:block; color:var(--white); }
.esn-training-hero-rotating{ min-height:44px; margin-bottom:16px; }
.esn-training-hero-rotating .esn-typewriter-heading{
  font-family:var(--font-display); font-weight:700; font-size:clamp(18px,2.2vw,24px);
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.esn-training-hero-rotating .esn-cursor{ color:var(--cyan); -webkit-text-fill-color:var(--cyan); animation:esn-blink 1s step-end infinite; }
.esn-training-hero-desc{ font-size:16.5px; color:var(--muted); max-width:520px; margin-bottom:22px; }
.esn-training-hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.esn-training-hero-badges span{
  font-size:12.5px; font-weight:600; color:var(--muted); padding:8px 15px; border-radius:999px;
  border:1px solid var(--border-strong); background:rgba(255,255,255,0.02);
}

.esn-training-hero-visual{ position:relative; height:460px; }
.esn-skill-cards{ position:relative; width:100%; height:100%; }
.esn-skill-card{
  position:absolute; display:inline-flex; align-items:center; gap:8px; padding:12px 18px; border-radius:14px;
  background:rgba(18,18,29,0.75); backdrop-filter:blur(10px); border:1px solid var(--border-strong);
  font-size:13.5px; font-weight:600; color:var(--text); white-space:nowrap; box-shadow:0 16px 40px rgba(0,0,0,0.35);
  animation:esn-skill-float 6s ease-in-out infinite;
}
.esn-skill-card-icon{ font-size:16px; }
/* Deterministic scattered layout + varied float timing, purely via CSS nth-child so no JS positioning is needed. */
.esn-skill-card:nth-child(1){ top:2%;  left:6%;  animation-delay:0s; }
.esn-skill-card:nth-child(2){ top:14%; left:52%; animation-delay:.6s; }
.esn-skill-card:nth-child(3){ top:28%; left:16%; animation-delay:1.2s; }
.esn-skill-card:nth-child(4){ top:40%; left:58%; animation-delay:.3s; }
.esn-skill-card:nth-child(5){ top:52%; left:2%;  animation-delay:1.6s; }
.esn-skill-card:nth-child(6){ top:64%; left:44%; animation-delay:.9s; }
.esn-skill-card:nth-child(7){ top:76%; left:12%; animation-delay:2s; }
.esn-skill-card:nth-child(8){ top:6%;  left:78%; animation-delay:1.4s; }
.esn-skill-card:nth-child(9){ top:88%; left:52%; animation-delay:.2s; }
.esn-skill-card:nth-child(10){ top:46%; left:80%; animation-delay:1.8s; }
@keyframes esn-skill-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }

.esn-training-stats-grid{ grid-template-columns:repeat(5,1fr); }

/* ---------------------------------- training: interactive learning roadmap ---------------------------------- */
.esn-roadmap-wrap{ position:relative; max-width:760px; margin:50px auto 0; padding-left:70px; }
.esn-roadmap-line{
  position:absolute; left:23px; top:6px; bottom:6px; width:2px; background:var(--border-strong); border-radius:2px;
}
.esn-roadmap-line-fill{
  position:absolute; top:0; left:0; width:100%; height:0%; background:var(--gradient);
  border-radius:2px; transition:height .3s ease; box-shadow:0 0 12px rgba(34,211,238,0.5);
}
.esn-roadmap-step{ position:relative; padding-bottom:52px; opacity:.35; transition:opacity .4s ease; }
.esn-roadmap-step:last-child{ padding-bottom:0; }
.esn-roadmap-step.is-done{ opacity:.65; }
.esn-roadmap-step.is-active{ opacity:1; }
.esn-roadmap-dot{
  position:absolute; left:-70px; top:2px; width:16px; height:16px; border-radius:50%;
  background:var(--surface); border:2px solid var(--border-strong); transition:all .4s ease;
}
.esn-roadmap-step.is-done .esn-roadmap-dot{ background:var(--cyan); border-color:var(--cyan); opacity:.6; }
.esn-roadmap-step.is-active .esn-roadmap-dot{
  background:var(--cyan); border-color:var(--cyan); box-shadow:0 0 0 5px rgba(34,211,238,0.18);
}
.esn-roadmap-num{
  font-family:var(--font-display); font-weight:800; font-size:13px; color:var(--muted-2); margin-bottom:6px;
  transition:color .4s ease;
}
.esn-roadmap-step.is-active .esn-roadmap-num{ color:var(--cyan); }
.esn-roadmap-content h3{ font-size:20px; margin-bottom:6px; transition:color .4s ease; }
.esn-roadmap-step.is-active .esn-roadmap-content h3{ color:var(--text); }
.esn-roadmap-content p{ font-size:14.5px; color:var(--muted); margin:0; max-width:480px; }

/* ---------------------------------- training: learn / practice / build / grow ---------------------------------- */
.esn-experience-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:44px; }
.esn-experience-card{
  padding:32px 26px; border:1px solid var(--border-strong); border-radius:20px; background:var(--surface);
  transition:transform .3s ease, border-color .3s ease;
}
.esn-experience-card:hover{ transform:translateY(-6px); border-color:rgba(34,211,238,0.4); }
.esn-experience-num{
  display:block; font-family:var(--font-display); font-weight:800; font-size:34px;
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:14px;
}
.esn-experience-card h3{ font-size:19px; margin-bottom:10px; }
.esn-experience-card p{ font-size:14px; color:var(--muted); margin:0; }

/* ---------------------------------- training: 8-week journey ---------------------------------- */
.esn-weeks-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px; }
.esn-week-card{
  padding:26px 22px; border:1px solid var(--border-strong); border-radius:18px; background:var(--surface);
  transition:transform .3s ease, border-color .3s ease;
}
.esn-week-card:hover{ transform:translateY(-4px); border-color:rgba(34,211,238,0.35); }
.esn-week-label{
  display:inline-block; font-size:11.5px; font-weight:700; color:var(--cyan); letter-spacing:.05em;
  text-transform:uppercase; margin-bottom:10px;
}
.esn-week-card h3{ font-size:18px; margin-bottom:14px; }
.esn-week-list{ display:flex; flex-direction:column; gap:8px; }
.esn-week-list li{
  font-size:13px; color:var(--muted); padding-left:16px; position:relative;
}
.esn-week-list li::before{ content:"—"; position:absolute; left:0; color:var(--muted-2); }

/* ---------------------------------- training: why e-skill comparison ---------------------------------- */
.esn-why-compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:44px; }
.esn-why-compare-col{
  padding:36px 32px; border-radius:22px; border:1px solid var(--border-strong); background:var(--surface);
}
.esn-why-compare-featured{
  border-color:rgba(34,211,238,0.4); box-shadow:0 0 0 1px rgba(34,211,238,0.2) inset, 0 20px 60px rgba(34,211,238,0.08);
  background:var(--gradient-soft);
}
.esn-why-compare-title{ font-size:20px; margin-bottom:22px; }
.esn-why-compare-list{ display:flex; flex-direction:column; gap:14px; }
.esn-why-compare-list li{ display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:var(--muted); }
.esn-why-x{ color:var(--danger); font-weight:700; flex-shrink:0; }
.esn-why-check{ color:var(--cyan); font-weight:700; flex-shrink:0; }
.esn-why-compare-featured .esn-why-compare-list li{ color:var(--text); }

/* ---------------------------------- training: who this is for ---------------------------------- */
.esn-who-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:44px; }
.esn-who-card{
  display:flex; align-items:center; gap:12px; padding:20px 22px; border-radius:14px;
  border:1px solid var(--border-strong); background:var(--surface); font-size:15px; font-weight:600; color:var(--text);
}
.esn-who-check{
  width:26px; height:26px; border-radius:50%; background:rgba(34,211,238,0.12); color:var(--cyan);
  display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0;
}
.esn-who-not-for{
  margin-top:36px; padding:26px 30px; border-radius:16px; border:1px solid var(--border);
  background:rgba(255,255,255,0.015);
}
.esn-who-not-for h4{ font-size:15px; color:var(--muted); margin-bottom:14px; }
.esn-who-not-for ul{ display:flex; flex-direction:column; gap:8px; }
.esn-who-not-for li{ font-size:14px; color:var(--muted-2); padding-left:18px; position:relative; }
.esn-who-not-for li::before{ content:"·"; position:absolute; left:4px; }

/* ---------------------------------- training: next batch info ---------------------------------- */
.esn-batch-info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; margin-bottom:40px; }
.esn-batch-info-item{
  padding:24px; border-radius:16px; border:1px solid var(--border-strong); background:var(--surface); text-align:center;
}
.esn-batch-info-label{ display:block; font-size:12px; color:var(--muted-2); text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; }
.esn-batch-info-value{ display:block; font-size:18px; color:var(--text); }

/* ---------------------------------- training: real classroom gallery ---------------------------------- */
.esn-gallery-scroll{
  display:flex; gap:18px; overflow-x:auto; padding:44px 40px 24px; scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
}
.esn-gallery-slide{
  position:relative; flex:0 0 auto; scroll-snap-align:start; border-radius:18px; overflow:hidden;
  height:360px; box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
.esn-gallery-slide img{ height:100%; width:auto; max-width:520px; object-fit:cover; display:block; transition:transform .4s ease; }
.esn-gallery-slide:hover img{ transform:scale(1.04); }
.esn-gallery-caption{
  position:absolute; left:16px; bottom:14px; font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color:#fff; background:rgba(0,0,0,0.55); padding:6px 12px; border-radius:999px; backdrop-filter:blur(4px);
}

/* ---------------------------------- training: student success stories ---------------------------------- */
.esn-success-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:44px; }
.esn-success-card{
  padding:28px 26px; border-radius:20px; border:1px solid var(--border-strong); background:var(--surface);
}
.esn-success-head{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.esn-success-photo{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.esn-success-head strong{ display:block; font-size:15.5px; color:var(--text); }
.esn-success-head span{ display:block; font-size:13px; color:var(--muted); margin-top:2px; }
.esn-success-stage{ margin-bottom:16px; }
.esn-success-stage:last-child{ margin-bottom:0; }
.esn-success-stage-label{
  display:block; font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  color:var(--muted-2); margin-bottom:5px;
}
.esn-success-stage p{ font-size:14px; color:var(--muted); margin:0; }
.esn-success-stage-result .esn-success-stage-label{ color:var(--cyan); }
.esn-success-stage-result p{ color:var(--text); font-weight:500; }

/* ---------------------------------- training: video testimonials ---------------------------------- */
.esn-testimonial-video-card{ cursor:pointer; }
.esn-testimonial-video-thumb{
  position:relative; border-radius:14px; overflow:hidden; margin-bottom:16px; aspect-ratio:16/10; background:var(--bg-alt);
}
.esn-testimonial-video-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.esn-testimonial-video-placeholder{ width:100%; height:100%; border-radius:0; font-size:32px; }
.esn-testimonial-play-btn{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:56px; height:56px; border-radius:50%;
  background:rgba(8,8,14,0.7); color:var(--cyan); display:flex; align-items:center; justify-content:center;
  font-size:16px; border:1px solid rgba(34,211,238,0.4); transition:transform .25s ease, background .25s ease;
}
.esn-testimonial-video-card:hover .esn-testimonial-play-btn{ transform:translate(-50%,-50%) scale(1.12); background:rgba(34,211,238,0.15); }

.esn-video-modal{
  position:fixed; inset:0; z-index:10000; display:flex; align-items:center; justify-content:center;
  background:rgba(4,4,8,0.9); padding:24px; opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
}
.esn-video-modal.is-open{ opacity:1; visibility:visible; }
.esn-video-modal-inner{ position:relative; width:100%; max-width:900px; aspect-ratio:16/9; background:#000; border-radius:12px; overflow:hidden; }
.esn-video-modal-inner iframe{ width:100%; height:100%; border:0; }
.esn-video-modal-close{
  position:absolute; top:-44px; right:0; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.1);
  color:#fff; border:none; font-size:18px; cursor:pointer;
}

/* ---------------------------------- services page: premium futuristic hero ---------------------------------- */
.esn-services-hero{ position:relative; min-height:auto; padding:170px 0 110px; overflow:hidden; }
.esn-services-hero-grid{
  display:grid; grid-template-columns:1.15fr 1fr; gap:60px; align-items:center; position:relative; z-index:2;
}
.esn-services-hero-content{ max-width:600px; }
.esn-services-hero-heading{ font-size:clamp(44px,5.6vw,88px); font-weight:800; line-height:1.06; margin:18px 0 6px; letter-spacing:-0.01em; }
.esn-services-hero-line1{ display:block; color:var(--white); }
.esn-services-hero-line2{
  display:block; background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.esn-services-hero-desc{ font-size:17px; color:var(--muted); max-width:560px; margin:18px 0 30px; line-height:1.65; }
.esn-hero-trust{ display:flex; align-items:center; gap:14px; margin-top:6px; }
.esn-hero-trust-line{ width:32px; height:1px; background:var(--border-strong); flex-shrink:0; }
.esn-hero-trust-text{ font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted-2); }

/* ---- orbit visual ---- */
.esn-services-hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; min-height:440px; }
.esn-service-orbit{ position:relative; width:100%; max-width:440px; aspect-ratio:1/1; margin:0 auto; }
.esn-orbit-ring{ position:absolute; inset:0; border-radius:50%; border:1px solid rgba(34,211,238,0.12); animation:esn-orbit-rotate 70s linear infinite; will-change:transform; }
.esn-orbit-ring-inner{ inset:15%; border-color:rgba(139,92,246,0.14); animation-duration:50s; animation-direction:reverse; }
@keyframes esn-orbit-rotate{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }
.esn-orbit-lines{ position:absolute; inset:0; width:100%; height:100%; }

.esn-orbit-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2;
  width:86px; height:86px; border-radius:50%; background:rgba(10,10,16,0.88); backdrop-filter:blur(10px);
  border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 44px rgba(34,211,238,0.16);
}
.esn-orbit-center img{ max-width:58%; max-height:58%; object-fit:contain; }
.esn-orbit-center-mark{ font-family:var(--font-display); font-weight:800; font-size:26px; background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }

.esn-orbit-node{
  position:absolute; transform:translate(-50%,-50%); z-index:3; display:flex; flex-direction:column; gap:2px;
  padding:11px 18px; border-radius:16px; background:rgba(14,14,22,0.86); backdrop-filter:blur(8px);
  border:1px solid var(--border-strong); box-shadow:0 14px 34px rgba(0,0,0,0.35);
  animation:esn-orbit-float 7s ease-in-out infinite;
  transition:border-color .3s ease, box-shadow .3s ease; cursor:pointer; text-align:center;
}
.esn-orbit-node:hover{ border-color:rgba(34,211,238,0.5); box-shadow:0 20px 44px rgba(34,211,238,0.2); }
.esn-orbit-node-title{ font-family:var(--font-display); font-weight:700; font-size:12.5px; color:var(--text); white-space:nowrap; }
.esn-orbit-node-sub{ font-size:10px; color:var(--muted); white-space:nowrap; }
.esn-orbit-node-1{ top:0%; left:50%; animation-delay:0s; }
.esn-orbit-node-2{ top:30%; left:97%; animation-delay:1.4s; }
.esn-orbit-node-3{ top:84%; left:79%; animation-delay:2.8s; }
.esn-orbit-node-4{ top:84%; left:21%; animation-delay:4.2s; }
.esn-orbit-node-5{ top:30%; left:3%; animation-delay:5.6s; }
@keyframes esn-orbit-float{ 0%,100%{ transform:translate(-50%,-50%) translateY(0); } 50%{ transform:translate(-50%,-50%) translateY(-10px); } }

/* ---------------------------------- single service page: hero icon-frame visual ---------------------------------- */
.esn-service-icon-frame{
  position:relative; width:100%; max-width:420px; aspect-ratio:1/1; margin:0 auto; border-radius:32px;
  border:1px solid var(--border-strong); background:var(--surface); display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:26px; padding:40px; overflow:hidden;
}
.esn-service-icon-frame-glow{
  position:absolute; top:-30%; left:50%; transform:translateX(-50%); width:280px; height:280px;
  background:var(--gradient); filter:blur(90px); opacity:.16; border-radius:50%;
}
.esn-service-icon-frame-icon{
  position:relative; z-index:1; width:110px; height:110px; border-radius:28px; display:flex; align-items:center; justify-content:center;
  color:var(--cyan); background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.25);
}
.esn-service-icon-frame-tags{ position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }

/* ---------------------------------- services page: service ecosystem cards ---------------------------------- */
.esn-ecosystem-section{ position:relative; padding-top:100px; }
.esn-ecosystem-grid-bg{
  position:absolute; top:0; left:0; right:0; height:360px; z-index:0; pointer-events:none;
  background-image:linear-gradient(rgba(34,211,238,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,0.05) 1px, transparent 1px);
  background-size:56px 56px;
  -webkit-mask-image:linear-gradient(to bottom, black, transparent);
  mask-image:linear-gradient(to bottom, black, transparent);
}
.esn-ecosystem-intro{ position:relative; z-index:1; text-align:center; }
.esn-ecosystem-intro .esn-section-title-lg,
.esn-ecosystem-intro .esn-section-sub-lg{ margin-left:auto; margin-right:auto; }
.esn-ecosystem-cards{
  position:relative; z-index:1; display:grid; grid-template-columns:repeat(5,1fr); gap:18px; margin-top:24px;
  max-width:1360px; margin-left:auto; margin-right:auto;
}
.esn-ecosystem-card{
  position:relative; display:flex; flex-direction:column; padding:26px 22px; border-radius:20px;
  border:1px solid var(--border-strong); background:var(--surface); overflow:hidden; color:inherit;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.esn-ecosystem-card:hover{ transform:translateY(-6px); border-color:rgba(34,211,238,0.4); box-shadow:0 20px 50px rgba(0,0,0,0.35); }
.esn-ecosystem-card-num{
  position:absolute; top:6px; right:14px; font-family:var(--font-display); font-weight:800; font-size:52px;
  color:rgba(255,255,255,0.04); line-height:1; z-index:0; transition:color .3s ease;
}
.esn-ecosystem-card:hover .esn-ecosystem-card-num{ color:rgba(34,211,238,0.08); }
.esn-ecosystem-card-icon{
  position:relative; z-index:1; width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.2); color:var(--cyan); margin-bottom:16px;
  transition:transform .3s ease;
}
.esn-ecosystem-card:hover .esn-ecosystem-card-icon{ transform:scale(1.08); }
.esn-ecosystem-card h3{ position:relative; z-index:1; font-size:18px; margin-bottom:8px; }
.esn-ecosystem-card p{ position:relative; z-index:1; font-size:13px; color:var(--muted); margin-bottom:14px; line-height:1.55; }
.esn-ecosystem-sublist{ position:relative; z-index:1; display:flex; flex-direction:column; gap:6px; margin-bottom:18px; flex:1; }
.esn-ecosystem-sublist li{ font-size:12px; color:var(--muted-2); padding-left:14px; position:relative; }
.esn-ecosystem-sublist li::before{ content:"·"; position:absolute; left:2px; color:var(--cyan); }
.esn-ecosystem-cta{ position:relative; z-index:1; display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:700; color:var(--cyan); margin-top:auto; }
.esn-ecosystem-cta span{ transition:transform .2s ease; }
.esn-ecosystem-card:hover .esn-ecosystem-cta span{ transform:translateX(4px); }
.esn-ecosystem-bottom-cta{
  text-align:center; margin-top:64px; padding:48px; border-radius:24px; border:1px solid var(--border-strong); background:var(--gradient-soft);
}
.esn-ecosystem-bottom-cta h3{ font-size:24px; margin-bottom:8px; }
.esn-ecosystem-bottom-cta p{ font-size:15px; color:var(--muted); margin-bottom:24px; }

/* ---------------------------------- services grid (glass hover) ---------------------------------- */
.esn-eyebrow-plain{
  display:block; font-family:var(--font-body); font-weight:700; font-size:12.5px;
  letter-spacing:.14em; text-transform:uppercase; color:var(--cyan); margin-bottom:16px;
}
.esn-section-title-lg{ font-size:clamp(28px,4.2vw,44px); line-height:1.15; margin-bottom:20px; max-width:760px; }
.esn-section-sub-lg{ font-size:16px; color:var(--muted); max-width:640px; margin-bottom:56px; }

.esn-service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.esn-service-card{
  position:relative; background:rgba(13,32,60,0.5); backdrop-filter:blur(10px);
  border:1px solid var(--border); border-radius:20px; padding:32px 28px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
  overflow:hidden;
}
.esn-service-card::before{
  content:""; position:absolute; inset:0; opacity:0; transition:opacity .35s ease;
  background:radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(34,211,238,0.12), transparent 60%);
  pointer-events:none;
}
.esn-service-card:hover{
  transform:translateY(-6px); border-color:rgba(63,198,255,0.4);
  background:rgba(18,42,76,0.65); box-shadow:0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(63,198,255,0.15) inset;
}
.esn-service-card:hover::before{ opacity:1; }
.esn-service-card.is-featured{
  border-color:rgba(34,211,238,0.55);
  box-shadow:0 0 0 1px rgba(34,211,238,0.25) inset, 0 0 40px rgba(34,211,238,0.12);
}
.esn-service-card-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.esn-service-icon{
  width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  color:var(--cyan); background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.2);
}
.esn-service-num{ font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--muted-2); }
.esn-service-card h3{ font-size:19px; margin-bottom:10px; }
.esn-service-card p{ font-size:14px; margin-bottom:18px; }
.esn-service-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.esn-tag-chip{
  font-size:11.5px; font-weight:600; color:var(--muted); background:rgba(255,255,255,0.04);
  border:1px solid var(--border-strong); border-radius:999px; padding:5px 12px;
}
.esn-service-link{
  display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:700; color:var(--cyan);
}
.esn-service-link span{ transition:transform .2s ease; }
.esn-service-card:hover .esn-service-link span{ transform:translateX(4px); }

/* ---------------------------------- interactive services (active-list) ---------------------------------- */
.esn-services-interactive{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; margin-top:20px;
}
.esn-services-list{ display:flex; flex-direction:column; }
.esn-service-row{
  border-top:1px solid var(--border); padding:26px 4px; cursor:pointer; transition:padding .3s ease;
}
.esn-service-row:last-child{ border-bottom:1px solid var(--border); }
.esn-service-row-head{ display:flex; align-items:center; gap:20px; }
.esn-service-row-num{
  font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--muted-2);
  transition:color .3s ease, transform .3s ease; min-width:28px;
}
.esn-service-row-icon-mobile{ display:none; color:var(--cyan); }
.esn-service-row-title{
  flex:1; font-size:22px; font-weight:700; color:var(--muted); margin:0; transition:color .3s ease, transform .3s ease;
}
.esn-service-row-arrow{
  font-size:20px; color:var(--cyan); opacity:0; transform:translateX(-8px);
  transition:opacity .3s ease, transform .3s ease;
}
.esn-service-row-body{
  max-height:0; overflow:hidden; opacity:0;
  transition:max-height .4s ease, opacity .3s ease, margin .4s ease;
}
.esn-service-row-body p{ font-size:14.5px; margin:14px 0 12px; max-width:440px; }
.esn-service-tags-mobile{ display:none; }
.esn-service-row.is-active{ padding:32px 4px; }
.esn-service-row.is-active .esn-service-row-num{ color:var(--cyan); transform:scale(1.15); }
.esn-service-row.is-active .esn-service-row-title{ color:var(--text); transform:translateX(6px); }
.esn-service-row.is-active .esn-service-row-arrow{ opacity:1; transform:translateX(0); }
.esn-service-row.is-active .esn-service-row-body{ max-height:160px; opacity:1; }

.esn-services-visual{
  position:sticky; top:120px; height:420px; border-radius:24px; border:1px solid var(--border);
  background:var(--surface); overflow:hidden;
}
.esn-services-visual-panel{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:18px; text-align:center; padding:40px; opacity:0; transform:scale(0.94);
  transition:opacity .5s ease, transform .5s ease; pointer-events:none;
}
.esn-services-visual-panel.is-active{ opacity:1; transform:scale(1); pointer-events:auto; }
.esn-services-visual-glow{
  position:absolute; top:-40%; left:50%; transform:translateX(-50%); width:340px; height:340px;
  background:var(--gradient); filter:blur(90px); opacity:.18; border-radius:50%;
}
.esn-services-visual-icon{
  position:relative; width:104px; height:104px; border-radius:26px; display:flex; align-items:center; justify-content:center;
  color:var(--cyan); background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.25);
}
.esn-services-visual-title{ position:relative; font-size:24px; font-weight:800; color:var(--text); margin:0; }
.esn-services-visual .esn-service-tags{ position:relative; justify-content:center; margin:0; }
.esn-services-progress{
  position:absolute; bottom:22px; left:0; right:0; display:flex; align-items:center; justify-content:center; gap:8px;
}
.esn-services-progress-dot{
  width:8px; height:8px; border-radius:50%; background:var(--border-strong); transition:all .3s ease; cursor:pointer;
}
.esn-services-progress-dot.is-active{ width:24px; border-radius:6px; background:var(--cyan); }

/* ---------------------------------- alternating service showcase ---------------------------------- */
.esn-showcase{ position:relative; display:flex; flex-direction:column; }
.esn-showcase-rail{
  position:sticky; top:50%; transform:translateY(-50%); z-index:5;
  float:right; margin-right:32px; display:flex; flex-direction:column; gap:14px;
  width:0; overflow:visible;
}
.esn-rail-dot{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border-strong);
  background:var(--surface); color:var(--muted-2); cursor:pointer; transition:all .3s ease;
  display:flex; align-items:center; justify-content:center;
}
.esn-rail-num{ font-family:var(--font-display); font-weight:700; font-size:11px; }
.esn-rail-dot.is-active{
  background:var(--gradient); border-color:transparent; color:#08080e;
  box-shadow:0 0 20px rgba(139,92,246,0.5); transform:scale(1.15);
}
@media (max-width:1200px){ .esn-showcase-rail{ display:none; } }

.esn-showcase-row{ padding:70px 0; border-bottom:1px solid var(--border); }
.esn-showcase-inner{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.esn-showcase-row.is-flipped .esn-showcase-inner{ direction:rtl; }
.esn-showcase-row.is-flipped .esn-showcase-inner > *{ direction:ltr; }
.esn-showcase-media{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-strong); }
.esn-showcase-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; }
.esn-showcase-icon-block{
  aspect-ratio:4/3; background:var(--gradient-soft); display:flex; align-items:center; justify-content:center;
}
.esn-showcase-icon-block span{ font-size:80px; }
.esn-showcase-num{
  display:block; font-family:var(--font-display); font-weight:800; font-size:15px; color:var(--cyan);
  letter-spacing:.1em; margin-bottom:14px;
}
.esn-showcase-text h3{ font-size:clamp(24px,3vw,34px); margin-bottom:16px; }
.esn-showcase-text p{ font-size:15.5px; margin-bottom:24px; }

/* ---------------------------------- why choose us ---------------------------------- */
.esn-why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.esn-why-item{ text-align:left; }
.esn-why-item strong{
  display:block; font-family:var(--font-display); font-weight:800; font-size:44px;
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:6px;
}
.esn-why-item h3{ font-size:19px; margin-bottom:10px; color:var(--text); }
.esn-why-item p{ font-size:14.5px; }

/* ---------------------------------- portfolio (large variant) ---------------------------------- */
.esn-portfolio-grid-lg{ grid-template-columns:repeat(2,1fr); }
.esn-portfolio-grid-lg .esn-portfolio-media{ aspect-ratio:16/10; }

/* ---------------------------------- FAQ accordion ---------------------------------- */
.esn-faq-list{ display:flex; flex-direction:column; gap:14px; }
.esn-faq-item{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden;
  transition:border-color .2s ease;
}
.esn-faq-item.is-open{ border-color:var(--border-strong); }
.esn-faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:none; padding:22px 26px; text-align:left; cursor:pointer;
  font-family:var(--font-body); font-weight:700; font-size:15.5px; color:var(--text);
}
.esn-faq-icon{
  flex-shrink:0; width:30px; height:30px; border-radius:50%; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--cyan);
  transition:transform .3s ease;
}
.esn-faq-item.is-open .esn-faq-icon{ transform:rotate(45deg); background:var(--gradient); color:#08080e; border-color:transparent; }
.esn-faq-answer{
  max-height:0; overflow:hidden; transition:max-height .35s ease;
}
.esn-faq-answer p{ padding:0 26px 24px; margin:0; font-size:14.5px; }

/* ---------------------------------- services page: problem → solution selector ---------------------------------- */
.esn-goal-list{ max-width:820px; margin:44px auto 0; display:flex; flex-direction:column; gap:14px; }
.esn-goal-item{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden;
  transition:border-color .2s ease;
}
.esn-goal-item.is-open{ border-color:rgba(34,211,238,0.4); }
.esn-goal-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:none; padding:26px 28px; text-align:left; cursor:pointer;
  font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--text);
}
.esn-goal-icon{
  flex-shrink:0; width:32px; height:32px; border-radius:50%; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; font-size:17px; color:var(--cyan);
  transition:transform .3s ease;
}
.esn-goal-item.is-open .esn-goal-icon{ transform:rotate(45deg); background:var(--gradient); color:#08080e; border-color:transparent; }
.esn-goal-answer{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.esn-goal-answer-inner{ padding:0 28px 28px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.esn-goal-solution{ margin:0; font-size:15px; color:var(--muted); font-weight:600; }

/* ---------------------------------- floating CTA ---------------------------------- */
.esn-floating-cta{
  position:fixed; right:28px; bottom:28px; z-index:90;
  display:flex; align-items:center; gap:10px; padding:16px 24px; border-radius:999px;
  background:var(--gradient); color:#08080e; font-weight:800; font-size:14px;
  box-shadow:0 14px 40px rgba(139,92,246,0.4); transition:transform .25s ease, opacity .3s ease;
}
.esn-floating-cta:hover{ transform:translateY(-4px); color:#08080e; }
.esn-floating-pulse{
  width:9px; height:9px; border-radius:50%; background:#08080e; position:relative;
}
.esn-floating-pulse::after{
  content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid #08080e;
  opacity:.5; animation:esn-pulse 1.8s ease-out infinite;
}
@keyframes esn-pulse{ 0%{ transform:scale(0.6); opacity:.6; } 100%{ transform:scale(1.8); opacity:0; } }

/* ---------------------------------- floating WhatsApp button ---------------------------------- */
.esn-whatsapp-float{
  position:fixed; z-index:91; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 34px rgba(37,211,102,0.45); transition:transform .25s ease, box-shadow .25s ease, opacity .3s ease;
}
.esn-whatsapp-float:hover{ transform:translateY(-4px) scale(1.05); color:#fff; box-shadow:0 18px 44px rgba(37,211,102,0.55); }
.esn-whatsapp-float::before{
  content:""; position:absolute; inset:0; border-radius:50%; background:#25D366;
  opacity:.55; animation:esn-wa-pulse 2.2s ease-out infinite;
}
.esn-whatsapp-float svg{ position:relative; z-index:1; }
@keyframes esn-wa-pulse{ 0%{ transform:scale(1); opacity:.55; } 100%{ transform:scale(1.6); opacity:0; } }
/* Default "right" stacks above the "Let's Talk" pill so the two never overlap;
   "left" sits on the opposite side at the same height as Let's Talk. */
.esn-whatsapp-float-right{ right:28px; bottom:100px; }
.esn-whatsapp-float-left{ left:28px; bottom:28px; }

/* ---------------------------------- premium: scroll progress bar ---------------------------------- */
.esn-scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:var(--gradient); z-index:9998; box-shadow:0 0 10px rgba(63,198,255,0.6);
  transition:width .08s linear;
}

/* ---------------------------------- premium: back-to-top button ---------------------------------- */
.esn-back-to-top{
  position:fixed; right:28px; bottom:28px; z-index:89; width:46px; height:46px; border-radius:50%;
  background:var(--surface); border:1px solid var(--border-strong); color:var(--text);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease, border-color .2s ease, color .2s ease;
}
.esn-back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.esn-back-to-top:hover{ border-color:var(--cyan); color:var(--cyan); }
/* Stacking with the other bottom-right floating elements (the homepage-only
   "Let's Talk" pill, and the optional WhatsApp button) so nothing overlaps:
   - Nothing else present: stays at the base bottom-right spot.
   - "Let's Talk" pill present (homepage) but no WhatsApp button: stack above the pill.
   - WhatsApp button on the right: move to the opposite (left) side entirely,
     clearing both the WhatsApp button and the "Let's Talk" pill at once. */
body:has(.esn-floating-cta):not(:has(.esn-whatsapp-float-right)) .esn-back-to-top{ bottom:100px; }
body:has(.esn-whatsapp-float-right) .esn-back-to-top{ left:28px; right:auto; bottom:28px; }

/* ---------------------------------- magic scroll story ---------------------------------- */
.esn-magic-story{ position:relative; background:var(--bg); overflow:hidden; }
.esn-magic-story-bg{ position:absolute; inset:0; width:100%; height:100%; opacity:.5; }
.esn-magic-story-inner{
  position:relative; z-index:1; min-height:60vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:44px;
  padding:120px 24px; text-align:center;
}
.esn-magic-line{
  font-family:var(--font-display); font-weight:800; font-size:clamp(28px,5vw,54px); line-height:1.2;
  color:var(--text); max-width:920px;
}
.esn-magic-final{
  background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent;
  font-size:clamp(32px,6.5vw,66px);
}
/* JS + GSAP present: converts to a true pinned, cross-fading cinematic sequence. Without JS, the four lines above simply stack and read top to bottom — still a coherent fallback. */
.esn-magic-story.esn-pinned-ready .esn-magic-story-inner{
  min-height:100vh; position:relative; display:block; padding:0 24px;
}
.esn-magic-story.esn-pinned-ready .esn-magic-line{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  margin:0 auto; padding:0 24px; width:100%;
}

/* ---------------------------------- premium: custom cursor ---------------------------------- */
body.esn-cursor-on{ cursor:none; }
body.esn-cursor-on a,
body.esn-cursor-on button,
body.esn-cursor-on input,
body.esn-cursor-on textarea,
body.esn-cursor-on select,
body.esn-cursor-on .esn-btn{ cursor:none; }
.esn-cursor-dot,.esn-cursor-ring{
  position:fixed; top:0; left:0; pointer-events:none; z-index:9999;
  border-radius:50%; transform:translate(-50%,-50%); will-change:transform;
}
.esn-cursor-dot{ width:6px; height:6px; background:var(--cyan); opacity:0; transition:opacity .2s ease; }
.esn-cursor-ring{
  width:34px; height:34px; border:1.5px solid var(--cyan); opacity:0;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .2s ease, width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
}
body.esn-cursor-ready .esn-cursor-dot,
body.esn-cursor-ready .esn-cursor-ring{ opacity:1; }
.esn-cursor-ring.is-hover{ width:52px; height:52px; background:rgba(63,198,255,0.1); border-color:var(--cyan); }
.esn-cursor-ring.is-click{ width:26px; height:26px; }
.esn-cursor-text{
  opacity:0; font-family:var(--font-display); font-weight:700; font-size:10.5px; letter-spacing:.04em;
  color:var(--cyan); white-space:nowrap; text-transform:uppercase; transition:opacity .2s ease;
}
.esn-cursor-ring.has-text{
  width:auto; height:auto; padding:14px 20px; background:rgba(8,8,14,0.85); backdrop-filter:blur(6px);
  border-color:var(--cyan); border-radius:999px;
}
.esn-cursor-ring.has-text .esn-cursor-text{ opacity:1; }
.esn-cursor-ring.has-text.is-hover{ width:auto; height:auto; }
@media (hover:none), (pointer:coarse){
  .esn-cursor-dot,.esn-cursor-ring{ display:none !important; }
  body.esn-cursor-on{ cursor:auto; }
  body.esn-cursor-on a,body.esn-cursor-on button,body.esn-cursor-on .esn-btn{ cursor:pointer; }
}

/* ---------------------------------- scroll reveal ---------------------------------- */
.esn-reveal{
  opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;
}
.esn-reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------------------------------- CTA banner ---------------------------------- */
.esn-cta-banner{
  padding:80px 0; position:relative; overflow:hidden;
}
.esn-cta-banner::before{
  content:""; position:absolute; inset:0; margin:0 24px; border-radius:var(--radius-lg);
  background:var(--gradient-soft); border:1px solid var(--border-strong);
}
.esn-cta-inner{
  position:relative; z-index:1; text-align:center; padding:64px 24px;
  display:flex; flex-direction:column; align-items:center; gap:26px;
}
.esn-cta-inner h2{ font-size:clamp(26px,4vw,40px); max-width:640px; }

/* ---------------------------------- contact ---------------------------------- */
.esn-contact-section .esn-eyebrow-plain,
.esn-contact-section .esn-section-title-lg{ text-align:left; }
.esn-contact-section > .esn-container:first-child{ margin-bottom:48px; }
.esn-contact-grid-v2{ display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:start; }
.esn-contact-info-card{
  background:var(--surface); border:1px solid var(--border-strong); border-radius:var(--radius-lg);
  padding:32px; display:flex; flex-direction:column; gap:26px;
}
.esn-contact-details-v2{ display:flex; flex-direction:column; gap:22px; }
.esn-contact-details-v2 li{ display:flex; align-items:flex-start; gap:14px; font-size:14.5px; color:var(--muted); line-height:1.55; }
.esn-contact-icon{ font-size:17px; flex-shrink:0; margin-top:1px; }
.esn-contact-details-v2 strong{ color:var(--text); display:block; }
.esn-contact-details-v2 a{ color:var(--muted); font-weight:600; }
.esn-contact-details-v2 a:hover{ color:var(--cyan); }
.esn-contact-map{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border-strong); aspect-ratio:16/11; }
.esn-contact-map iframe{ width:100%; height:100%; border:0; filter:grayscale(0.15) invert(0.92) contrast(0.9); }

.esn-contact-grid{ display:grid; grid-template-columns:.85fr 1fr; gap:60px; }
.esn-contact-info h2{ font-size:clamp(26px,3.4vw,36px); }
.esn-contact-details{ margin:28px 0; display:flex; flex-direction:column; gap:16px; }
.esn-contact-details li{ font-size:15px; }
.esn-contact-details span{ display:block; font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted-2); margin-bottom:2px; }
.esn-contact-details a{ color:var(--text); font-weight:600; }
.esn-contact-details a:hover{ color:var(--cyan); }

.esn-social-links{ display:flex; gap:10px; margin-top:8px; }
.esn-social-icon{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color:var(--text); font-size:14px; font-weight:700;
}
.esn-social-icon:hover{ background:var(--gradient); color:#08080e; border-color:transparent; }

.esn-form-card{
  background:var(--surface); border:1px solid var(--border-strong); border-radius:var(--radius-lg);
  padding:36px; box-shadow:var(--shadow-glow);
}
.esn-honeypot{ position:absolute; left:-9999px; opacity:0; pointer-events:none; }
.esn-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.esn-form-field{ margin-bottom:20px; }
.esn-form-field label{ display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:8px; }
.esn-form-field label span{ color:var(--danger); }
.esn-form-field input,.esn-form-field textarea,.esn-form-field select{
  width:100%; background:rgba(255,255,255,0.03); border:1px solid var(--border-strong);
  border-radius:var(--radius-sm); padding:13px 16px; color:var(--text); font-family:var(--font-body); font-size:14.5px;
  transition:border-color .2s ease;
}
.esn-form-field select{
  appearance:none; -webkit-appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%2322d3ee' stroke-width='1.5' fill='none'/></svg>");
  background-repeat:no-repeat; background-position:right 16px center;
}
.esn-form-field select option{ background:var(--surface-2); color:var(--text); }
.esn-form-field input:focus,.esn-form-field textarea:focus,.esn-form-field select:focus{ outline:none; border-color:var(--cyan); }
.esn-form-field textarea{ resize:vertical; min-height:120px; }
.esn-form-status{ margin-top:16px; font-size:13.5px; text-align:center; min-height:20px; }
.esn-form-status.is-success{ color:var(--cyan); }
.esn-form-status.is-error{ color:var(--danger); }

/* ---------------------------------- multi-step lead form ---------------------------------- */
.esn-form-steps-progress{ display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:28px; }
.esn-form-step-dot{
  width:8px; height:8px; border-radius:50%; background:var(--border-strong); transition:all .3s ease;
}
.esn-form-step-dot.is-active{ width:26px; border-radius:6px; background:var(--gradient); }
.esn-form-step-dot.is-done{ background:var(--cyan); }

.esn-form-step{ display:none; animation:esn-step-in .35s ease; }
.esn-form-step.is-active{ display:block; }
@keyframes esn-step-in{ from{ opacity:0; transform:translateX(12px); } to{ opacity:1; transform:translateX(0); } }

.esn-form-step-title{
  font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--text);
  margin:0 0 22px; text-align:center;
}
.esn-form-step-cards{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom:10px; }
.esn-step-card{
  padding:14px 22px; border-radius:12px; border:1px solid var(--border-strong); background:rgba(255,255,255,0.02);
  color:var(--text); font-family:var(--font-body); font-weight:600; font-size:14.5px; cursor:pointer;
  transition:all .2s ease;
}
.esn-step-card:hover{ border-color:var(--cyan); background:rgba(34,211,238,0.05); }
.esn-step-card.is-selected{
  border-color:var(--cyan); background:rgba(34,211,238,0.1); color:var(--cyan);
  box-shadow:0 0 0 1px rgba(34,211,238,0.3) inset;
}
.esn-form-step-actions{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:26px; }
.esn-form-step-actions-single{ justify-content:center; }
.esn-form-step-actions .esn-btn-primary{ margin-left:auto; }
.esn-form-step-textarea{ min-height:160px; }

.esn-form-success{ text-align:center; padding:20px 10px 4px; }
.esn-form-success-icon{
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px; display:flex; align-items:center; justify-content:center;
  background:var(--gradient); color:#08080e; font-size:28px; font-weight:800;
}
.esn-form-success h3{ font-family:var(--font-display); font-size:24px; margin-bottom:10px; }
.esn-form-success p{ color:var(--muted); font-size:15px; margin:0; }

/* ---------------------------------- footer ---------------------------------- */
.esn-footer{ position:relative; background:var(--bg-alt); border-top:1px solid var(--border); padding-top:80px; overflow:hidden; }
.esn-footer-glow{
  position:absolute; top:-200px; left:50%; transform:translateX(-50%);
  width:800px; height:400px; background:var(--gradient); filter:blur(160px); opacity:.12;
}
.esn-footer-top{ position:relative; z-index:1; display:grid; grid-template-columns:1.4fr .8fr .8fr .8fr; gap:50px; padding-bottom:56px; }
.esn-footer-brand p{ margin:18px 0 20px; font-size:14.5px; max-width:280px; }
.esn-footer-col h4{ font-size:14px; color:var(--text); margin-bottom:18px; letter-spacing:.03em; }
.esn-footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.esn-footer-col a{ color:var(--muted); font-size:14.5px; }
.esn-footer-col a:hover{ color:var(--cyan); }
.esn-footer-contact a{ color:var(--muted); }
.esn-footer-bottom{
  position:relative; z-index:1; border-top:1px solid var(--border); padding:26px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
}
.esn-footer-bottom p{ margin:0; font-size:13px; color:var(--muted-2); }
.esn-heart{ color:var(--danger); }

/* footer v2 — 4-column layout matching the reference design */
.esn-footer-v2{ padding:64px 0 0; }
.esn-footer-grid-v2{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px;
}
.esn-footer-brand-row{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.esn-footer-logo-mark{ display:flex; align-items:center; }
.esn-footer-logo-mark img{ max-height:28px; width:auto; }
.esn-footer-logo-mark-fallback{
  width:26px; height:26px; border-radius:7px; flex-shrink:0;
  background:linear-gradient(140deg, var(--cyan), #1f6fa8);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:14px; color:#08080e;
}
.esn-footer-brand-name{ font-family:var(--font-display); font-weight:700; font-size:16px; color:var(--text); }
.esn-footer-brand-v2 p{ font-size:14px; color:var(--muted); line-height:1.7; max-width:300px; margin:0; }
.esn-footer-col-v2 h4{ font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--text); margin-bottom:20px; }
.esn-footer-col-v2 ul{ display:flex; flex-direction:column; gap:13px; }
.esn-footer-col-v2 a{ color:var(--muted); font-size:14px; }
.esn-footer-col-v2 a:hover{ color:var(--cyan); }
.esn-footer-bottom-v2{
  border-top:1px solid var(--border); padding:24px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.esn-footer-bottom-v2 p{ margin:0; font-size:13.5px; color:var(--muted-2); }
.esn-social-links-v2{ display:flex; gap:10px; }
.esn-social-icon-v2{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color:var(--muted);
  transition:all .2s ease;
}
.esn-social-icon-v2:hover{ border-color:var(--cyan); color:var(--cyan); background:rgba(34,211,238,0.06); }

/* ---------------------------------- 404 ---------------------------------- */
.esn-404{ min-height:80vh; display:flex; align-items:center; position:relative; overflow:hidden; }
.esn-404-inner{ position:relative; z-index:1; text-align:center; }
.esn-404-inner h1{ font-size:clamp(30px,5vw,50px); }

/* ---------------------------------- pagination ---------------------------------- */
.esn-pagination{ margin-top:56px; display:flex; justify-content:center; }
.esn-pagination ul{ display:flex; gap:8px; }
.esn-pagination a,.esn-pagination span{
  display:flex; align-items:center; justify-content:center; min-width:42px; height:42px;
  border-radius:10px; border:1px solid var(--border-strong); color:var(--muted); font-size:14px; font-weight:700;
}
.esn-pagination .current{ background:var(--gradient); color:#08080e; border-color:transparent; }
.esn-pagination a:hover{ border-color:var(--cyan); color:var(--cyan); }

/* ---------------------------------- comments ---------------------------------- */
.esn-comments{ margin-top:60px; border-top:1px solid var(--border); padding-top:44px; }
.esn-comments-title{ font-size:22px; margin-bottom:24px; }
.esn-comment-list{ display:flex; flex-direction:column; gap:20px; margin-bottom:36px; }
.esn-comment-list .comment-body{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:20px 24px;
}
.esn-comments-closed{ color:var(--muted-2); font-size:14px; }

/* ============================== RESPONSIVE ============================== */
@media (max-width:1024px){
  .esn-about-grid,.esn-contact-grid{ grid-template-columns:1fr; gap:44px; }
  .esn-services-grid,.esn-portfolio-grid,.esn-testimonials-grid,.esn-blog-grid,.esn-blog-grid-full{ grid-template-columns:repeat(2,1fr); }
  .esn-process-grid{ grid-template-columns:repeat(2,1fr); }
  .esn-stats-grid{ grid-template-columns:repeat(2,1fr); gap:36px; }
  .esn-project-grid{ grid-template-columns:1fr; }
  .esn-project-meta{ position:static; flex-direction:row; flex-wrap:wrap; }
  .esn-footer-top{ grid-template-columns:1fr 1fr; }
  .esn-footer-grid-v2{ grid-template-columns:1fr 1fr; gap:36px; }
  .esn-showcase-inner{ grid-template-columns:1fr; gap:30px; }
  .esn-showcase-row.is-flipped .esn-showcase-inner{ direction:ltr; }
  .esn-why-grid{ grid-template-columns:1fr; gap:36px; }
  .esn-portfolio-grid-lg{ grid-template-columns:1fr; }
  .esn-hero-split{ grid-template-columns:1fr; gap:40px; text-align:center; }
  .esn-hero-content{ text-align:center; order:1; }
  .esn-hero-eyebrow{ justify-content:center; }
  .esn-hero-actions{ justify-content:center; }
  .esn-hero-sub{ margin-left:auto; margin-right:auto; }
  .esn-hero-visual{ order:2; }
  .esn-hero-content{ text-align:center; }
  .esn-hero-content .esn-hero-eyebrow,.esn-hero-content .esn-hero-actions{ justify-content:center; }
  .esn-hero-content .esn-hero-sub{ margin-left:auto; margin-right:auto; }
  .esn-hero-visual{ order:-1; min-height:280px; }
  .esn-services-hero{ padding:130px 0 60px; min-height:auto; }
  .esn-services-hero-grid{ grid-template-columns:1fr; gap:50px; text-align:center; }
  .esn-services-hero-content{ max-width:640px; margin:0 auto; }
  .esn-services-hero-content .esn-hero-actions,
  .esn-services-hero-content .esn-hero-trust{ justify-content:center; }
  .esn-services-hero-desc{ margin-left:auto; margin-right:auto; }
  .esn-services-hero-visual{ order:-1; min-height:320px; }
  .esn-service-orbit{ max-width:300px; }
  .esn-constellation{ max-width:300px; height:300px; }
  .esn-story-grid{ grid-template-columns:1fr; gap:36px; }
  .esn-split-panels{ flex-direction:column; }
  .esn-split-panel:hover{ flex:1; }
  .esn-editorial-project,.esn-editorial-project-rev{ grid-template-columns:1fr; gap:24px; }
  .esn-editorial-project-rev .esn-editorial-project-media,.esn-editorial-project-rev .esn-editorial-project-info{ order:0; }
  .esn-team-grid{ grid-template-columns:1fr 1fr; }
  .esn-think-header{ grid-template-columns:1fr; gap:24px; }
  .esn-think-nodes{ grid-template-columns:repeat(3,1fr); gap:24px 14px; }
  .esn-think-line{ display:none; }
  .esn-ecosystem-wrap{ grid-template-columns:1fr; }
  .esn-ecosystem-panel-build,.esn-ecosystem-panel-teach{ border-radius:20px; border:1px solid var(--border-strong); }
  .esn-ecosystem-center{ border:1px solid var(--border-strong); border-radius:20px; width:100%; padding:20px; flex-direction:row; }
  .esn-ecosystem-wrap .esn-ecosystem-panel:hover{ transform:none; }
  .esn-location-header{ grid-template-columns:1fr; gap:28px; text-align:center; }
  .esn-location-intro-col{ display:flex; flex-direction:column; align-items:center; }
  .esn-story-timeline{ position:static; flex-direction:row; flex-wrap:wrap; gap:16px 26px; border-left:none; padding-left:0; border-top:2px solid var(--border-strong); padding-top:24px; }
  .esn-story-stage{ padding-left:0; }
  .esn-story-stage-dot{ position:static; display:inline-block; margin-right:8px; vertical-align:middle; }
  .esn-ecosystem-cards{ grid-template-columns:1fr 1fr; }
  .esn-hero-float{ display:none; }
  .esn-hero-stat-badge{ padding:10px 14px; }
  .esn-training-hero{ min-height:auto; padding:130px 0 60px; }
  .esn-training-hero-split{ grid-template-columns:1fr; gap:40px; }
  .esn-training-hero-visual{ height:280px; order:-1; }
  .esn-training-stats-grid{ grid-template-columns:repeat(2,1fr); gap:28px; }
  .esn-roadmap-wrap{ padding-left:56px; }
  .esn-roadmap-dot{ left:-56px; }
  .esn-experience-grid{ grid-template-columns:1fr 1fr; gap:18px; }
  .esn-weeks-grid{ grid-template-columns:1fr 1fr; }
  .esn-why-compare-grid{ grid-template-columns:1fr; gap:20px; }
  .esn-who-grid{ grid-template-columns:1fr 1fr; }
  .esn-batch-info-grid{ grid-template-columns:1fr 1fr; }
  .esn-success-grid{ grid-template-columns:1fr; }
  .esn-gallery-slide{ height:280px; }
  .esn-gallery-slide img{ max-width:400px; }
  .esn-service-grid{ grid-template-columns:repeat(2,1fr); }
  .esn-featured-work-grid{ grid-template-columns:1fr 1fr; }
  .esn-industries-grid{ grid-template-columns:1fr 1fr; }
  .esn-services-interactive{ grid-template-columns:1fr; gap:36px; }
  .esn-services-visual{ position:relative; top:0; order:-1; height:320px; }
  .esn-contact-grid-v2{ grid-template-columns:1fr; gap:36px; }
  .esn-training-grid{ grid-template-columns:1fr; gap:40px; }
  .esn-training-detail-grid{ grid-template-columns:1fr; gap:36px; }
  .esn-training-detail-main .esn-training-checklist{ grid-template-columns:1fr; }
  .esn-training-visual{ order:-1; }
  .esn-timeline{ flex-direction:column; gap:36px; padding-top:0; }
  .esn-timeline-line{ display:none; }
  .esn-timeline-step{ transform:translateY(-16px); padding-left:44px; }
  .esn-timeline.is-visible .esn-timeline-step{ transform:translateY(0); }
  .esn-timeline-dot{ top:0; left:0; }
  .esn-testimonial-item{ flex-basis:300px; width:300px; }
}
@media (max-width:840px){
  .esn-nav{ display:none; }
  .esn-header-actions .esn-btn-sm{ display:none; }
  .esn-menu-toggle{ display:flex; }
}
@media (max-width:640px){
  .esn-section{ padding:70px 0; }
  .esn-services-grid,.esn-portfolio-grid,.esn-testimonials-grid,.esn-blog-grid,.esn-blog-grid-full,.esn-process-grid{ grid-template-columns:1fr; }
  .esn-service-grid{ grid-template-columns:1fr; }
  .esn-featured-work-grid{ grid-template-columns:1fr; }
  .esn-industries-grid{ grid-template-columns:1fr; }
  .esn-journeys-grid{ grid-template-columns:1fr; }
  .esn-think-nodes{ grid-template-columns:1fr; text-align:left; }
  .esn-think-node{ display:flex; align-items:flex-start; gap:16px; text-align:left; padding:0; }
  .esn-think-node-icon{ margin:0; flex-shrink:0; width:44px; height:44px; }
  .esn-globe-visual{ margin-bottom:36px; }
  .esn-training-stats-grid{ grid-template-columns:1fr 1fr; }
  .esn-services-hero-heading{ font-size:clamp(34px,9vw,48px); }
  .esn-service-orbit{ max-width:240px; }
  .esn-orbit-node{ padding:7px 12px; }
  .esn-orbit-node-title{ font-size:10.5px; }
  .esn-orbit-node-sub{ display:none; }
  .esn-orbit-center{ width:60px; height:60px; }
  .esn-ecosystem-cards{ grid-template-columns:1fr; }
  .esn-ecosystem-bottom-cta{ padding:32px 22px; }
  .esn-experience-grid{ grid-template-columns:1fr; }
  .esn-weeks-grid{ grid-template-columns:1fr; }
  .esn-who-grid{ grid-template-columns:1fr; }
  .esn-batch-info-grid{ grid-template-columns:1fr; }
  .esn-gallery-scroll{ padding-left:20px; padding-right:20px; }
  .esn-gallery-slide{ height:220px; }
  .esn-gallery-slide img{ max-width:280px; }
  .esn-skill-card{ padding:8px 12px; font-size:11.5px; gap:6px; }
  .esn-skill-card-icon{ font-size:13px; }
  .esn-skill-card:nth-child(9),.esn-skill-card:nth-child(10){ display:none; }
  /* Interactive services becomes horizontally swipeable self-contained cards — no hover state to rely on. */
  .esn-services-visual{ display:none; }
  .esn-services-list{
    display:flex; flex-direction:row; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px;
    padding-bottom:10px; margin:0 -20px; padding-left:20px; padding-right:20px;
    -webkit-overflow-scrolling:touch;
  }
  .esn-service-row{
    flex:0 0 84%; scroll-snap-align:start; border:1px solid var(--border) !important; border-radius:20px;
    background:var(--surface); padding:24px 20px !important;
  }
  .esn-service-row-icon-mobile{
    display:flex; width:38px; height:38px; border-radius:10px; align-items:center; justify-content:center;
    background:rgba(34,211,238,0.08); border:1px solid rgba(34,211,238,0.2); flex-shrink:0;
  }
  .esn-service-row-title{ font-size:17px; color:var(--text) !important; }
  .esn-service-row-arrow{ display:none; }
  .esn-service-row-body{ max-height:none !important; opacity:1 !important; margin-top:10px; }
  .esn-service-tags-mobile{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
  .esn-service-row-head{ gap:14px; }
  .esn-service-row-title{ font-size:16px; }
  .esn-trust-heading p{ font-size:11px; }
  .esn-stats-grid{ grid-template-columns:1fr 1fr; }
  .esn-form-row{ grid-template-columns:1fr; }
  .esn-footer-top{ grid-template-columns:1fr; }
  .esn-footer-grid-v2{ grid-template-columns:1fr; gap:32px; }
  .esn-footer-bottom-v2{ flex-direction:column; align-items:flex-start; }
  .esn-hero{ min-height:auto; padding:140px 0 80px; }
  .esn-about-badge{ position:static; margin-top:-40px; margin-left:20px; display:inline-block; }
  .esn-floating-cta{ right:16px; bottom:16px; padding:14px 18px; }
  .esn-whatsapp-float{ width:50px; height:50px; }
  .esn-whatsapp-float-right{ right:16px; bottom:80px; }
  .esn-whatsapp-float-left{ left:16px; bottom:16px; }
  .esn-back-to-top{ width:40px; height:40px; right:16px; bottom:16px; }
  body:has(.esn-floating-cta):not(:has(.esn-whatsapp-float-right)) .esn-back-to-top{ bottom:78px; }
  body:has(.esn-whatsapp-float-right) .esn-back-to-top{ left:16px; right:auto; bottom:16px; }
  .esn-floating-text{ display:none; }
  .esn-showcase-row{ padding:44px 0; }
  .esn-faq-question{ padding:18px 20px; font-size:14.5px; }
  .esn-goal-question{ padding:20px; font-size:16px; }
  .esn-goal-answer-inner{ padding:0 20px 22px; }
}

@media (prefers-reduced-motion: reduce){
  .esn-skill-card{ animation:none; }
  .esn-constellation-node{ animation:none; }
  .esn-orbit-ring,.esn-orbit-node{ animation:none; }
  *{ scroll-behavior:auto !important; }
}
