#eesar-hero,
.eesar-stats {
  --eesar-navy: #0B1E40;
  --eesar-deep-green: #16362F;
  --eesar-emerald: #1a6b58;
  --eesar-gold: #c9952a;
  --eesar-accent-green: #20C076;
  --eesar-cream: #FAF8F2;
  --eesar-cream-alt: #FDFBF3;
  --eesar-dark-bg: #0A1533;
  --eesar-light-gray: #E5E5E5;
  --eesar-dark-accent: #1A170F;
  --eesar-text-body: #55605c;
  --eesar-border: #E7DFC9;
  --eesar-font: 'Poppins', sans-serif;
}


/* ============================================================
   RESET / BASE (scoped, not global)
   ============================================================ */
#eesar-hero *,
.eesar-stats * {
  box-sizing: border-box;
}

/* ============================================================
   CONTAINER
   ============================================================ */
#eesar-hero .eesar-container,
.eesar-stats .eesar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#eesar-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, var(--eesar-cream-alt) 0%, var(--eesar-cream) 100%);
  padding: 84px 0 70px;
  overflow: hidden;
  font-family: var(--eesar-font);
}

.eesar-pattern-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 8% 15%, rgba(201,149,42,0.07) 0, transparent 45%),
    radial-gradient(circle at 95% 85%, rgba(26,107,88,0.08) 0, transparent 50%),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230B1E40' stroke-width='1' opacity='0.35'%3E%3Cpath d='M60 4 L92 24 L92 66 L60 86 L28 66 L28 24 Z'/%3E%3Cpath d='M60 4 L60 44 M92 24 L60 44 M92 66 L60 44 M60 86 L60 44 M28 66 L60 44 M28 24 L60 44'/%3E%3Ccircle cx='60' cy='44' r='6'/%3E%3Cpath d='M0 60 L20 48 L40 60 L20 72 Z'/%3E%3Cpath d='M80 100 L100 88 L120 100 L100 112 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, 120px 120px;
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 45%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.9) 100%);
  mask-image: radial-gradient(ellipse 85% 90% at 50% 45%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.9) 100%);
}

.eesar-hero-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- LEFT CONTENT ---------- */
.eesar-hero-content {
  max-width: 620px;
}

.eesar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1.5px solid #c9952a;
  border-radius: 999px;
  background: #ffffff;
  color: var(--eesar-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 26px;
}

.eesar-eyebrow-icon {
  color: var(--eesar-gold);
  flex-shrink: 0;
}

.eesar-h1 {
  font-family: var(--eesar-font);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 66px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--eesar-deep-green);
  margin: 0 0 10px;
}

.eesar-subhead {
  font-family: var(--eesar-font);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--eesar-gold);
  margin: 0 0 22px;
}

.eesar-body {
  font-size: 17px;
  line-height: 1.65;
  color: #000;
  margin: 0 0 32px;
  max-width: 560px;
}

/* ---------- CTA BUTTONS ---------- */
.eesar-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.eesar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--eesar-font);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.eesar-btn-primary {
  background: var(--eesar-deep-green);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 54, 47, 0.22);
}

.eesar-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(22, 54, 47, 0.3);
  background: #1c443a;
}

.eesar-btn-secondary {
  background: #ffffff;
  color: #16362f;
  border-color: #16362f;
}

.eesar-btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--eesar-gold);
  box-shadow: 0 10px 22px rgba(11, 30, 64, 0.08);
}

/* ---------- TRUST STRIP ---------- */
.eesar-trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  margin: 0 0 30px;
  padding: 0;
}

.eesar-trust-strip li {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--eesar-navy);
  opacity: 0.8;
}

.eesar-trust-strip li:not(:last-child)::after {
  content: '\00B7';
  margin: 0 12px;
  color: var(--eesar-gold);
  font-weight: 700;
  opacity: 1;
}

/* ---------- SUPPORTING VERSE ---------- */
.eesar-verse {
  border: 1.5px solid var(--eesar-border);
  border-left: 3px solid var(--eesar-gold);
  border-radius: 14px;
  background: #ffffff;
  padding: 26px 30px;
  max-width: 560px;
}

.eesar-verse-text {
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--eesar-navy);
  margin: 0 0 10px;
}

.eesar-verse-citation {
  font-size: 13px;
  font-weight: 600;
  color: var(--eesar-gold);
  margin: 0;
}

/* ---------- RIGHT VISUAL ---------- */
.eesar-hero-visual {
  position: relative;
}

