/* Base */
:root {
  --red:#a80000;
  --ink:#1a1a1a;
  --muted:#6b6b6b;
  --bg:#ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
}

/* Hero */
.membership-hero {
  position: relative;
  height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
}

.hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 24px;
  background: linear-gradient(
    to bottom,
    rgba(168,0,0,0.85),
    rgba(168,0,0,0.75)
  );
  border-radius: 16px;
  max-width: 980px;
  margin: 0 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

}
.hero-overlay {
  background: var(--red); /* solid theme red */
}

/* OR if you still want a gradient but in theme red */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    #a80000,
    #a80000
  );
}

.hero-overlay h1 {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: .3px;
}

.hero-overlay p {
  margin: 0 0 16px;
  opacity: 0.95;
}

.zero-fee-pill {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-top: 6px;
}

/* Benefits (no cards) */
.benefits-wrap {
  max-width: 1100px;
  margin: 40px auto 70px;
  padding: 0 18px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}

.benefit-row:last-of-type {
  border-bottom: 0;
}

.benefit-row.reverse {
  grid-template-columns: 1fr 160px;
}

.benefit-row.reverse .benefit-media {
  order: 2;
}

.benefit-row.reverse .benefit-copy {
  order: 1;
}

.benefit-media img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.benefit-copy h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--red);
}

.benefit-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.benefits-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.7;
}

/* CTA */
.cta-wrap {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #f1f1f1;
}

.cta-wrap h2 {
  margin: 0 0 6px;
  color: var(--red);
}

.cta-wrap p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.cta-btn:hover { filter: brightness(1.05); }

/* Responsive */
@media (max-width: 720px) {
  .benefit-row,
  .benefit-row.reverse {
    grid-template-columns: 1fr;
  }
  .benefit-media img {
    margin: 0 auto;
  }
}
