
  /* =========================================================
   EINBL HERO SECTION
========================================================= */

.einbl-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/images/slides/einbl-hero.png') center / cover no-repeat;
  text-align: center;
  color: #ffffff;
}

/* Overlay */
.einbl-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 56, 0.65);
  z-index: 1;
}

/* Inner */
.einbl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 1.75rem;
}

/* Eyebrow */
.einbl-hero-eyebrow {
  color: #FFD700;
  letter-spacing: 1.8px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

/* Title */
.einbl-hero-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* Subtitle */
.einbl-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #e7edf6;
  max-width: 820px;
  margin: 0 auto 1.6rem;
}

/* CTAs */
.einbl-hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.btn-einbl-primary {
  background: #FFD700;
  color: #001938;
  border-radius: 30px;
  padding: 12px 26px;
  font-weight: 700;
}

.btn-einbl-primary:hover {
  background: #e6c200;
  color: #001938;
}

.btn-einbl-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 26px;
  font-weight: 700;
}

.btn-einbl-outline:hover {
  background: #ffffff;
  color: #001938;
}

/* SEARCH CARD (DESKTOP) */
.einbl-search-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  padding: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.einbl-search-card .form-select,
.einbl-search-card .form-control,
.einbl-search-card .btn {
  height: 52px;
  font-weight: 600;
}

/* =========================================================
   MOBILE OPTIMIZATION
========================================================= */

@media (max-width: 767px) {

  .einbl-hero {
    min-height: auto;
    /* padding: 3.5rem 0 2.75rem; */
  }

  .einbl-hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .einbl-hero-subtitle {
    font-size: 0.95rem;
  }

  .einbl-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .einbl-hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Hide heavy search on mobile */
  .einbl-search-card {
    display: none;
  }
}

  /* ===== FEATURED LISTINGS ===== */
.featured-section {
  padding: 70px 0;
  background: #f8fafc;
}

/* ===== LISTING CARD ===== */
.listing-card {
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

/* ===== IMAGE ===== */
.listing-image-wrap {
  position: relative;
  overflow: hidden;
}

.listing-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .4s ease;
}

.listing-card:hover .listing-thumb {
  transform: scale(1.05);
}

.listing-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,25,56,0.15),
    rgba(0,25,56,0.65)
  );
}

/* ===== IMAGE PILLS ===== */
.listing-pill {
  position: absolute;
  z-index: 2;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.listing-pill.category {
  top: 12px;
  left: 12px;
  background: rgba(0,25,56,.9);
  color: #fff;
}

.listing-pill.type {
  top: 12px;
  right: 12px;
  background: #FFD700;
  color: #001938;
}

/* ===== CARD BODY ===== */
.listing-body {
  padding: 18px 20px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f9fbfe 100%);
  border-top: 1px solid #eef2f7;
}

.listing-title {
  font-size: 1.06rem;
  font-weight: 700;
  color: #001938;
  margin-bottom: 6px;
  line-height: 1.35;
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: #6b7788;
  margin-bottom: 14px;
}

/* ===== CTA ROW ===== */
.listing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed #e3e9f1;
}

.price-badge {
  background: #001938;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 14px rgba(0,25,56,.18);
}

.listing-cta .btn {
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 600;
  border-color: #001938;
  color: #001938;
}

.listing-cta .btn:hover {
  background: #001938;
  color: #fff;
}

/* ===== CAROUSEL ARROWS ===== */
#featuredCarousel .carousel-control-prev,
#featuredCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#featuredCarousel .carousel-control-prev { left: -22px; }
#featuredCarousel .carousel-control-next { right: -22px; }

#featuredCarousel .carousel-control-prev-icon,
#featuredCarousel .carousel-control-next-icon {
  background: #001938;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-image: none;
  position: relative;
}

#featuredCarousel .carousel-control-prev-icon::before,
#featuredCarousel .carousel-control-next-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #FFD700;
  border-right: 3px solid #FFD700;
  transform: translate(-50%, -50%) rotate(225deg);
}