.eesar-visual-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16 / 10.4;
  background: linear-gradient(160deg, #dfe6d8 0%, #f3ecd9 55%, #f7f1de 100%);
  box-shadow: 0 20px 50px rgba(11, 30, 64, 0.12);
}

.eesar-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eesar-visual-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,248,242,0) 55%, rgba(250,248,242,0.65) 100%);
  pointer-events: none;
}

/* ---------- ARCH CARDS (sponsorship types) ---------- */
.eesar-arch-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: -34px;
  position: relative;
  z-index: 3;
  padding: 0 6px;
}

.eesar-arch-card {
  background: var(--eesar-cream-alt);
  border: 1.5px solid var(--eesar-border);
  border-radius: 999px 999px 14px 14px;
  padding: 28px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(11, 30, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eesar-arch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(11, 30, 64, 0.14);
}

.eesar-arch-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26, 107, 88, 0.1);
  color: var(--eesar-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.eesar-arch-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--eesar-navy);
}

.eesar-arch-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--eesar-text-body);
}

.eesar-tagline {
  text-align: center;
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--eesar-emerald);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.eesar-stats {
  width: 100%;
  background: var(--eesar-cream);
  padding: 0 0 70px;
  margin-top: -46px;
  position: relative;
  z-index: 4;
  font-family: var(--eesar-font);
}

.eesar-stats-bar {
  background: var(--eesar-deep-green);
  border-radius: 20px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 22px 50px rgba(11, 30, 64, 0.22);
}

.eesar-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.eesar-stat-number {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.eesar-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--eesar-gold);
}

.eesar-stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

/* ============================================================
   FADE-UP ANIMATION (shared pattern — include once per page)
   ============================================================ */
.eesar-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eesar-fade-up.eesar-in-view {
  opacity: 1;
  transform: translateY(0);
}

.eesar-delay-1.eesar-in-view {
  transition-delay: 0.12s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .eesar-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .eesar-hero-content {
    max-width: 100%;
  }

  .eesar-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
  }

  .eesar-stat {
    flex: 1 1 40%;
  }

  .eesar-stat-divider {
    display: none;
  }
}

@media (max-width: 720px) {
  #eesar-hero {
    padding: 60px 0 46px;
  }

  .eesar-h1 {
    font-size: 46px;
  }

  .eesar-subhead {
    font-size: 22px;
  }

  .eesar-cta-row {
    flex-direction: column;
  }

  .eesar-btn {
    width: 100%;
    justify-content: center;
  }

  .eesar-arch-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .eesar-arch-card:nth-child(4),
  .eesar-arch-card:nth-child(5) {
    grid-column: span 1;
  }

  .eesar-stats {
    padding-bottom: 60px;
    margin-top: 30px;
  }

  .eesar-stats-bar {
    padding: 26px 22px;
  }

  .eesar-stat {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .eesar-arch-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .eesar-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.eesar-gap {
  --eesar-navy: #0B1E40;
  --eesar-deep-green: #16362F;
  --eesar-emerald: #1a6b58;
  --eesar-gold: #c9952a;
  --eesar-accent-green: #20C076;
  --eesar-cream: #FAF8F2;
  --eesar-cream-alt: #FDFBF3;
  --eesar-dark-bg: #0A1533;
  --eesar-light-gray: #E5E5E5;
  --eesar-dark-accent: #1A170F;
  --eesar-text-body: #414644;
  --eesar-border: #E7DFC9;
  --eesar-muted-red: #b3564a;
  --eesar-font: 'Poppins', sans-serif;
}

.eesar-gap * {
  box-sizing: border-box;
}

/* ============================================================
   SECTION / CONTAINER
   ============================================================ */
.eesar-gap {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 66px 0 86px;
  overflow: hidden;
  font-family: var(--eesar-font);
}

.eesar-gap-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 92% 10%, rgba(201,149,42,0.06) 0, transparent 45%),
    radial-gradient(circle at 4% 92%, rgba(26,107,88,0.07) 0, transparent 45%);
}

.eesar-gap-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   INTRO
   ============================================================ */
.eesar-gap-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eesar-gap-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border: 1.5px solid #c9952a;
  border-radius: 999px;
  background: var(--eesar-cream-alt);
  color: var(--eesar-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eesar-gap-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--eesar-deep-green);
  margin: 0 0 16px;
}

.eesar-gap-subtext {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--eesar-text-body);
  margin: 0;
}

