:root {
  --brand-gold: #B99272;
  --dark-bg: #0E1317;
  --card-bg: #090C0F;
}

.dd-pricing {
  background: var(--dark-bg);
  color: #cfcfcf;
  min-height: 100vh;
  padding: 120px 20px;
  background-image: radial-gradient(circle at 50% 0%, rgba(185, 146, 114, 0.05) 0%, transparent 50%);
}

.dd-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dd-header {
  text-align: center;
  margin-bottom: 80px;
}

.dd-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  font-weight: 900;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 16px;
  animation: dd-fade-up 0.8s ease-out;
}

.dd-header h1 {
  color: #ffffff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: dd-fade-up 1s ease-out;
}

.dd-header p {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  animation: dd-fade-up 1.2s ease-out;
}

.dd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 10px;
}

.dd-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.dd-card-header {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  background: linear-gradient(135deg, #000 0%, #000 70%, rgba(185, 146, 114, 0.3) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dd-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--brand-gold);
  filter: blur(50px);
  opacity: 0.2;
  border-radius: 50%;
}

.dd-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dd-card:hover {
  transform: translateY(-12px);
  border-color: rgba(185, 146, 114, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dd-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
}

.dd-card-desc {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
}

.dd-price {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.dd-price span {
  color: #ffffff;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.dd-price .dd-per {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 8px;
}

.dd-features {
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
  position: relative;
}

.dd-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.dd-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--brand-gold);
  border-radius: 50%;
  border: 4px solid rgba(185, 146, 114, 0.2);
  flex-shrink: 0;
}

.dd-btn-primary {
  background: var(--brand-gold);
  color: #ffffff;
  padding: 18px 32px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(185, 146, 114, 0.2);
  position: relative;
}

.dd-btn-primary:hover {
  background: #cba88c;
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(185, 146, 114, 0.3);
}

.dd-btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 18px 32px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
}

.dd-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

@keyframes dd-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .dd-pricing {
    padding: 60px 20px;
  }
  .dd-header {
    margin-bottom: 40px;
  }
  .dd-pricing-grid {
    gap: 24px;
  }
}
