body{
}

/* ----------------------------------------------------------
   ELENBY • Apple-Inspired Minimal Pricing Cards
---------------------------------------------------------- */

.elenby-pricing-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  color: #111;
}

/* Section Title */
.elenby-pricing-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
  color: #111;
}

/* Subtle section separation */
.elenby-pricing-section + .elenby-pricing-section {
  margin-top: 4rem;
  padding-top: 3rem;
  background: linear-gradient(to bottom, transparent 0%, #f7f7f7 100%);
  border-radius: 24px;
}

/* ----------------------------------------------------------
   GRID LAYOUT (Desktop & Tablet)
---------------------------------------------------------- */
.elenby-pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Hide table header (we are cards now) */
.elenby-pricing-row--head {
  display: none !important;
}

/* ----------------------------------------------------------
   CARD STYLE (Hi-tech minimal)
---------------------------------------------------------- */
.elenby-pricing-row {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #fafafa 60%,
    #f5f5f5 100%
  );
  
  box-shadow:
    0px 4px 20px rgba(0, 0, 0, 0.02),
    inset 0px 0px 0px rgba(255, 255, 255, 0.2);

  transition: all 0.25s ease;
}

/* Hover = light float + stronger shadow */
.elenby-pricing-row:hover {
  transform: translateY(-6px);
  box-shadow:
    0px 12px 32px rgba(0, 0, 0, 0.08),
    inset 0px 0px 0px rgba(255, 255, 255, 0.75);
}

/* ----------------------------------------------------------
   CARD CONTENT
---------------------------------------------------------- */

.elenby-pricing-cell {
  padding: 0;
  margin: 0.4rem 0;
}

/* Title */
.elenby-pricing-cell--title {
  margin-bottom: 0.25rem;
}

.elenby-pricing-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111;
}

/* Includes */
.elenby-pricing-cell--includes {
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Price – anchors bottom of card */
.elenby-pricing-cell--price {
  margin-top: auto;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-align: right;
  color: #111;
}

/* ----------------------------------------------------------
   LABELS (tiny and subtle, very Apple style)
---------------------------------------------------------- */
.elenby-pricing-cell::before {
  content: attr(data-label);
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b5b5b5;
  margin-bottom: 0.2rem;
}

.elenby-pricing-cell--title::before {
  content: "";
}

/* ----------------------------------------------------------
   MOBILE (One Card Per Row)
---------------------------------------------------------- */
@media (max-width: 768px) {
  .elenby-pricing-wrap {
    padding: 2rem 1rem;
  }

  .elenby-pricing-table {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .elenby-pricing-row {
    padding: 1.3rem 1.1rem;
    border-radius: 18px;
  }

  .elenby-pricing-title {
    font-size: 1.05rem;
  }

  .elenby-pricing-cell--price {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------
   CASE STUDY BUTTON
---------------------------------------------------------- */

.elenby-pricing-cta-wrap {
  margin-top: 0.85rem;
}

.elenby-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;

  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #111111;
  background: #fff;
	    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.18s ease;
}

.elenby-pricing-btn::after {
  content: '›';
  font-size: 0.85rem;
  transform: translateY(0.5px);
}

.elenby-pricing-btn:hover {
  transform: translateY(-1px);

}

.elenby-pricing-btn:active {
  transform: translateY(0);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}
