/* ================================================
   Step Up — pricing.css
   Pricing page styles
   Rules: px only · no rem · no :root variables
   ================================================ */

/* ------------------------------------------------
   PAGE HERO
   ------------------------------------------------ */
.page-hero {
  padding: 80px 48px 56px;
  max-width: 720px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  background: rgba(201, 168, 76, 0.07);
}

.page-hero-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero-title em {
  font-style: normal;
  color: #c9a84c;
}

.page-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 520px;
}

/* ------------------------------------------------
   PRICING SECTION — 3-column grid
   ------------------------------------------------ */
.pricing-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px;
}

/* ------------------------------------------------
   PRICING CARD — base
   ------------------------------------------------ */
.pricing-card {
  display: flex;
  flex-direction: column;
  background: #111111;
  padding: 44px 36px 36px;
  position: relative;
  border-radius: 10px;
  transition: background 0.18s ease;
}

.pricing-card:hover {
  background: #151515;
}

/* Featured card — gold top accent */
.pricing-card--featured {
  background: #131310;
  border-top: 2px solid #c9a84c;
}

.pricing-card--featured:hover {
  background: #171714;
}

/* Quote card — subtle purple tint */
.pricing-card--quote {
  background: #111113;
}

.pricing-card--quote:hover {
  background: #141416;
}

/* "Most requested" label */
.featured-label {
  position: absolute;
  top: -1px;
  right: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  background: #c9a84c;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

/* ------------------------------------------------
   CARD TOP — icon + name + desc
   ------------------------------------------------ */
.pricing-card-top {
  margin-bottom: 32px;
}

/* Plan icon */
.plan-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid;
}

.plan-icon--rose {
  color: #e8a0a0;
  background: rgba(232, 160, 160, 0.08);
  border-color: rgba(232, 160, 160, 0.2);
}

.plan-icon--gold {
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.25);
}

.plan-icon--purple {
  color: #bc99f5;
  background: rgba(188, 153, 245, 0.08);
  border-color: rgba(188, 153, 245, 0.2);
}

.plan-name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.plan-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

/* ------------------------------------------------
   PRICE AREA
   ------------------------------------------------ */
.pricing-card-price {
  margin-bottom: 28px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.price-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.5;
}

/* Quote badge — used in Event Systems card instead of a price */
.quote-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(188, 153, 245, 0.06);
  border: 1px solid rgba(188, 153, 245, 0.15);
  border-radius: 6px;
}

.quote-badge > i {
  font-size: 22px;
  color: #bc99f5;
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-badge-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.quote-badge-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
}

/* ------------------------------------------------
   CARD CTA BUTTON
   ------------------------------------------------ */
.plan-cta {
  display: block;
  text-align: center;
  margin-bottom: 36px;
  width: 100%;
}

/* ------------------------------------------------
   INCLUDES LABEL
   ------------------------------------------------ */
.plan-includes-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 16px;
}

/* ------------------------------------------------
   FEATURE LIST
   ------------------------------------------------ */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.plan-features li i {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Icon colour per card type */
.pricing-card:not(.pricing-card--featured):not(.pricing-card--quote) .plan-features li i {
  color: #e8a0a0;
}

.pricing-card--featured .plan-features li i {
  color: #c9a84c;
}

.pricing-card--quote .plan-features li i {
  color: #bc99f5;
}

/* ------------------------------------------------
   PLAN TAGS
   ------------------------------------------------ */
.plan-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-tag {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  padding: 3px 9px;
}

/* ------------------------------------------------
   QUOTE STRIP
   ------------------------------------------------ */
.quote-strip {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.quote-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 48px;
}

.quote-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.quote-icon {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-heading {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.quote-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  max-width: 480px;
}

/* ------------------------------------------------
   FAQ SECTION
   ------------------------------------------------ */
.faq-section {
  padding: 64px 48px;
  max-width: 860px;
}

.faq-heading {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: #111111;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease;
}

.faq-q:hover {
  background: #161616;
}

.faq-q span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

.faq-chevron {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: transform 0.28s ease, color 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #c9a84c;
}

.faq-item.open .faq-q {
  background: #131310;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.28s ease;
  background: #0f0f0d;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 16px 28px 24px;
}

.faq-a p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* ------------------------------------------------
   CTA BANNER
   ------------------------------------------------ */
.cta-banner {
  margin: 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  background: #111111;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 52px 56px;
  gap: 48px;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-heading {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width: 380px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* ------------------------------------------------
   RESPONSIVE — Tablet <= 1024px
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .pricing-section {
    grid-template-columns: 1fr;
  }

  /* Bump featured card to top */
  .pricing-card--featured {
    order: -1;
  }
}

/* ------------------------------------------------
   RESPONSIVE — Mobile <= 768px
   ------------------------------------------------ */
@media (max-width: 768px) {
  .page-hero {
    padding: 48px 20px 36px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .pricing-card {
    padding: 36px 24px 28px;
  }

  .price-amount {
    font-size: 48px;
  }

  .faq-section {
    padding: 48px 20px;
    max-width: 100%;
  }

  .faq-q {
    padding: 18px 20px;
  }

  .faq-a {
    padding: 0 20px;
  }

  .faq-item.open .faq-a {
    padding: 14px 20px 20px;
  }

  .quote-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }

  .cta-banner {
    margin: 0 20px;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 28px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ------------------------------------------------
   RESPONSIVE — Small <= 480px
   ------------------------------------------------ */
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 26px;
  }

  .faq-heading {
    font-size: 20px;
  }

  .featured-label {
    right: 20px;
  }
}