#featuredCarousel .carousel-control-next-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#featuredCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#featuredCarousel .carousel-control-next:hover .carousel-control-next-icon {
  background: #FFD700;
}

#featuredCarousel .carousel-control-prev:hover .carousel-control-prev-icon::before,
#featuredCarousel .carousel-control-next:hover .carousel-control-next-icon::before {
  border-color: #001938;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .listing-title { font-size: 1rem; }
  .listing-body { padding: 16px; }

  #featuredCarousel .carousel-control-prev,
  #featuredCarousel .carousel-control-next {
    display: none;
  }
}

/** mobile **/
/* ===== MOBILE FEATURED LISTINGS ===== */
@media (max-width: 767px) {

  .featured-section {
    padding: 48px 0;
  }

  /* One card per slide */
  #featuredCarousel .carousel-item .row {
    flex-wrap: nowrap;
  }

  #featuredCarousel .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Card refinement */
  .listing-card {
    border-radius: 18px;
  }

  /* Taller image for impact */
  .listing-thumb {
    aspect-ratio: 4 / 3;
  }

  /* Pills */
  .listing-pill {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  /* Body */
  .listing-body {
    padding: 16px 16px 18px;
  }

  .listing-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .listing-meta {
    font-size: .85rem;
  }

  /* CTA row stacked */
  .listing-cta {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .price-badge {
    text-align: center;
    font-size: .9rem;
  }

  .listing-cta .btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: .9rem;
  }

  /* Remove arrows on mobile */
  #featuredCarousel .carousel-control-prev,
  #featuredCarousel .carousel-control-next {
    display: none;
  }
}

/* =========================================
   EIN VETTED BADGE (FEATURED LISTINGS)
========================================= */

.ein-vetted-badge {
  position: absolute;
  bottom: 14px;
  left: 24px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .02em;

  color: #001938;
  background: rgba(255, 215, 0, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.6);

  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.ein-vetted-badge i {
  font-size: 0.8rem;
  line-height: 1;
}

/* Subtle hover polish */
.listing-card:hover .ein-vetted-badge {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  transition: all .25s ease;
}

/* Mobile tuning */
@media (max-width: 767px) {
  .ein-vetted-badge {
    bottom: 12px;
    left: 12px;
    font-size: 0.68rem;
    padding: 5px 10px;
  }

  .ein-vetted-badge i {
    font-size: 0.75rem;
  }
}


  /* =========================================
   EINBL BROKER-LED CTA
========================================= */

.einbl-broker-cta {
  background: #001938;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.broker-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

/* Text */
.broker-cta-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.broker-cta-text p {
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.broker-cta-text strong {
  color: #FFD700;
}

/* Actions */
.broker-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.broker-cta-actions .btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Gold primary */
.btn-gold {
  background: #FFD700;
  color: #001938;
  border: 1px solid #FFD700;
}

.btn-gold:hover {
  background: #e6c200;
  border-color: #e6c200;
}

/* Outline light */
.btn-outline-light {
  background: transparent;
  color: #ffffff!important;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

/* Outline gold */
.btn-outline-gold {
  background: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.btn-outline-gold:hover {
  background: #FFD700;
  color: #001938;
}

/* Responsive */
@media (max-width: 991px) {
  .broker-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .broker-cta-actions {
    width: 100%;
  }
}


  /* =========================================
   BROWSE LISTINGS – LIGHT CANVAS (EINBL)
========================================= */

.browse-einbl {
  padding: 80px 0;
  background:
    radial-gradient(circle at top center, rgba(255,215,0,0.12), transparent 55%),
    linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
  color: #001938;
}

/* Header */
.browse-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #001938;
}

.browse-header p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  color: #475569;
}

/* Card */
.browse-card-ein {
  display: block;
  height: 100%;
  padding: 22px 18px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0b2745 0%, #071c33 100%);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 12px 28px rgba(0, 20, 43, 0.25);
}

.browse-card-ein:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.35);
}

/* Icon */
.browse-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255,215,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.browse-icon i {
  color: #FFFFFF;
  font-size: 18px;
}

/* Title */
.browse-card-ein h4 {
  font-size: .95rem;
  font-weight: 700;
  margin: 6px 0 8px;
  color: #FFD700;
}

/* Description */
.browse-card-ein p {
  font-size: .85rem;
  color: #cbd5e1;
  margin-bottom: 14px;
  line-height: 1.45;
}

/* Explore Button */
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #FFD700;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  transition: all .25s ease;
}