/* ============================================================
   COMPARISON GRID
   ============================================================ */
.eesar-gap-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.eesar-gap-col {
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.eesar-gap-col-before {
  background: var(--eesar-cream-alt);
  border: 1.5px solid var(--eesar-border);
}

.eesar-gap-col-after {
  background: linear-gradient(155deg, var(--eesar-deep-green) 0%, #0f2a24 100%);
  border: 1.5px solid var(--eesar-deep-green);
  box-shadow: 0 24px 50px rgba(11, 30, 64, 0.18);
}

.eesar-gap-col-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 26px;
}

.eesar-gap-col-before .eesar-gap-col-title {
  color: var(--eesar-navy);
}

.eesar-gap-col-after .eesar-gap-col-title {
  color: #ffffff;
}

.eesar-gap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eesar-gap-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.eesar-gap-col-before .eesar-gap-list li {
  color: var(--eesar-text-body);
}

.eesar-gap-col-after .eesar-gap-list li {
  color: #EDEFEC;
}

.eesar-gap-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.eesar-gap-icon-x {
  background: rgba(179, 86, 74, 0.12);
  color: var(--eesar-muted-red);
}

.eesar-gap-icon-check {
  background: rgba(201, 149, 42, 0.16);
  color: var(--eesar-gold);
}

/* ============================================================
   VS BADGE
   ============================================================ */
.eesar-gap-vs-wrap {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.eesar-gap-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--eesar-cream);
  border: 2px solid var(--eesar-gold);
  color: var(--eesar-deep-green);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 26px rgba(11, 30, 64, 0.16);
}

/* ============================================================
   FADE-UP ANIMATION (shared pattern — reuse hero's JS if already
   on the page; only include the JS block below if this is the
   first Eesar section on the page)
   ============================================================ */
.eesar-gap-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eesar-gap-fade-up.eesar-gap-in-view {
  opacity: 1;
  transform: translateY(0);
}

.eesar-gap-delay-1.eesar-gap-in-view {
  transition-delay: 0.12s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .eesar-gap {
    padding: 70px 0;
  }

  .eesar-gap-compare {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .eesar-gap-vs-wrap {
    top: auto;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    position: absolute;
  }

  .eesar-gap-col-before {
    margin-bottom: 6px;
  }

  .eesar-gap-col {
    padding: 34px 26px;
  }
}

@media (max-width: 560px) {
  .eesar-gap-heading {
    font-size: 26px;
  }

  .eesar-gap-vs {
    width: 52px;
    height: 52px;
    font-size: 13px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .eesar-gap-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eesar-dash {
  --eesar-navy: #0B1E40;
  --eesar-deep-green: #16362F;
  --eesar-emerald: #1a6b58;
  --eesar-gold: #c9952a;
  --eesar-accent-green: #20C076;
  --eesar-cream: #FAF8F2;
  --eesar-cream-alt: #FDFBF3;
  --eesar-dark-bg: #0A1533;
  --eesar-light-gray: #E5E5E5;
  --eesar-dark-accent: #1A170F;
  --eesar-font: 'Poppins', sans-serif;
}

.eesar-dash * {
  box-sizing: border-box;
}

/* ============================================================
   SECTION
   ============================================================ */
.eesar-dash {
  position: relative;
  width: 100%;
  background: linear-gradient(155deg, var(--eesar-deep-green) 0%, #0d2621 55%, #0a1f1b 100%);
  padding: 80px 0;
  overflow: hidden;
  font-family: var(--eesar-font);
}

.eesar-dash-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c9952a' stroke-width='1' opacity='0.18'%3E%3Cpath d='M60 4 L92 24 L92 66 L60 86 L28 66 L28 24 Z'/%3E%3Cpath d='M60 4 L60 44 M92 24 L60 44 M92 66 L60 44 M60 86 L60 44 M28 66 L60 44 M28 24 L60 44'/%3E%3Ccircle cx='60' cy='44' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
}

.eesar-dash-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.eesar-dash-glow-1 {
  width: 420px;
  height: 420px;
  background: rgba(201, 149, 42, 0.18);
  top: -120px;
  right: -100px;
}

.eesar-dash-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(32, 192, 118, 0.14);
  bottom: -140px;
  left: -80px;
}

.eesar-dash-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

.eesar-dash-grid {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================================================
   LEFT: CONTENT
   ============================================================ */
.eesar-dash-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border: 1.5px solid rgba(201, 149, 42, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--eesar-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eesar-dash-heading {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 16px;
}

.eesar-dash-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 30px;
  max-width: 500px;
}

/* ---------- LIVE SNAPSHOT STATS ---------- */
.eesar-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}

.eesar-dash-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.eesar-dash-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.eesar-dash-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--eesar-gold);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.eesar-dash-disclaimer {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 36px;
}

/* ---------- WHAT'S INCLUDED ---------- */
.eesar-dash-subheading {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--eesar-gold);
  margin: 0 0 20px;
}

