/* ============================================================
   CEZER — Discord Bot Hosting Page Stylesheet
   Discord-inspired aesthetic with Cezer beige + dark palette
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.dc-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.dc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--dark);
  z-index: 1;
}

.dc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.60) 0%,
    rgba(20,20,20,.72) 50%,
    rgba(41,41,41,.88) 100%
  );
  z-index: 2;
}

.dc-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp .8s ease .15s both;
}

.dc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px 7px 8px;
  background: rgba(228,226,221,.08);
  border: 1px solid rgba(228,226,221,.12);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(228,226,221,.65);
  margin-bottom: 32px;
}
.dc-hero-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.dc-hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--beige);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.dc-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(228,226,221,.5);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.dc-hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.dc-highlight {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(228,226,221,.7);
}
.dc-highlight i {
  width: 16px;
  height: 16px;
  color: rgba(228,226,221,.45);
}

.dc-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Promo Banner ──────────────────────────────────────────── */
.dc-promo {
  background: #5865F2;
  padding: 0;
}
.dc-promo-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.dc-promo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.dc-promo-icon i { width: 18px; height: 18px; }
.dc-promo-text {
  font-size: 14px;
  color: rgba(255,255,255,.92);
  text-align: center;
}
.dc-promo-code {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255,255,255,.18);
  border-radius: 6px;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: .05em;
  color: #fff;
  margin: 0 2px;
}
.dc-promo-btn {
  flex-shrink: 0;
}

/* ── Features Bar ──────────────────────────────────────────── */
.dc-features-bar {
  padding: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(228,226,221,.06);
}
.dc-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dc-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid rgba(228,226,221,.06);
  transition: background .3s ease;
}
.dc-feature-item:last-child { border-right: none; }
.dc-feature-item:hover { background: rgba(228,226,221,.03); }

.dc-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(88,101,242,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5865F2;
  flex-shrink: 0;
}
.dc-feature-icon i { width: 20px; height: 20px; }
.dc-feature-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--beige);
}
.dc-feature-info span {
  font-size: 11.5px;
  color: rgba(228,226,221,.4);
}

/* ── Pricing Section ───────────────────────────────────────── */
.dc-pricing {
  padding: 100px 0;
  background: var(--beige);
}
.dc-pricing-header {
  text-align: center;
  margin-bottom: 32px;
}
.dc-pricing-header .section-desc {
  margin: 8px auto 0;
}

/* Billing Toggle */
.dc-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.dc-toggle-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dc-toggle-btn:hover {
  color: var(--text);
}
.dc-toggle-active {
  background: var(--dark);
  color: var(--beige) !important;
  box-shadow: var(--shadow-sm);
}
.dc-toggle-badge {
  font-size: 11px;
  font-weight: 700;
  background: #57F287;
  color: #1a1c1e;
  padding: 2px 8px;
  border-radius: 100px;
}

/* Pricing Cards Grid */
.dc-plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.dc-plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s ease;
}
.dc-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(88,101,242,.25);
}

.dc-plan-popular {
  border-color: #5865F2;
  box-shadow: 0 0 0 1px #5865F2, var(--shadow-lg);
  transform: scale(1.03);
  z-index: 2;
}
.dc-plan-popular:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: #5865F2;
}

.dc-popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: #5865F2;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.dc-plan-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.dc-plan-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.dc-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.dc-price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.dc-price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.dc-plan-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.dc-plan-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.dc-plan-specs li:last-child { border-bottom: none; }
.dc-plan-specs li i {
  width: 15px;
  height: 15px;
  color: #5865F2;
  flex-shrink: 0;
}
.dc-plan-specs li strong {
  font-weight: 600;
}

.dc-plan-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Included Features ─────────────────────────────────────── */
.dc-included {
  padding: 100px 0;
  background: var(--dark);
}
.dc-included-header {
  text-align: center;
  margin-bottom: 56px;
}
.dc-included-header .section-label {
  color: rgba(228,226,221,.35);
}
.dc-included-header .section-title {
  color: var(--beige);
}

.dc-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dc-inc-card {
  background: rgba(228,226,221,.04);
  border: 1px solid rgba(228,226,221,.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all .3s ease;
}
.dc-inc-card:hover {
  background: rgba(228,226,221,.07);
  border-color: rgba(88,101,242,.2);
  transform: translateY(-3px);
}
.dc-inc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(88,101,242,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5865F2;
  margin-bottom: 18px;
}
.dc-inc-icon i { width: 20px; height: 20px; }
.dc-inc-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--beige);
  margin-bottom: 8px;
}
.dc-inc-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(228,226,221,.45);
}

/* ── How it Works ──────────────────────────────────────────── */
.dc-how {
  padding: 100px 0;
  background: var(--beige);
}
.dc-how-header {
  text-align: center;
  margin-bottom: 56px;
}

.dc-how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.dc-step {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all .3s ease;
}
.dc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88,101,242,.25);
}
.dc-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5865F2;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.dc-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.dc-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.dc-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 52px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.dc-step-arrow i { width: 20px; height: 20px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .dc-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .dc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dc-feature-item:nth-child(2) { border-right: none; }
  .dc-feature-item:nth-child(1),
  .dc-feature-item:nth-child(2) {
    border-bottom: 1px solid rgba(228,226,221,.06);
  }

  .dc-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .dc-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dc-plan-popular {
    transform: none;
  }
  .dc-plan-popular:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .dc-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 30px) 20px 50px;
  }
  .dc-hero-highlights {
    gap: 14px;
  }

  .dc-features-grid {
    grid-template-columns: 1fr;
  }
  .dc-feature-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(228,226,221,.06);
  }
  .dc-feature-item:last-child { border-bottom: none; }

  .dc-plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .dc-included-grid {
    grid-template-columns: 1fr;
  }

  .dc-how-steps {
    flex-direction: column;
    gap: 16px;
  }
  .dc-step-arrow {
    padding-top: 0;
    justify-content: center;
  }
  .dc-step-arrow i {
    transform: rotate(90deg);
  }

  .dc-promo-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .dc-hero-title {
    font-size: 2.2rem;
  }
  .dc-hero-icon {
    width: 22px;
    height: 22px;
  }
}
