:root {
  --esh-bg: #050a11;
  --esh-panel: #0d131b;
  --esh-panel-2: #111a23;
  --esh-line: rgba(255,255,255,.1);
  --esh-green: #7dec6c;
  --esh-green-2: #34c759;
  --esh-gold: #f9c332;
  --esh-orange: #f39a22;
  --esh-muted: rgba(255,255,255,.64);
}

.esh-home {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(56,189,248,.12), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(249,195,50,.1), transparent 26%),
    radial-gradient(circle at 18% 20%, rgba(45,212,105,.12), transparent 28%),
    var(--esh-bg);
  color: #f7fafc;
  overflow: hidden;
}

.esh-shell {
  width: min(1540px, calc(100% - 24px));
  margin: 0 auto;
}

.esh-hero {
  min-height: auto;
  padding: 4.7rem 0 1.25rem;
  display: flex;
  align-items: center;
  position: relative;
}

.esh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34,197,94,0.08) 0%, transparent 70%);
}

.esh-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: min(920px, 80vw);
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(34,197,94,.1), rgba(249,195,50,.055), transparent 70%);
  filter: blur(18px);
  opacity: .9;
  pointer-events: none;
}

.esh-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: start;
}

.esh-pill {
  display: inline-flex;
  align-items: center;
  gap: .58rem;
  min-height: 36px;
  padding: .45rem .95rem;
  border: 1px solid rgba(91,224,116,.36);
  border-radius: 999px;
  background: rgba(45,212,105,.08);
  color: #93f59e;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.esh-pill::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: var(--esh-green);
  box-shadow: 0 0 18px rgba(125,236,108,.9);
}

.esh-hero-title {
  max-width: 980px;
  margin: .8rem 0 .7rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.7vw, 4.35rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
}

.esh-hero-title > span {
  display: block;
}

.esh-hero-title .green { color: var(--esh-green); }
.esh-hero-title .gold { color: var(--esh-gold); }
.esh-hero-title .white { color: #f3f4f6; }
.esh-hero-title .brand { color: var(--esh-gold); }
.esh-hero-title .brand-mark { color: var(--esh-green); }
.esh-hero-brand {
  display: inline;
  white-space: nowrap;
  color: var(--esh-gold);
}

.esh-lead {
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-size: clamp(.9rem, 1vw, 1.02rem);
  line-height: 1.6;
}

.esh-ai-search {
  display: flex;
  align-items: center;
  width: min(100%, 560px);
  min-height: 66px;
  margin-top: 1.2rem;
  padding: .55rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.esh-ai-search input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 .9rem;
  font-weight: 800;
}

.esh-ai-search input::placeholder {
  color: rgba(255,255,255,.42);
}

.esh-ai-search button,
.esh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  border: 0;
  border-radius: 13px;
  padding: 0 1.05rem;
  background: linear-gradient(135deg, var(--esh-green), var(--esh-orange));
  color: #07110c;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(243,154,34,.22);
  white-space: nowrap;
}

.esh-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.05rem;
}

.esh-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .42rem .72rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.esh-showcase {
  position: relative;
  border: 1px solid rgba(255,255,255,.2);
  width: 100%;
  margin: 0 auto;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(34,197,94,.18), transparent 34%),
    radial-gradient(circle at 78% 6%, rgba(249,132,35,.18), transparent 34%),
    linear-gradient(135deg, rgba(29,61,44,.92), rgba(77,64,30,.62) 46%, rgba(6,13,22,.84));
  padding: .7rem;
  box-shadow: 0 28px 120px rgba(125,236,108,.16), 0 0 70px rgba(249,132,35,.08) inset;
  overflow: hidden;
}

.esh-showcase::after {
  content: "";
  position: absolute;
  inset: 20% -22% -18% 44%;
  background: radial-gradient(circle, rgba(249,132,35,.22), rgba(34,197,94,.14), transparent 62%);
  pointer-events: none;
}

.esh-feature-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .42rem .65rem .7rem;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 800;
}