.eesar-dash-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eesar-dash-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.eesar-dash-features strong {
  color: #ffffff;
  font-weight: 600;
}

.eesar-dash-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 149, 42, 0.14);
  color: var(--eesar-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   RIGHT: MOBILE DASHBOARD MOCKUP
   ============================================================ */
.eesar-dash-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.eesar-dash-chip {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.eesar-dash-chip-1 {
  top: 8%;
  left: -4%;
}

.eesar-dash-chip-2 {
  bottom: 14%;
  right: -6%;
}

/* ---------- PHONE FRAME ---------- */
.eesar-phone {
  position: relative;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 300 / 610;
  background: #0a1a17;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.06) inset;
  z-index: 3;
}

.eesar-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #0a1a17;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.eesar-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f7f3e8 0%, #f1ecdd 100%);
  border-radius: 32px;
  padding: 22px 16px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eesar-phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--eesar-navy);
  padding: 0 4px;
}

.eesar-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--eesar-deep-green);
  padding: 0 4px;
}

.eesar-phone-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--eesar-deep-green);
  display: inline-block;
}

/* ---------- generic phone card ---------- */
.eesar-phone-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 18px rgba(11, 30, 64, 0.06);
}

/* ---------- profile card ---------- */
.eesar-phone-profile-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eesar-phone-profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(26, 107, 88, 0.14);
  color: var(--eesar-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eesar-phone-profile-text {
  flex: 1;
  min-width: 0;
}

.eesar-phone-profile-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--eesar-navy);
  margin: 0;
}

.eesar-phone-profile-meta {
  font-size: 10.5px;
  color: #6b7570;
  margin: 2px 0 0;
}

.eesar-phone-badge-verified {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--eesar-accent-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eesar-phone-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 30, 64, 0.1);
  overflow: hidden;
  margin-bottom: 6px;
}

.eesar-phone-progress-fill {
  display: block;
  height: 100%;
  width: 75%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--eesar-emerald), var(--eesar-accent-green));
}

.eesar-phone-progress-label {
  font-size: 10.5px;
  color: #6b7570;
  margin: 0;
}

/* ---------- report card ---------- */
.eesar-phone-report {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eesar-phone-report-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(201, 149, 42, 0.16);
  color: var(--eesar-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eesar-phone-report-text {
  flex: 1;
  min-width: 0;
}

.eesar-phone-report-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--eesar-navy);
  margin: 0;
}

.eesar-phone-report-meta {
  font-size: 10px;
  color: #6b7570;
  margin: 2px 0 0;
}

.eesar-phone-report-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  flex-shrink: 0;
}

.eesar-phone-report-chart i {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--eesar-emerald);
}

/* ---------- score card ---------- */
.eesar-phone-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eesar-phone-score-ring {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eesar-deep-green);
}

.eesar-phone-score-ring svg {
  position: absolute;
  inset: 0;
}

.eesar-phone-score-num {
  position: relative;
  font-size: 15px;
  font-weight: 800;
  color: var(--eesar-navy);
}

.eesar-phone-score-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--eesar-navy);
  margin: 0;
}

.eesar-phone-score-meta {
  font-size: 10px;
  color: #6b7570;
  margin: 2px 0 0;
}

/* ---------- sponsorship activity chart (fills remaining screen space) ---------- */
.eesar-phone-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.eesar-phone-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.eesar-phone-chart-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--eesar-navy);
  margin: 0;
}