.explore-btn::after {
  content: "→";
  transition: transform .25s ease;
}

.browse-card-ein:hover .explore-btn {
  background: #FFD700;
  color: #001938;
}

.browse-card-ein:hover .explore-btn::after {
  transform: translateX(3px);
}

/* Main CTA */

.browse-main-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 36px;

  border-radius: 999px;
  border: 2px solid #001938;

  background: #001938;
  color: #FFD700;

  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;

  text-decoration: none;
  transition: all .25s ease;
}

/* Hover */
.browse-main-btn:hover {
  background: #FFD700;
  color: #001938;
  border-color: #FFD700;
}

/* Footnote */
.browse-footnote {
  margin-top: 12px;
  font-size: .8rem;
  color: #64748b;
}

/* Mobile */
@media (max-width: 767px) {
  .browse-einbl {
    padding: 60px 0;
  }

  .browse-header h2 {
    font-size: 1.7rem;
  }

  .browse-card-ein {
    padding: 20px 16px 22px;
  }

  .browse-card-ein h4 {
    font-size: .9rem;
  }

  .browse-card-ein p {
    font-size: .82rem;
  }
}
.browse-einbl {
  padding: 80px 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 215, 0, 0.10),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #eceff3 0%,
      #e2e6ec 55%,
      #d8dde4 100%
    );
  color: #001938;
}
.browse-einbl {
  background:
    radial-gradient(circle at top center, rgba(255,215,0,0.10), transparent 55%),
    linear-gradient(180deg, #f6f7f4 0%, #e6eaee 100%);
}
.browse-card-ein {
  box-shadow: 0 12px 28px rgba(0, 25, 56, 0.18);
}
.browse-main-btn {
  box-shadow: 0 12px 30px rgba(0, 25, 56, 0.35);
}


  /* =========================================
   WHY & WHO EINBL (INSTITUTIONAL)
========================================= */

.einbl-why-who {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #f7f8fa 0%,
    #eef1f4 100%
  );
  color: #0f172a;
}

/* Eyebrow */
.einbl-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b45309; /* muted EIN gold */
}

/* Titles */
.einbl-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #001938;
}

/* Lead paragraph */
.einbl-lead {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 34px;
}

/* WHY points */
.einbl-why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #001938;
}

.why-point p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* WHO cards */
.einbl-who-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 18px;
  border-left: 5px solid #001938;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.einbl-who-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #001938;
}

.einbl-who-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .einbl-why-who {
    padding: 80px 0;
  }

  .einbl-title {
    font-size: 1.9rem;
  }

  .einbl-lead {
    font-size: 1rem;
  }
}


  /* =========================================
   HOW EINBL WORKS – STEP FLOW
========================================= */

.einbl-steps {
  padding: 60px 0;
  background: linear-gradient(
    180deg,
    #001938 0%,
    #00142b 100%
  );
  color: #ffffff;
}

/* Header */
.steps-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.steps-header p {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: #c7d2e2;
}

/* Steps Row */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Step Card */
.step-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, border-color .25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.35);
}

/* Step Number */
.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #FFD700;
  margin-bottom: 14px;
}

/* Step Title */
.step-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 10px;
}

/* Step Text */
.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfd8e6;
  margin: 0;
}

/* Footnote */
.steps-footnote {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #9fb0c8;
}

/* Responsive */
@media (max-width: 991px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .steps-row {
    grid-template-columns: 1fr;
  }

  .steps-header h2 {
    font-size: 2rem;
  }
}


  .ein-ecosystem-section {
  padding: 80px 0;
  background: #f8fafc;
}

.ecosystem-card {
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  font-weight: 700;
  color: #001938;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ecosystem-card small {
  display: block;
  font-weight: 500;
  color: #6b7788;
  margin-top: 4px;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
