/* ===== PRICELIST PAGE STYLES ===== */

/* Hero Banner */
.pl-hero {
  position: relative;
  width: 100vw;
  height: 50vh;
  min-height: 300px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 3rem;
  padding: 0;
  text-align: center;
}

.pl-hero-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.pl-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.pl-hero-accent {
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pl-hero-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Pricing Section */
.pl-section {
  margin-bottom: 2rem;
}

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

/* Pricing Cards */
.pl-card {
  background: rgba(255, 255, 255, 0.03);
  /* Glassy dark effect */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.pl-card:hover {
  border-color: var(--text-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


.pl-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.pl-card-header i {
  display: none;
  /* Hide icon to match cleaner reference */
}

.pl-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-accent);
  letter-spacing: -0.01em;
}

.pl-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.pl-price-unit {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

.pl-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.pl-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pl-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pl-features li:last-child {
  border-bottom: none;
}

.pl-features li i {
  color: #000;
  background: var(--text-accent);
  font-size: 10px;
  padding: 2px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.pl-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  background: var(--text-accent);
  color: #000;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: fit-content;
  text-align: center;
  margin-top: auto;
}

.pl-order-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.pl-order-btn i {
  display: none;
}

/* Notes Section */
.pl-notes {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--text-accent);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pl-notes-icon {
  font-size: 22px;
  color: var(--text-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.pl-notes h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.pl-notes ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pl-notes ul li {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.pl-cta {
  background: var(--surface-1);
  border: 0.5px solid var(--border-accent);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.pl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(252, 163, 17, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pl-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  position: relative;
}

.pl-cta p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
}

.pl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  color: var(--nav-on-yellow);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
  position: relative;
}

.pl-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 163, 17, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .pl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pl-hero {
    padding: 2rem 1.25rem;
  }

  .pl-grid {
    grid-template-columns: 1fr;
  }

  .pl-notes {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pl-cta {
    padding: 1.75rem 1.25rem;
  }
}