/* ============================================================
   Club The Barbers — Landing Page
   ============================================================ */

body.landing-page {
  overflow-x: hidden;
  background: var(--bg);
}

/* ── Fondo animado ── */
.l-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.l-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 55% at 50% -15%,
      rgba(201, 162, 39, 0.13) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 35% at 10% 90%,
      rgba(201, 162, 39, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 35% at 90% 80%,
      rgba(201, 162, 39, 0.05) 0%,
      transparent 55%
    );
  animation: glowShift 10s ease-in-out infinite alternate;
}

@keyframes glowShift {
  from {
    opacity: 0.7;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

.l-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.013) 60px,
    rgba(255, 255, 255, 0.013) 61px
  );
}

/* Partículas flotantes */
.l-particles span {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift var(--dur, 12s) ease-in-out infinite var(--delay, 0s);
}

.l-particles span:nth-child(1) {
  left: 12%;
  top: 88%;
  width: 8px;
  height: 8px;
  --dur: 10s;
  --delay: 0s;
}
.l-particles span:nth-child(2) {
  left: 80%;
  top: 78%;
  width: 2px;
  height: 2px;
  --dur: 9s;
  --delay: -3s;
}
.l-particles span:nth-child(3) {
  left: 28%;
  top: 92%;
  width: 2px;
  height: 2px;
  --dur: 16s;
  --delay: -6s;
}
.l-particles span:nth-child(4) {
  left: 68%;
  top: 82%;
  width: 3px;
  height: 3px;
  --dur: 11s;
  --delay: -1s;
}
.l-particles span:nth-child(5) {
  left: 48%;
  top: 95%;
  width: 2px;
  height: 2px;
  --dur: 10s;
  --delay: -4s;
}
.l-particles span:nth-child(6) {
  left: 6%;
  top: 65%;
  width: 2px;
  height: 2px;
  --dur: 13s;
  --delay: -7s;
}
.l-particles span:nth-child(7) {
  left: 92%;
  top: 55%;
  width: 3px;
  height: 3px;
  --dur: 8s;
  --delay: -2s;
}
.l-particles span:nth-child(8) {
  left: 58%;
  top: 88%;
  width: 2px;
  height: 2px;
  --dur: 17s;
  --delay: -5s;
}
.l-particles span:nth-child(9) {
  left: 38%;
  top: 72%;
  width: 2px;
  height: 2px;
  --dur: 12s;
  --delay: -8s;
}
.l-particles span:nth-child(10) {
  left: 74%;
  top: 93%;
  width: 3px;
  height: 3px;
  --dur: 9s;
  --delay: -9s;
}
.l-particles span:nth-child(11) { left: 4%;  top: 82%; width: 2px; height: 2px; --dur: 14s; --delay: -4s;  --drift: 30px;  }
.l-particles span:nth-child(12) { left: 16%; top: 58%; width: 3px; height: 3px; --dur: 18s; --delay: -12s; --drift: -18px; }
.l-particles span:nth-child(13) { left: 22%; top: 78%; width: 2px; height: 2px; --dur: 11s; --delay: -2s;  --drift: 16px;  }
.l-particles span:nth-child(14) { left: 31%; top: 64%; width: 3px; height: 3px; --dur: 15s; --delay: -7s;  --drift: -24px; }
.l-particles span:nth-child(15) { left: 43%; top: 86%; width: 2px; height: 2px; --dur: 20s; --delay: -16s; --drift: 20px;  }
.l-particles span:nth-child(16) { left: 53%; top: 76%; width: 4px; height: 4px; --dur: 13s; --delay: -5s;  --drift: -14px; }
.l-particles span:nth-child(17) { left: 63%; top: 92%; width: 2px; height: 2px; --dur: 16s; --delay: -10s; --drift: 26px;  }
.l-particles span:nth-child(18) { left: 84%; top: 66%; width: 2px; height: 2px; --dur: 12s; --delay: -6s;  --drift: -28px; }
.l-particles span:nth-child(19) { left: 96%; top: 86%; width: 3px; height: 3px; --dur: 17s; --delay: -13s; --drift: -20px; }
.l-particles span:nth-child(20) { left: 10%; top: 96%; width: 2px; height: 2px; --dur: 9s;  --delay: -1s;  --drift: 12px;  }
.l-particles span:nth-child(21) { left: 19%; top: 70%; width: 1px; height: 1px; --dur: 13s; --delay: -8s;  --drift: -10px; }
.l-particles span:nth-child(22) { left: 35%; top: 96%; width: 3px; height: 3px; --dur: 15s; --delay: -11s; --drift: 18px;  }
.l-particles span:nth-child(23) { left: 46%; top: 62%; width: 2px; height: 2px; --dur: 10s; --delay: -3s;  --drift: -12px; }
.l-particles span:nth-child(24) { left: 57%; top: 58%; width: 2px; height: 2px; --dur: 19s; --delay: -14s; --drift: 24px;  }
.l-particles span:nth-child(25) { left: 69%; top: 72%; width: 3px; height: 3px; --dur: 14s; --delay: -9s;  --drift: -22px; }
.l-particles span:nth-child(26) { left: 78%; top: 84%; width: 1px; height: 1px; --dur: 11s; --delay: -4.5s; --drift: 10px; }
.l-particles span:nth-child(27) { left: 90%; top: 96%; width: 2px; height: 2px; --dur: 18s; --delay: -15s; --drift: -30px; }
.l-particles span:nth-child(28) { left: 2%;  top: 64%; width: 2px; height: 2px; --dur: 16s; --delay: -6.5s; --drift: 24px; }
.l-particles span:nth-child(29) { left: 27%; top: 54%; width: 2px; height: 2px; --dur: 12s; --delay: -10.5s; --drift: -18px; }
.l-particles span:nth-child(30) { left: 50%; top: 94%; width: 3px; height: 3px; --dur: 13s; --delay: -7.5s; --drift: 15px; }
.l-particles span:nth-child(31) { left: 72%; top: 52%; width: 2px; height: 2px; --dur: 17s; --delay: -12.5s; --drift: -16px; }
.l-particles span:nth-child(32) { left: 98%; top: 72%; width: 2px; height: 2px; --dur: 10s; --delay: -5.5s; --drift: -26px; }

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translate(var(--drift, 0), -190px) scale(0.4);
  }
}