.esh-feature-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(210px, 23vw, 330px);
  min-height: clamp(240px, 26vw, 325px);
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15,23,42,0.14);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.esh-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.38);
  box-shadow: 0 28px 50px rgba(15,23,42,0.18);
}

.esh-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(15,23,42,0.04), transparent 46%);
  transform: translateX(-120%);
  animation: eshCardShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.esh-feature-media,
.esh-card-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248,250,252,0.9), rgba(241,245,249,0.95));
}

.esh-feature-media {
  height: clamp(130px, 15.5vw, 195px);
  width: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(248,250,252,0.9), rgba(241,245,249,0.95));
}

.esh-feature-media img,
.esh-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esh-initial {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 6rem);
  font-weight: 900;
  color: #fff;
}

.esh-feature-body {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.esh-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: #f9c332;
  color: #091814;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.esh-feature-media .esh-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.esh-feature-title {
  display: block;
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.25vw, 1.45rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #111827;
  text-shadow: 0 1px 2px rgba(17,24,39,.08);
  max-height: 3.4rem;
  overflow: hidden;
}

.esh-feature-title .esh-highlight-green {
  color: #16a34a;
}

.esh-feature-title .esh-highlight-orange {
  color: #d97706;
}

.esh-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  margin-top: auto;
}

.esh-meta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.05);
  color: #475569;
  font-size: .72rem;
  font-weight: 700;
}

.esh-order {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .38rem .78rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #f59e0b);
  color: #08120a;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.esh-feature-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.esh-feature-track {
  display: flex;
  gap: .8rem;
  width: max-content;
  animation: eshHeroRail 42s linear infinite;
  will-change: transform;
}

.esh-feature-slider:hover .esh-feature-track {
  animation-play-state: paused;
}

@keyframes eshHeroRail {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - .4rem)); }
}

@keyframes eshCardShine {
  0%, 62% { transform: translateX(-120%); opacity: 0; }
  74% { opacity: .8; }
  100% { transform: translateX(120%); opacity: 0; }
}

.esh-hero-copy {
  width: min(100%, 1480px);
  max-width: 1480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  isolation: isolate;
  padding: clamp(.75rem, 1.8vw, 1.35rem) clamp(1rem, 2.5vw, 2.5rem);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.09), transparent 21%, rgba(249,195,50,.16) 50%, transparent 72%, rgba(125,236,108,.08)),
    radial-gradient(circle at 14% 6%, rgba(34,197,94,.22), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(249,195,50,.24), transparent 32%),
    linear-gradient(135deg, rgba(18,34,29,.92), rgba(7,13,22,.97));
  border: 1px solid rgba(125,236,108,.22);
  box-shadow:
    0 34px 120px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 90px rgba(34,197,94,.08) inset,
    0 0 80px rgba(249,195,50,.06);
  overflow: hidden;
}

.esh-hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  transform: translateX(-120%);
  animation: eshHeroShine 6s ease-in-out infinite;
}

.esh-hero-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -26%;
  z-index: -1;
  width: 72%;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,224,132,.18), rgba(34,197,94,.11), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.esh-hero-copy .esh-pill {
  min-height: 28px;
  padding: .3rem .8rem;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(34,197,94,.08);
  margin-bottom: .5rem;
}

