/* ============================================
   LUZID — PRICING PAGE STYLES
   ============================================ */

/* --- WEBSITE PACKAGES --- */

/* Outer wrapper — centered, max readable width */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  max-width: 920px;
  border: 1px solid var(--gray-6);
  border-radius: 3px;
  overflow: hidden;
}

/* Thin divider column between cards */
.price-card-divider {
  background: var(--gray-6);
  width: 1px;
}

.price-card {
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

/* Featured card: dark background, red left accent line */
.price-card--featured {
  background: var(--black);
  color: var(--white);
  position: relative;
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.price-card__top {
  margin-bottom: 28px;
}

.price-card__header {
  margin-bottom: 24px;
}

.price-card__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.price-card__desc {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.6;
}

.price-card--featured .price-card__desc {
  color: var(--gray-5);
}

.price-card__price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  line-height: 1;
  margin-bottom: 6px;
}

.price-card__currency {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-4);
  padding-bottom: 6px;
}

.price-card--featured .price-card__currency {
  color: var(--gray-5);
}

.price-card__amount {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-card__note {
  font-size: 12px;
  color: var(--gray-4);
  margin-top: 4px;
}

.price-card--featured .price-card__note {
  color: var(--gray-5);
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  margin-bottom: 32px;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.4;
}

.price-card--featured .price-card__features li {
  color: var(--gray-5);
}

.price-card__features li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.price-card__btn {
  width: 100%;
  justify-content: center;
}

.price-card--featured .btn--outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.price-card--featured .btn--outline:hover {
  background: rgba(255,255,255,0.08);
}

.pricing-sub-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-4);
}

.pricing-sub-note a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- MONTHLY RETAINERS --- */

.retainer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 640px;
  align-items: stretch;
}

.retainer-card {
  background: var(--white);
  border: 1px solid var(--gray-6);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}

.retainer-card--mid {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.retainer-card__name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.retainer-card__price {
  font-size: 14px;
  color: var(--gray-3);
  margin-bottom: 24px;
}

.retainer-card--mid .retainer-card__price {
  color: var(--gray-5);
}

.retainer-card__price strong {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
}

.retainer-card--mid .retainer-card__price strong {
  color: var(--white);
}

.retainer-card__price span {
  font-size: 14px;
  color: var(--gray-4);
}

.retainer-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.retainer-card__list li {
  font-size: 14px;
  color: var(--gray-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.retainer-card--mid .retainer-card__list li {
  color: var(--gray-5);
}

.retainer-card__list li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.retainer-card--mid .btn--primary {
  background: var(--white);
  color: var(--black);
}

.retainer-card--mid .btn--primary:hover {
  background: var(--gray-7);
}

/* --- ADD-ONS --- */

.addons-grid {
  max-width: 760px;
}

.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
}

.addon-row__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.addon-row__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.addon-row__desc {
  font-size: 13px;
  color: var(--gray-4);
  line-height: 1.55;
  max-width: 460px;
}

.addon-row__price {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- PRICING NOTE --- */

.pricing-note {
  background: var(--gray-7);
  border-top: 1px solid var(--gray-6);
  border-bottom: 1px solid var(--gray-6);
  padding: clamp(48px, 6vw, 80px) 0;
}

.pricing-note__inner {
  max-width: 680px;
}

/* ============================================
   PRICING — RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  /* Stack the two pricing cards vertically */
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  /* Swap divider from vertical to horizontal */
  .price-card-divider {
    width: 100%;
    height: 1px;
  }

  /* Featured card: red accent moves to top */
  .price-card--featured::before {
    width: 100%;
    height: 3px;
    top: 0; left: 0;
  }

  .retainer-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

@media (max-width: 520px) {
  .addon-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .addon-row__price {
    color: var(--red);
  }
}
