.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.dl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: all 0.3s;
}

.dl-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.dl-card-full { grid-column: 1 / -1; }

.dl-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dl-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-icon.g { background: var(--green-light); color: var(--green); }
.dl-icon.b { background: var(--accent-light); color: var(--accent); }
.dl-icon.y { background: #fff7e6; color: #c07800; }
.dl-icon svg { width: 26px; height: 26px; }

.dl-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.dl-list.single { grid-template-columns: 1fr; }

.dl-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 15px;
  color: var(--muted);
  padding: 4px 0;
}

.dl-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.price-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.price-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(77, 149, 168, 0.15);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.price-icon { font-size: 40px; margin-bottom: 16px; }
.price-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.price-note { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.price-from { font-size: 13px; color: var(--muted); font-weight: 500; }
.price-amt { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); }
.price-per { font-size: 15px; color: var(--muted); }

.price-features {
  list-style: none;
  text-align: left;
  margin: 28px 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: var(--bg-alt);
  color: var(--text);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  margin-top: auto;
}

.price-card.featured .price-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.price-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.price-card.featured .price-cta:hover { background: var(--accent-h); }

.price-note-box {
  background: var(--accent-light);
  border-radius: var(--r-sm);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-list { grid-template-columns: 1fr; }
}