.esh-hero-copy .esh-pill::before {
  width: .4rem;
  height: .4rem;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

.esh-hero-copy .esh-hero-title {
  font-family: "Outfit", var(--font-display), "Syne", sans-serif;
  font-weight: 900;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.1;
  text-wrap: balance;
  text-shadow: 0 18px 45px rgba(0,0,0,.22);
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.esh-highlight-green {
  color: #7dec6c;
  font-weight: 800;
}

.esh-highlight-orange {
  color: #f9c332;
  font-weight: 800;
}

.esh-title-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: heroLineIn 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.esh-title-line:nth-child(1) { animation-delay: .1s; }
.esh-title-line:nth-child(2) { animation-delay: .25s; }

.esh-title-line.gold {
  color: transparent;
  background: linear-gradient(90deg, #f9c332, #ffe085, #f9c332);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: heroLineIn 700ms cubic-bezier(0.16, 1, 0.3, 1) .1s forwards, shimmer 3s ease-in-out infinite;
  filter: drop-shadow(0 16px 38px rgba(249,195,50,.24));
}

.esh-title-line .accent-green {
  color: transparent;
  background: linear-gradient(90deg, #f9c332, #ffe085, #f9c332);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.esh-hero-copy .esh-lead {
  font-family: "Plus Jakarta Sans", var(--font-body), sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn 600ms ease .45s forwards;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.esh-hero-copy .esh-lead:first-of-type {
  color: rgba(255,255,255,.98);
}

.esh-cta-card p {
  font-family: "Plus Jakarta Sans", var(--font-body), sans-serif;
  font-size: 1.7rem;
  line-height: 1.45;
  color: rgba(255,255,255,.94);
  margin: 0.85rem 0 0;
}

.esh-hero-copy .esh-ai-search {
    width: min(100%, 560px);
    min-height: 48px;
    margin-top: .85rem;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(16px);
    transition: border-color .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), background .3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: heroFadeIn 600ms ease .55s forwards;
    box-shadow:
      0 18px 45px rgba(0,0,0,.22),
      inset 0 1px 0 0 rgba(255,255,255,.08);
  }

  .esh-hero-copy .esh-ai-search:focus-within {
    border-color: rgba(125,236,108,0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
      0 20px 50px rgba(0,0,0,.35),
      0 0 25px rgba(125,236,108,0.15),
      inset 0 1px 0 0 rgba(255,255,255,.08);
  }

  .esh-hero-copy .esh-ai-search input {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    padding: 0 .8rem;
  }

  .esh-hero-copy .esh-ai-search button {
    min-height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, #7dec6c, #16A34A);
    color: #050a11;
    font-family: "Outfit", sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 0 1.2rem;
    box-shadow: 0 4px 12px rgba(125,236,108,.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .esh-hero-copy .esh-ai-search button:hover {
    background: linear-gradient(135deg, #a3f399, #22c55e);
    color: #050a11;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(125,236,108,0.35);
  }

  .esh-hero-copy .esh-ai-search button:hover span {
    transform: translateX(3px);
  }

.esh-hero-copy .esh-chip-row {
  gap: 6px;
  justify-content: center;
  margin-top: .8rem;
}

.esh-hero-copy .esh-chip {
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .72rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.2s ease;
  animation: chipIn 420ms ease forwards;
}

.esh-hero-copy .esh-chip:hover {
  background: rgba(125,236,108,0.08);
  border-color: rgba(125,236,108,0.3);
  color: #93f59e;
  transform: translateY(-1.5px);
}

.esh-hero-copy .esh-chip:nth-child(1) { animation-delay: .7s; }
.esh-hero-copy .esh-chip:nth-child(2) { animation-delay: .75s; }
.esh-hero-copy .esh-chip:nth-child(3) { animation-delay: .8s; }
.esh-hero-copy .esh-chip:nth-child(4) { animation-delay: .85s; }
.esh-hero-copy .esh-chip:nth-child(5) { animation-delay: .9s; }
.esh-hero-copy .esh-chip:nth-child(6) { animation-delay: .95s; }
.esh-hero-copy .esh-chip:nth-child(7) { animation-delay: 1.0s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .4; }
}

@keyframes shimmer {
  0% { background-position: 0%; }
  50% { background-position: 100%; }
  100% { background-position: 0%; }
}

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes chipIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes eshHeroShine {
  0%, 56% { transform: translateX(-120%); opacity: 0; }
  72% { opacity: .85; }
  100% { transform: translateX(120%); opacity: 0; }
}

.esh-empty-showcase {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  width: 100%;
  min-height: 200px;
  box-sizing: border-box;
}

.esh-empty-showcase h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 .25rem;
}

.esh-empty-showcase p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 240px;
  line-height: 1.4;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.esh-cta-section {
  padding: 1.4rem 0 1rem;
  background: transparent;
  position: relative;
  z-index: 10;
}

.esh-cta-card {
  padding: 1.2rem 1.4rem;
  max-width: 100%;
  border: 1px solid rgba(125,236,108,.25);
  border-radius: 24px;
  background: rgba(3, 11, 18, 0.75);
}

.esh-cta-card-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@keyframes eshColorFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.esh-animated-gradient-text {
  background: linear-gradient(120deg, #7dec6c 0%, #ffffff 50%, #f59e0b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: eshColorFlow 6s linear infinite;
}

.esh-title-line.esh-animated-gradient-text {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(120deg, #7dec6c 0%, #ffffff 50%, #f59e0b 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.esh-title-line.esh-animated-gradient-text:nth-child(1) {
  animation: heroLineIn 700ms cubic-bezier(0.16, 1, 0.3, 1) .1s forwards, eshColorFlow 6s linear infinite !important;
}

.esh-title-line.esh-animated-gradient-text:nth-child(2) {
  animation: heroLineIn 700ms cubic-bezier(0.16, 1, 0.3, 1) .25s forwards, eshColorFlow 6s linear infinite !important;
}

.esh-btn-grad-green-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, #16a34a 0%, #f59e0b 100%);
  border: none;
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.esh-btn-grad-green-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
  background: linear-gradient(135deg, #15803d 0%, #ea580c 100%);
}

.esh-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 0;
  text-align: center;
}

.esh-banner-cta .esh-pill {
  min-height: auto;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  margin-bottom: 0;
  background: rgba(125,236,108,.18);
  border-color: rgba(125,236,108,.45);
}

.esh-banner-cta .esh-banner-text {
  max-width: 760px;
  width: 100%;
}

.esh-banner-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.esh-banner-btn-container .esh-btn-primary {
  min-width: 260px;
}

.esh-banner-btn-container .esh-btn-primary {
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  min-height: auto;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.esh-ad-zone {
  position: relative;
  padding: 0 0 3.2rem;
  background:
    radial-gradient(circle at 14% 0%, rgba(34,197,94,.11), transparent 32%),
    radial-gradient(circle at 84% 8%, rgba(249,195,50,.12), transparent 32%),
    linear-gradient(180deg, #07110e 0%, #081620 100%);
}

.esh-ad-board {
  overflow: hidden;
  border: 1px solid rgba(125,236,108,.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(12,38,24,.96), rgba(18,24,31,.96)),
    #07110e;
  box-shadow: 0 28px 90px rgba(0,0,0,.32), 0 0 70px rgba(34,197,94,.08) inset;
}

.esh-ad-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .95rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.esh-ad-head h2 {
  margin: .35rem 0 0;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.esh-ad-head p {
  max-width: 720px;
  margin: .35rem 0 0;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.55;
}

.esh-ad-rail {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .85rem;
}

.esh-ad-rail::-webkit-scrollbar {
  height: 8px;
}

.esh-ad-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(125,236,108,.35);
}

.esh-ad-card {
  position: relative;
  flex: 0 0 min(360px, 78vw);
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #10161d;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.esh-ad-card:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(125,236,108,.42);
}

.esh-ad-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34,197,94,.24), transparent 38%),
    radial-gradient(circle at 82% 10%, rgba(249,195,50,.2), transparent 35%),
    linear-gradient(135deg, rgba(37,68,48,.9), rgba(66,54,28,.8), rgba(12,17,24,.98));
}

.esh-ad-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: .85rem;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.16) 38%, rgba(0,0,0,.88));
}

.esh-ad-title {
  max-width: 94%;
  margin: .7rem 0 .4rem;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.25vw, 1.75rem);
  line-height: 1;
}

.esh-ad-subtitle {
  max-width: 92%;
  margin: 0 0 .85rem;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  line-height: 1.45;
}

.esh-ad-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.esh-ad-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--esh-green);
  color: #07110c;
  font-size: .82rem;
  font-weight: 950;
}