.eesar-phone-chart-tag {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--eesar-emerald);
  background: rgba(26, 107, 88, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.eesar-phone-chart-graph {
  width: 100%;
  flex: 1;
  min-height: 40px;
  display: block;
}

.eesar-phone-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.eesar-phone-chart-labels span {
  font-size: 8.5px;
  font-weight: 500;
  color: #8a938d;
}

/* ============================================================
   FADE-UP ANIMATION (shared pattern — reuse an earlier Eesar
   section's script if already on the page)
   ============================================================ */
.eesar-dash-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eesar-dash-fade-up.eesar-dash-in-view {
  opacity: 1;
  transform: translateY(0);
}

.eesar-dash-delay-1.eesar-dash-in-view {
  transition-delay: 0.15s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .eesar-dash-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .eesar-dash-body {
    max-width: 100%;
  }

  .eesar-dash-chip {
    display: none;
  }
}

@media (max-width: 560px) {
  .eesar-dash {
    padding: 70px 0;
  }

  .eesar-dash-stats {
    grid-template-columns: 1fr;
  }

  .eesar-phone {
    width: 260px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .eesar-dash-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eesar-works {
  --eesar-navy: #0B1E40;
  --eesar-deep-green: #16362F;
  --eesar-emerald: #1a6b58;
  --eesar-gold: #c9952a;
  --eesar-accent-green: #20C076;
  --eesar-cream: #FAF8F2;
  --eesar-cream-alt: #FDFBF3;
  --eesar-red: #C1483C;
  --eesar-text-body: #55605c;
  --eesar-border: #E7DFC9;
  --eesar-font: 'Poppins', sans-serif;
}

.eesar-works * {
  box-sizing: border-box;
}

/* ============================================================
   SECTION
   ============================================================ */
.eesar-works {
  position: relative;
  width: 100%;
  background: var(--eesar-cream);
  padding: 76px 0 50px;
  overflow: hidden;
  font-family: var(--eesar-font);
}

.eesar-works-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 96% 6%, rgba(201,149,42,0.06) 0, transparent 45%),
    radial-gradient(circle at 2% 96%, rgba(26,107,88,0.07) 0, transparent 45%);
}

.eesar-works-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

.eesar-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* ============================================================
   PANEL (shared card shell for both columns)
   ============================================================ */
.eesar-works-panel {
  background: #ffffff;
  border: 1.5px solid var(--eesar-border);
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow: 0 14px 34px rgba(11, 30, 64, 0.06);
  position: relative;
}

.eesar-works-panel-illustrated {
  padding-bottom: 110px;
  overflow: hidden;
}

.eesar-works-illustration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background-image: url('https://www.allmasajid.com/wp-content/uploads/2026/07/mosque-illustration.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,1) 55%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,1) 55%);
  pointer-events: none;
}

.eesar-works-heading {
  font-size: clamp(24px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--eesar-deep-green);
  margin: 0 0 8px;
}

.eesar-works-subtext {
  font-size: 15px;
  font-weight: 600;
  color: var(--eesar-gold);
  margin: 0 0 30px;
}

.eesar-works-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--eesar-text-body);
  margin: 0 0 28px;
}

/* ============================================================
   LEFT PANEL: NUMBERED STEP TIMELINE
   ============================================================ */
.eesar-works-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.eesar-works-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 34px;
}

.eesar-works-step-last {
  padding-bottom: 0;
}

/* connecting vertical line behind the numbered circles */
.eesar-works-step:not(.eesar-works-step-last)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 38px;
  width: 1.5px;
  height: calc(100% - 20px);
  background: var(--eesar-border);
}

.eesar-works-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--eesar-deep-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.eesar-works-step-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--eesar-cream-alt);
  border: 1.5px solid var(--eesar-border);
  color: var(--eesar-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eesar-works-step-icon svg {
  width: 28px;
  height: 28px;
}

.eesar-works-step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.eesar-works-step-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--eesar-navy);
}

.eesar-works-step-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--eesar-text-body);
}

/* ============================================================
   RIGHT PANEL: BULLET LIST + QUOTE
   ============================================================ */
.eesar-works-bullets {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eesar-works-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--eesar-text-body);
}

.eesar-works-bullet-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 107, 88, 0.1);
  color: var(--eesar-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eesar-works-bullet-icon svg {
  width: 24px;
  height: 24px;
}

.eesar-works-bullet-icon-navy {
  background: var(--eesar-navy);
  color: #ffffff;
}

.eesar-works-bullet-icon-gold {
  background: var(--eesar-gold);
  color: #ffffff;
}

.eesar-works-bullet-icon-red {
  background: var(--eesar-red);
  color: #ffffff;
}

.eesar-works-quote {
  border: 1.5px solid var(--eesar-border);
  border-left: 3px solid var(--eesar-gold);
  border-radius: 14px;
  background: var(--eesar-cream-alt);
  padding: 24px 26px;
}

.eesar-works-quote-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--eesar-navy);
  margin: 0 0 10px;
}