/* ── Layout principal ── */
.l-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.l-content {
  max-width: 540px;
  width: 100%;
  text-align: center;
}

/* ── Logo ── */
.l-logo {
  display: flex;
  justify-content: center;
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.l-logo img {
  max-width: 300px;
  animation: logoBreathe 5s ease-in-out infinite;
}

@keyframes logoBreathe {
  0%,
  100% {
    filter: drop-shadow(0 0 24px rgba(201, 162, 39, 0.14));
  }
  50% {
    filter: drop-shadow(0 0 48px rgba(201, 162, 39, 0.32));
  }
}

/* ── Divisor con tijeras ── */
.l-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 180px;
  margin: 0 auto 10px;
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.l-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 162, 39, 0.5),
    transparent
  );
}

.l-divider i {
  color: var(--gold);
  opacity: 0.75;
  flex-shrink: 0;
}

/* ── Tagline ── */
.l-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* ── Botones ── */
.l-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.l-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep */
.l-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.l-btn:hover::after {
  transform: translateX(120%);
}

.l-btn--primary {
  background: var(--gold);
  color: #0f1115;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.28);
}

.l-btn--primary:hover {
  background: var(--gold-light);
  color: #0f1115;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 162, 39, 0.45);
}

.l-btn--primary:active {
  transform: translateY(0);
}

.l-btn--secondary {
  background: #181c24;
  color: var(--text);
  border: 1px solid var(--border);
}