.esh-ad-city {
  color: rgba(255,255,255,.58);
  font-size: .8rem;
  font-weight: 900;
}

.esh-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(34,197,94,.11), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(249,132,35,.1), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(56,189,248,.08), transparent 42%),
    linear-gradient(180deg, #071812 0%, #0a1420 48%, #07110e 100%);
}

.esh-section.alt {
  background:
    radial-gradient(circle at 80% 0%, rgba(249,195,50,.13), transparent 34%),
    radial-gradient(circle at 10% 26%, rgba(34,197,94,.12), transparent 34%),
    linear-gradient(135deg, #0b1f18 0%, #101821 54%, #0b1019 100%);
}

.esh-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.esh-section-title {
  max-width: 820px;
  margin: .65rem 0 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.esh-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .55rem .85rem;
  border: 1px solid var(--esh-green-2);
  border-radius: 11px;
  color: var(--esh-green);
  font-size: .85rem;
  font-weight: 850;
}

.esh-business-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.esh-business-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 480px; /* fixed height on desktop */
}

@media (max-width: 1600px) {
  .esh-business-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .esh-business-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .esh-business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.esh-business-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 168, 37, 0.35);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.esh-card-media {
  position: relative;
  height: 240px; /* exactly 50% of the card height */
  aspect-ratio: unset;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fdf6 0%, #eff8ff 100%);
  min-height: 240px;
}