.eesar-works-quote-citation {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--eesar-gold);
  margin: 0;
}

/* ============================================================
   FADE-UP ANIMATION (shared pattern — reuse an earlier Eesar
   section's script if already on the page)
   ============================================================ */
.eesar-works-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eesar-works-fade-up.eesar-works-in-view {
  opacity: 1;
  transform: translateY(0);
}

.eesar-works-delay-1.eesar-works-in-view {
  transition-delay: 0.12s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .eesar-works {
    padding: 70px 0;
  }

  .eesar-works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .eesar-works-panel {
    padding: 34px 26px;
  }
}

@media (max-width: 480px) {
  .eesar-works-step-icon {
    width: 38px;
    height: 38px;
  }

  .eesar-works-step-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .eesar-works-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* cta section */

.eesar-cta {
  --eesar-navy: #0B1E40;
  --eesar-deep-green: #16362F;
  --eesar-emerald: #1a6b58;
  --eesar-gold: #c9952a;
  --eesar-accent-green: #20C076;
  --eesar-cream: #FAF8F2;
  --eesar-font: 'Poppins', sans-serif;
}

.eesar-cta * {
  box-sizing: border-box;
}

/* ============================================================
   SECTION / CONTAINER
   ============================================================ */
.eesar-cta {
  width: 100%;
  background: var(--eesar-cream);
  padding: 50px 0 70px;
  font-family: var(--eesar-font);
}

.eesar-cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* ============================================================
   BANNER
   ============================================================ */
.eesar-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 20px;
  background: linear-gradient(120deg, #0a1f1b 0%, #123a30 55%, #0d2621 100%);
  border-radius: 28px;
  padding: 60px 60px 60px 64px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(11, 30, 64, 0.25);
}

.eesar-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.eesar-cta-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(201, 149, 42, 0.22);
  top: -120px;
  left: 10%;
}

.eesar-cta-glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(32, 192, 118, 0.18);
  bottom: -120px;
  right: 22%;
}

.eesar-cta-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.eesar-cta-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f4d68a;
  box-shadow: 0 0 8px 2px rgba(244, 214, 138, 0.7);
  opacity: 0.8;
}

.eesar-cta-sparkles span:nth-child(1) { top: 18%; left: 42%; }
.eesar-cta-sparkles span:nth-child(2) { top: 65%; left: 55%; }
.eesar-cta-sparkles span:nth-child(3) { top: 30%; left: 65%; }
.eesar-cta-sparkles span:nth-child(4) { top: 80%; left: 38%; }
.eesar-cta-sparkles span:nth-child(5) { top: 45%; left: 30%; }

/* ============================================================
   CONTENT
   ============================================================ */
.eesar-cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eesar-cta-heading {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.eesar-cta-body {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
}

.eesar-cta-emphasis {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--eesar-gold);
  margin: 0 0 34px;
}

/* ---------- BUTTONS ---------- */
.eesar-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.eesar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--eesar-font);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.eesar-cta-btn-primary {
  background: var(--eesar-gold);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(201, 149, 42, 0.32);
}

.eesar-cta-btn-primary:hover {
  transform: translateY(-3px);
  background: #d9a53a;
  box-shadow: 0 14px 30px rgba(201, 149, 42, 0.4);
}

.eesar-cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.eesar-cta-btn-secondary:hover {
  transform: translateY(-3px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- FOOTER LINE ---------- */
.eesar-cta-footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.eesar-cta-footer a {
  color: var(--eesar-gold);
  text-decoration: underline;
  font-weight: 600;
}

.eesar-cta-footer a:hover {
  color: #ffffff;
}

/* ============================================================
   VISUAL (plant motif)
   ============================================================ */
.eesar-cta-visual {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  top: 0;
  width: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.eesar-cta-visual-img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}

/* ============================================================
   FADE-UP ANIMATION (shared pattern — reuse an earlier Eesar
   section's script if already on the page)
   ============================================================ */
.eesar-cta-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eesar-cta-fade-up.eesar-cta-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .eesar-cta-banner {
    grid-template-columns: 1fr;
    padding: 50px 34px;
    text-align: left;
  }

  .eesar-cta-visual {
    display: none;
  }
}

@media (max-width: 560px) {
  .eesar-cta {
    padding: 50px 0 70px;
  }

  .eesar-cta-banner {
    padding: 40px 26px;
    border-radius: 22px;
  }

  .eesar-cta-buttons {
    flex-direction: column;
  }

  .eesar-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .eesar-cta-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