.l-btn--secondary:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.l-btn--secondary:active {
  transform: translateY(0);
}

.l-btn i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Membership carousel ── */
.l-plans {
  width: min(100%, 620px);
  margin: 0 auto 30px;
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.l-plans-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, 390px);
  margin: 0 auto 12px;
  padding: 0 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l-plans-heading strong {
  padding: 5px 9px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #86efac;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.l-plans-heading strong.is-full {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
}

.l-plan-carousel {
  position: relative;
  width: 100%;
}

.l-plan-stage {
  position: relative;
  height: 470px;
  perspective: 900px;
  overflow: hidden;
  transition: height 260ms ease;
  touch-action: pan-y;
}

.l-plan-card {
  position: absolute;
  top: 12px;
  left: 50%;
  width: min(82vw, 360px);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.045), transparent 38%),
    linear-gradient(180deg, rgba(201, 162, 39, 0.08), transparent 150px),
    #151820;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    filter 220ms ease;
  overflow: hidden;
  backface-visibility: hidden;
}

.l-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
}

.l-plan-card > * {
  position: relative;
  z-index: 1;
}

.l-plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.l-plan-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--text-dim);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.l-plan-card h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.l-plan-duration {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
}

.l-plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.l-plan-price {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.l-plan-price-row > span {
  padding-bottom: 2px;
  color: var(--text-dim);
  font-size: 0.7rem;
}

.l-plan-benefits {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: var(--text-muted);
  text-align: left;
}

.l-plan-benefits-title {
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l-plan-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-benefit-marker {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
}

.l-benefit-marker svg {
  width: 14px;
  height: 14px;
}

.l-benefit-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.l-benefit-main {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.l-benefit-copy small {
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.l-plan-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.l-plan-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #e8bd35);
  color: #101010 !important;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.l-plan-btn:hover {
  color: #101010 !important;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 13px 34px rgba(201, 162, 39, 0.3);
}

.l-plan-btn svg {
  width: 16px;
  height: 16px;
}

.l-plan-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
}

.l-plan-availability svg {
    width: 14px;
    height: 14px;
}

.l-plan-availability.is-full {
    color: #fca5a5;
}

.l-plan-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.l-plan-ribbon {
  width: max-content;
  margin: -8px auto 0;
  padding: 6px 11px;
  border: 1px solid rgba(245, 205, 92, 0.42);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 205, 92, 0.12);
  color: #f5d87b;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.l-plan-ribbon svg {
  width: 12px;
  height: 12px;
}

.l-plan-silver {
  border-color: rgba(207, 216, 226, 0.58);
}
.l-plan-silver::before {
  background: radial-gradient(circle at 90% 15%, rgba(207,216,226,0.3), transparent 30%);
}
.l-plan-silver .l-plan-duration,
.l-plan-silver .l-plan-price {
  color: #eef4fb;
}
.l-plan-silver .l-plan-duration,
.l-plan-silver .l-benefit-marker {
  background: #eef4fb;
  color: #101010;
}

.l-plan-bronze {
  border-color: rgba(197, 124, 57, 0.72);
}
.l-plan-bronze::before {
  background: radial-gradient(circle at 88% 14%, rgba(197,124,57,0.42), transparent 32%);
}
.l-plan-bronze .l-plan-duration,
.l-plan-bronze .l-plan-price {
  color: #f0a766;
}
.l-plan-bronze .l-plan-duration,
.l-plan-bronze .l-benefit-marker {
  background: #f0a766;
  color: #101010;
}

.l-plan-gold {
  border-color: rgba(245, 205, 92, 0.78);
}
.l-plan-gold::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,223,125,0.55), transparent 34%),
    linear-gradient(115deg, transparent 18%, rgba(255,238,168,0.28) 28%, transparent 40%);
}

.l-plan-card.is-left {
  opacity: 0.2;
  filter: saturate(0.5) brightness(0.65);
  transform: translateX(-113%) translateY(30px) scale(0.82) rotateY(-10deg);
  z-index: 1;
  pointer-events: none;
}

