.dawcito-plans {
  grid-column: 1 / -1;
  width: 100%;
  margin: clamp(1rem, 3vw, 2.5rem) 0;
  padding: clamp(1.4rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(255, 122, 0, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dawcito-plans-heading {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.dawcito-plans-eyebrow {
  margin: 0 0 0.45rem;
  color: #ff8a00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dawcito-plans h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
}

.dawcito-plans-intro {
  max-width: 650px;
  margin: 0.75rem 0 0;
  color: #c8c1b7;
  font-size: 1rem;
  line-height: 1.65;
}

.dawcito-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dawcito-plan-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dawcito-plan-card-pro {
  background: #11100f;
  border-color: rgba(255, 122, 0, 0.62);
  box-shadow:
    inset 0 3px 0 #ff7a00,
    0 16px 40px rgba(255, 122, 0, 0.1);
}

.dawcito-plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.65rem;
  color: #e6e0d8;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dawcito-plan-card-pro .dawcito-plan-label {
  color: #0a0a0a;
  background: #ff8a00;
  border-color: #ffad54;
}

.dawcito-plan-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 900;
}

.dawcito-plan-price {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  margin: 0.7rem 0 0;
  color: #bdb6ad;
}

.dawcito-plan-price strong {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1;
  font-weight: 900;
}

.dawcito-plan-summary {
  min-height: 3.25rem;
  margin: 0.8rem 0 1rem;
  color: #c8c1b7;
  line-height: 1.55;
}

.dawcito-plan-features {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 1.15rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.dawcito-plan-features li {
  position: relative;
  padding-left: 1.55rem;
  color: #eee9e2;
  line-height: 1.45;
}

.dawcito-plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: 900;
}

.dawcito-plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  padding: 0.8rem 1rem;
  color: #fff;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.dawcito-plan-action:hover,
.dawcito-plan-action:focus {
  color: #fff;
  background: #303030;
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-1px);
}

.dawcito-plan-action-pro {
  color: #0a0a0a;
  background: #ff7a00;
  border-color: #ffad54;
}

.dawcito-plan-action-pro:hover,
.dawcito-plan-action-pro:focus {
  color: #000;
  background: #ff9b1f;
  border-color: #ffc27f;
}

@media (max-width: 720px) {
  .dawcito-plan-grid {
    grid-template-columns: 1fr;
  }

  .dawcito-plan-summary {
    min-height: 0;
  }
}