.esh-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.esh-business-card:hover .esh-card-media img {
  transform: scale(1.05);
}

.esh-card-body {
  padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* reduced gap to remove useless spaces */
  flex-grow: 1;
  justify-content: space-between;
}

.esh-card-kind {
  font-size: 0.76rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.esh-card-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.15;
  max-height: 2.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.esh-card-description {
  color: #394152;
  font-size: 0.84rem;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.esh-card-price {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 900;
  color: #15803d;
  margin: 0;
}

.esh-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.14);
  color: #dc6803;
  font-size: 0.88rem;
  font-weight: 800;
  width: fit-content;
  margin-top: 0.25rem;
}

.esh-card-action:hover {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.esh-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: #475569;
  font-size: 0.82rem;
  margin-top: 0.45rem;
}

.esh-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.esh-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.esh-page-btn.active {
  background: linear-gradient(135deg,#7dec6c,#f59e0b);
  color: #06120a;
}

.esh-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.esh-app-tile {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 12px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
  color: #1e293b !important;
}

.esh-app-tile:hover {
  border-color: var(--app-color, var(--color-primary)) !important;
  background: #ffffff !important;
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.esh-app-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.esh-app-tile strong {
  color: #0f172a !important;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.esh-app-tile span:not(.esh-app-icon) {
  color: #475569 !important;
  font-size: 0.82rem;
  line-height: 1.4;
}

.esh-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.esh-cta-actions .esh-btn-primary,
.esh-cta-actions .esh-outline-btn {
  flex: 1 1 auto;
  min-width: 160px;
}

@media (max-width: 1024px) {
  .esh-business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .esh-banner-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .esh-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .esh-hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }
  .esh-hero-title {
    font-size: 2.3rem;
  }
  .esh-ad-card {
    flex-basis: min(285px, 84vw);
  }
  .esh-ad-title {
    font-size: 1.16rem;
  }
  .esh-business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .esh-business-card {
    height: 410px; /* fixed height on mobile */
    border-radius: 16px;
  }
  .esh-card-media {
    height: 205px; /* exactly 50% of the mobile card height */
    min-height: 205px;
  }
  .esh-card-body {
    padding: 0.45rem 0.65rem;
    gap: 0.15rem; /* even tighter gaps on mobile */
  }
  .esh-card-title {
    font-size: 0.88rem;
    max-height: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .esh-card-description {
    font-size: 0.78rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .esh-card-price {
    font-size: 0.95rem;
  }
  .esh-card-action {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
    margin-top: 0;
  }
  .esh-card-foot {
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }
  .esh-feature-card {
    flex-basis: min(82vw, 260px);
    min-height: 230px;
  }
  .esh-feature-media {
    height: 145px;
  }
}
