.section-showcase {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  background: var(--transition-black);
}

/* =========================
   SHOWCASE SECTION (AFTER HERO)
   (unchanged from your file)
   ========================= */


/* TECH LOGOS ROW */
.showcase-tech-row {
  display: flex;
  gap: 20px;
  margin-top: -20px;
  margin-bottom: 50px;
  align-items: center;
}

.showcase-tech-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-logo-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(75, 85, 99, 0.9);
}

.showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.showcase-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.showcase-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.showcase-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 38px);
  color: #f9fafb;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-top: 80px !important;
  font-weight: 600;
}

@media (max-width: 900px) {
  .showcase-header h2 {
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .showcase-header h2 {
    margin-top: 0;
  }
}

.showcase-header p {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.98);
  line-height: 1.65;
}

.showcase-subtitle {
  max-width: 68ch;
  margin: 12px auto 0 !important;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.78) !important;
}

.showcase-header-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.showcase-header-actions .btn--secondary {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.02);
}

.showcase-header-actions .btn--secondary:hover {
  background: rgba(255,255,255,0.06);
}

/* Filter pills */
.showcase-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.showcase-filter {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  background: #020617;
  color: rgba(209, 213, 219, 0.95);
  padding: 6px 18px;
  font-size: var(--text-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

.showcase-filter.is-active {
  background: #f9fafb;
  color: #020617;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.showcase-filter:hover:not(.is-active) {
  background: rgba(15, 23, 42, 0.98);
}

/* Cards */
.showcase-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 960px) {
  .showcase-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section-showcase {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .showcase-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase-logos {
    margin-bottom: 32px;
  }
}

/* =========================================================
   SECTION 1: PACKAGES (SHOWCASE) — APPLE GLASS CARDS (RESTORE)
   Paste at VERY BOTTOM of home.css
   ========================================================= */

/* Dark stage polish (subtle depth) */
.section-showcase{
  position: relative;
  overflow: hidden;
}

.section-showcase::before{
  content:"";
  position:absolute;
  inset:-200px -120px;
  background:
    radial-gradient(800px 520px at 20% 10%, rgba(59,130,246,0.16), transparent 60%),
    radial-gradient(700px 500px at 80% 35%, rgba(255,255,255,0.07), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(15,23,42,0.65), transparent 60%);
  pointer-events:none;
  z-index:0;
}

.section-showcase .showcase-inner{
  position: relative;
  z-index: 1;
}

/* Headline spacing */
.section-showcase .showcase-header{
  margin-bottom: 18px;
}
.section-showcase .showcase-header h2{
  margin: 0;
}
.section-showcase .showcase-header p{
  margin: 10px auto 0;
}

/* Filters row: tighten & elevate */
.showcase-filters{
  margin: 18px 0 34px;
}

.showcase-filter{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(2,6,23,0.55);
  color: rgba(255,255,255,0.82);
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.showcase-filter.is-active{
  background: #111827;
  color: rgba(255,255,255,0.82);
  border-color: transparent;
  box-shadow: 0 22px 55px rgba(0,0,0,0.45);
}

.showcase-filter--icon{
  width: 44px;
  padding: 0;
  justify-content: center;
}

/* =========================================================
   ✅ REPLACED: CARD / BOX DESIGN ONLY (PREMIUM ENTERPRISE)
   ========================================================= */

/* === The premium “boxes” === */
.showcase-card{
  position: relative;
  border-radius: 22px;
  padding: 28px 28px 32px;
  min-height: 280px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
  overflow: hidden;

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.showcase-card::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:68px;
  height:1px;
  transform:translateX(-50%);
  background:rgba(255,255,255,0.68);
  pointer-events:none;
  border-radius: inherit;
  z-index:0;
}

.showcase-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,0.62), rgba(255,255,255,0.62)) 0 50%/1px 36px no-repeat,
    linear-gradient(rgba(255,255,255,0.62), rgba(255,255,255,0.62)) 100% 50%/1px 36px no-repeat;
  border-radius: inherit;
  z-index:0;
}

.showcase-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.03);
}

/* Top tag pill inside each card */
.showcase-card-tag{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;

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

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);

  font-size: 12px;
  line-height: 1;
}

.showcase-card-tag-ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,0.10);
}

/* Content */
.showcase-card > *{
  position: relative;
  z-index: 1;
}

.showcase-card-content{
  margin-top: 18px;
}

.showcase-stars{
  display: inline-flex;
  gap: 4px;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255,255,255,0.95);
  margin-bottom: 14px;
}

.showcase-card-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.showcase-card-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

/* Bottom CTA */
.showcase-bottom-cta{
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.showcase-bottom-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  background: #020617;
}

.showcase-bottom-btn--alt {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  box-shadow: none;
}

.showcase-bottom-btn--alt:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

/* Responsive */
@media (max-width: 960px){
  .showcase-card{
    min-height: 250px;
  }
  .showcase-card-title{
    font-size: 26px;
  }
}

@media (max-width: 720px){
  .showcase-header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .showcase-header-actions .btn {
    width: 100%;
  }

  .showcase-filters{
    margin-bottom: 26px;
  }
  .showcase-card{
    padding: 22px;
  }
  .showcase-card-title{
    font-size: 24px;
  }
  .showcase-card-desc{
    max-width: 100%;
  }

  .showcase-bottom-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .showcase-bottom-cta .btn {
    width: 100%;
  }
}

/* FIX: force card titles to white (override global heading color) */
.section-showcase .showcase-card-title {
  color: #ffffff !important;
}