.l-plan-card.is-right {
  opacity: 0.2;
  filter: saturate(0.5) brightness(0.65);
  transform: translateX(13%) translateY(30px) scale(0.82) rotateY(10deg);
  z-index: 1;
  pointer-events: none;
}

.l-plan-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateX(-50%) translateY(0) scale(1) rotateY(0);
  z-index: 3;
}

.l-plan-card.is-active.l-plan-silver {
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.48), 0 0 34px rgba(207, 216, 226, 0.14);
}

.l-plan-card.is-active.l-plan-bronze {
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.48), 0 0 38px rgba(197, 124, 57, 0.2);
}

.l-plan-card.is-active.l-plan-gold {
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.52), 0 0 46px rgba(245, 205, 92, 0.22);
}

.l-plan-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 2px;
}

.l-plan-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(23, 26, 33, 0.88);
  color: var(--text-muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.l-plan-arrow:hover {
  border-color: rgba(201, 162, 39, 0.48);
  background: var(--gold-dim);
  color: var(--gold-light);
}

.l-plan-arrow svg {
  width: 16px;
  height: 16px;
}

.l-plan-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.l-plan-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--border-light);
  transition: width 180ms ease, background 180ms ease;
}

.l-plan-dot.is-active {
  width: 22px;
  background: var(--gold);
}

/* ── Features ── */
.l-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.l-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 18px;
  background: rgba(23, 26, 33, 0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex: 1;
  min-width: 110px;
  max-width: 148px;
  cursor: default;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--st) both;
}

.l-feat:nth-child(1) {
  --st: 0.42s;
}
.l-feat:nth-child(2) {
  --st: 0.52s;
}
.l-feat:nth-child(3) {
  --st: 0.62s;
}

.l-feat:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.06);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 162, 39, 0.12);
}

.l-feat-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 10px;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.l-feat:hover .l-feat-icon {
  background: rgba(201, 162, 39, 0.18);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.2);
}

.l-feat-icon i {
  color: var(--gold);
  width: 17px;
  height: 17px;
}

.l-feat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Staff link ── */
.l-staff {
  font-size: 0.78rem;
  color: var(--text-dim);
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.l-staff a {
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s ease;
}

.l-staff a:hover {
  color: var(--gold-light);
}

/* ── Animación base ── */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .l-hero {
    align-items: flex-start;
    padding: 24px 14px 30px;
  }

  .l-logo img {
    max-width: 200px;
  }

  .l-tagline {
    margin-bottom: 22px;
  }

  .l-actions {
    margin-bottom: 20px;
  }

  .l-btn {
    padding: 11px 22px;
    font-size: 0.83rem;
  }

  .l-plans {
    width: 100%;
    margin-bottom: 22px;
  }

  .l-plans-heading {
    width: min(100%, 340px);
    padding: 0 8px;
  }

  .l-plan-stage {
    min-height: 450px;
  }

  .l-plan-card {
    top: 8px;
    width: min(88vw, 340px);
    min-height: 420px;
    padding: 19px 18px 18px;
    gap: 14px;
    border-radius: 18px;
  }

  .l-plan-card.is-left {
    transform: translateX(-116%) translateY(28px) scale(0.8);
  }

  .l-plan-card.is-right {
    transform: translateX(16%) translateY(28px) scale(0.8);
  }

  .l-plan-card h2 {
    font-size: 1.22rem;
  }

  .l-plan-price {
    font-size: 1.8rem;
  }

  .l-plan-benefits {
    gap: 9px;
  }

  .l-plan-benefit {
    gap: 9px;
  }

  .l-benefit-marker {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .l-plan-controls {
    margin-top: 4px;
  }

  .l-feat {
    min-width: 95px;
    padding: 16px 12px;
  }
  .l-feat-label {
    font-size: 0.65rem;
  }
}
