/* Banquet (flagship product) page — pricing tiers, FAQ accordion, features grid, add-ons */

/* ----- Hero highlights list ----- */
.hero-highlights {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  list-style: none;
}
.hero-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
}
.hero-highlights li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%231f6feb' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 2px;
}

.hero-floater {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.hero-floater .pill {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
}
.hero-floater span:not(.pill) { color: var(--ink-soft); font-weight: 500; }

/* ----- Compact stats bar ----- */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.stats-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .stats-bar .wrap { grid-template-columns: 1fr; gap: 18px; text-align: center; } }
.mini-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
}
.mini-stat .num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -.01em;
}
.mini-stat .label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ----- Pricing tiers ----- */
.pricing-block {
  padding: 100px 0;
  background: var(--bg);
}
.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pricing-head .eyebrow { margin-bottom: 14px; }
.pricing-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.pricing-head h2 em { font-style: italic; color: var(--brand); }
.pricing-head p { color: var(--ink-soft); font-size: 16.5px; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier.popular {
  background: linear-gradient(180deg, #fbfdff 0%, #fff 100%);
  border-color: transparent;
  box-shadow: 0 24px 60px -14px rgba(31,111,235,.25), 0 6px 18px rgba(13,27,42,.06);
  transform: scale(1.02);
}
@media (max-width: 980px) { .tier.popular { transform: none; } }
.tier.popular::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  padding: 2px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  box-shadow: 0 6px 16px -4px rgba(31,111,235,.45);
}
.tier-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.tier-price .currency {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink-soft);
}
.tier-price .amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 58px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1;
}
.tier-per { font-size: 13.5px; color: var(--ink-soft); }
.tier-min { font-size: 12.5px; color: var(--ink-faint); margin-top: 4px; }
.tier-cta { margin: 22px 0 26px; }
.tier-cta .btn { width: 100%; justify-content: center; }
.tier hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 22px;
}
.tier-features {
  list-style: none;
  display: grid;
  gap: 11px;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.tier-features li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%231f6feb' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.tier-features li.head {
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 4px;
}
.tier-features li.head::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2316b8a6' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tier-custom {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--ink-dark), #14243a);
  color: #fff;
  border-radius: var(--r);
  padding: 36px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .tier-custom { grid-template-columns: 1fr; text-align: center; } }
.tier-custom h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.tier-custom p { color: #cfd9e3; font-size: 14.5px; }
.tier-custom .btn {
  background: #fff;
  color: var(--brand);
}
.tier-custom .btn:hover { background: #fafcff; color: var(--brand-deep); }

.pricing-foot {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 18px;
}

/* ----- Features mega grid (16 mini-cards with icons) ----- */
.features-mega { padding: 100px 0; }
.features-mega .head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.features-mega .head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 14px 0;
}
.features-mega .head h2 em { font-style: italic; color: var(--brand); }
.features-mega .head p { color: var(--ink-soft); font-size: 16.5px; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feat-mini {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 22px 22px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat-mini:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feat-mini .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.feat-mini .ic svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feat-mini.accent .ic { background: var(--accent-tint); color: var(--accent); }
.feat-mini h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -.005em;
  margin-bottom: 8px;
}
.feat-mini p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ----- Add-ons grid ----- */
.addons-block {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.addons-block .head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.addons-block .head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  margin: 14px 0;
}
.addons-block .head h2 em { font-style: italic; color: var(--brand); }
.addons-block .head p { color: var(--ink-soft); font-size: 16.5px; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.addon {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 22px 22px 20px;
  transition: transform .2s, border-color .2s;
}
.addon:hover { border-color: var(--brand); transform: translateY(-2px); }
.addon h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.addon h4 .ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.addon h4 .ic svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.addon p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 10px; }
.addon a { color: var(--brand); font-size: 13px; font-weight: 600; text-decoration: none; }
.addon a:hover { text-decoration: underline; }

/* ----- Why Pxier strip ----- */
.why-block { padding: 100px 0; }
.why-block .head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.why-block .head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 14px 0;
}
.why-block .head h2 em { font-style: italic; color: var(--brand); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-item .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.why-item .ic svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.why-item h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.005em;
}

/* ----- FAQ accordion (native <details>) ----- */
.faq-block { padding: 100px 0; background: var(--bg); }
.faq-block .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
@media (max-width: 980px) { .faq-block .grid { grid-template-columns: 1fr; gap: 40px; } }

.faq-block h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 14px 0 14px;
  line-height: 1.12;
}
.faq-block h2 em { font-style: italic; color: var(--brand); }
.faq-block .intro { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 28px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231f6feb' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/14px no-repeat;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  background: linear-gradient(135deg, var(--brand), #4486f0);
  color: #fff;
  padding: 32px 30px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.faq-aside h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.faq-aside h3 em { font-style: italic; }
.faq-aside p {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: .92;
  margin-bottom: 14px;
}
.faq-aside .btn {
  background: #fff;
  color: var(--brand);
  width: 100%;
  justify-content: center;
}
.faq-aside .btn:hover { background: #fafcff; color: var(--brand-deep); }
@media (max-width: 980px) { .faq-aside { position: static; } }

/* ----- Chip row (used in PMS section) ----- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chip {
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 99px;
}
