/* ==========================================================================
   Take That Booking — Pricing page
   Hand-written CSS, no Webflow dependency. Scoped under .ttb-pricing so it
   sits safely alongside the existing site-wide nav/footer.
   Palette matches css/landing.css and css/platform.css.
   ========================================================================== */

.ttb-pricing {
  --navy: #180546;
  --purple: #4c17ca;
  --lilac: #8063fc;
  --orange: #ef8303;
  --orange-dark: #d67400;
  --text: #333333;
  --heading-grey: #585757;
  --card-border: #d9d5e8;
  --row-alt: #faf9fe;
  --white: #ffffff;
  --max: 1140px;

  font-family: 'Encode Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.ttb-pricing * { box-sizing: border-box; }
.ttb-pricing a { text-decoration: none; color: inherit; }
.ttb-pricing h1,
.ttb-pricing h2,
.ttb-pricing h3 {
  font-family: 'Encode Sans', Arial, sans-serif;
  font-weight: 500;
  margin: 0 0 0.5em;
  color: var(--heading-grey);
}
.ttb-pricing p { margin: 0 0 1em; }
.ttb-pricing .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Hero ---------------------------------------------------------------- */
.ttb-pricing .hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}
.ttb-pricing .hero .eyebrow {
  color: var(--lilac);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}
.ttb-pricing .hero h1 {
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 18px;
}
.ttb-pricing .hero .sub {
  font-size: 18px;
  color: #d9d3f7;
  max-width: 660px;
  margin: 0 auto;
}

/* Sections ---------------------------------------------------------------- */
.ttb-pricing .section { padding: 64px 0; }
.ttb-pricing .section.grey { background: #f7f6fb; }
.ttb-pricing .section-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.ttb-pricing .section-head h2 { font-size: 26px; color: var(--heading-grey); }
.ttb-pricing .section-lede { max-width: 760px; margin: 0 auto 12px; font-size: 16px; color: var(--text); }

/* Price table -------------------------------------------------------- */
.ttb-pricing .price-table-wrap { overflow-x: auto; }
.ttb-pricing table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  margin: 0 auto;
}
.ttb-pricing .price-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  text-align: right;
}
.ttb-pricing .price-table thead th:first-child,
.ttb-pricing .price-table thead th:nth-child(2) { text-align: left; }
.ttb-pricing .price-table thead th:first-child { border-top-left-radius: 10px; }
.ttb-pricing .price-table thead th:last-child { border-top-right-radius: 10px; }
.ttb-pricing .price-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--card-border);
  font-size: 15px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ttb-pricing .price-table tbody td:first-child,
.ttb-pricing .price-table tbody td:nth-child(2) { text-align: left; }
.ttb-pricing .price-table tbody td:first-child { font-weight: 600; color: var(--purple); white-space: nowrap; }
.ttb-pricing .price-table tbody td:nth-child(2) { color: var(--heading-grey); white-space: nowrap; }
.ttb-pricing .price-table tbody tr:nth-child(even) td { background: var(--row-alt); }
.ttb-pricing .price-table tbody tr.unlimited td { font-weight: 600; border-top: 2px solid var(--card-border); }
.ttb-pricing .price-table .col-pkg { min-width: 92px; }
.ttb-pricing .price-note {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 13.5px;
  color: var(--heading-grey);
}

/* Package recap ---------------------------------------------------------- */
.ttb-pricing .pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.ttb-pricing .pkg-card {
  border: 0.8px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 22px;
  background: var(--white);
}
.ttb-pricing .pkg-card.essentials { border-top: 3px solid var(--lilac); }
.ttb-pricing .pkg-card.pro { border-top: 3px solid var(--purple); }
.ttb-pricing .pkg-card.premium { border-top: 3px solid var(--orange); }
.ttb-pricing .pkg-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.ttb-pricing .pkg-card .from { font-size: 13px; color: var(--heading-grey); margin: 0 0 8px; font-weight: 600; }
.ttb-pricing .pkg-card p { font-size: 14px; color: #555; margin: 0; }
.ttb-pricing .modules-link { text-align: center; margin-top: 28px; }
.ttb-pricing .modules-link a { color: var(--purple); font-weight: 600; border-bottom: 1px solid var(--purple); padding-bottom: 2px; }

/* Final CTA band ------------------------------------------------------ */
.ttb-pricing .cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.ttb-pricing .cta-band h2 { color: var(--white); font-size: 28px; margin-bottom: 10px; }
.ttb-pricing .cta-band p { color: #e4dbff; max-width: 620px; margin: 0 auto 28px; font-size: 16px; }
.ttb-pricing .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ttb-pricing .btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}
.ttb-pricing .btn:hover { background: var(--orange-dark); }
.ttb-pricing .btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  padding: 13.5px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}
.ttb-pricing .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 760px) {
  .ttb-pricing .pkg-grid { grid-template-columns: 1fr; }
  .ttb-pricing .hero h1 { font-size: 30px; }
  .ttb-pricing .section { padding: 48px 0; }
}
