/* ==========================================================================
   Take That Booking — homepage landing page
   Hand-written CSS, no Webflow dependency. Scoped under .ttb-landing so it
   sits safely alongside the existing site-wide nav/footer (which still use
   the Webflow-exported CSS in this same directory).
   Palette matches the live brand (see css/take-that-booking-dc6989.webflow.css
   custom properties): navy / purple / lilac / orange.
   ========================================================================== */

.ttb-landing {
  --navy: #180546;
  --purple: #4c17ca;
  --lilac: #8063fc;
  --orange: #ef8303;
  --orange-dark: #d67400;
  --text: #333333;
  --heading-grey: #585757;
  --card-bg: rgba(228, 228, 228, 0.3);
  --card-border: #d9d5e8;
  --white: #ffffff;
  --max: 1140px;

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

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

/* Buttons -------------------------------------------------------------- */
.ttb-landing .btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.ttb-landing .btn:hover { background: var(--orange-dark); }
.ttb-landing .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-landing .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.ttb-landing .btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 13.5px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}
.ttb-landing .btn-outline:hover { background: rgba(76, 23, 202, 0.06); }

/* Hero ------------------------------------------------------------------ */
.ttb-landing .hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: var(--white);
  padding: 96px 0 88px;
  text-align: center;
}
.ttb-landing .hero .eyebrow {
  color: var(--lilac);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}
.ttb-landing .hero h1 {
  font-size: 44px;
  line-height: 1.2;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 20px;
}
.ttb-landing .hero .sub {
  font-size: 19px;
  color: #d9d3f7;
  max-width: 640px;
  margin: 0 auto 34px;
}
.ttb-landing .hero .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ttb-landing .hero .trust-line {
  font-size: 13.5px;
  color: #bcb2e6;
}
.ttb-landing .hero .more-link {
  display: inline-block;
  margin-top: 34px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}
.ttb-landing .hero .more-link:hover { border-color: var(--white); }

/* Sections ---------------------------------------------------------------- */
.ttb-landing .section { padding: 84px 0; }
.ttb-landing .section.grey { background: #f7f6fb; }
.ttb-landing .section.navy { background: var(--navy); color: var(--white); }
.ttb-landing .section-head { text-align: center; max-width: 700px; margin: 0 auto 46px; }
.ttb-landing .section-head.left { text-align: left; margin: 0 0 24px; }
.ttb-landing .section-head h2 { font-size: 30px; color: var(--heading-grey); }
.ttb-landing .section.navy .section-head h2 { color: var(--white); }
.ttb-landing .section-head .kicker {
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.ttb-landing .section-lede {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 16.5px;
  color: var(--text);
}
.ttb-landing .section-lede.left { margin: 0 0 32px; }

/* Grids -------------------------------------------------------------- */
.ttb-landing .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; align-items: start; }
.ttb-landing .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ttb-landing .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Pain / reframe question lists ---------------------------------------- */
.ttb-landing .question-list { list-style: none; margin: 0; padding: 0; }
.ttb-landing .question-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--card-border);
  font-size: 16px;
}
.ttb-landing .question-list li:last-child { border-bottom: none; }
.ttb-landing .question-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ttb-landing .whatif-list { list-style: none; margin: 0; padding: 0; }
.ttb-landing .whatif-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  font-size: 16px;
}
.ttb-landing .whatif-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--orange);
  font-weight: 700;
}

/* Value prop / benefit columns ------------------------------------------ */
.ttb-landing .value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 46px; }
.ttb-landing .value-card { text-align: center; padding: 0 12px; }
.ttb-landing .value-card .num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 16px; font-size: 16px;
}
.ttb-landing .value-card h3 { font-size: 18px; color: var(--navy); }
.ttb-landing .value-card p { font-size: 14.5px; color: #666; margin: 0; }

/* Cards (differentiator features) --------------------------------------- */
.ttb-landing .card {
  background: var(--card-bg);
  border: 0.8px solid var(--card-border);
  border-radius: 15px;
  padding: 30px 26px;
}
.ttb-landing .card h3 { color: var(--purple); font-size: 18.5px; margin-bottom: 10px; }
.ttb-landing .card p { font-size: 14.5px; color: #555; margin: 0; }

/* Answers box ------------------------------------------------------------ */
.ttb-landing .answers-box {
  background: var(--white);
  border: 0.8px solid var(--card-border);
  border-radius: 15px;
  padding: 34px 32px;
  margin-top: 44px;
}
.ttb-landing .answers-box .label {
  font-weight: 600; color: var(--navy); font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px;
}
.ttb-landing .answers-box ul { margin: 0; padding-left: 20px; font-size: 15.5px; }
.ttb-landing .answers-box li { margin-bottom: 8px; }

/* Everyone performs better columns --------------------------------------- */
.ttb-landing .roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.ttb-landing .role-card { text-align: center; }
.ttb-landing .role-card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px; font-weight: 700; color: var(--lilac);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.ttb-landing .role-card h4 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.ttb-landing .role-card p { color: #cdc4ee; font-size: 13.5px; margin: 0; }

/* Testimonials ------------------------------------------------------------ */
.ttb-landing .testimonial {
  background: var(--white);
  border: 0.8px solid var(--card-border);
  border-radius: 15px;
  padding: 36px 32px;
}
.ttb-landing .testimonial p { font-size: 16.5px; font-style: italic; color: var(--text); }
.ttb-landing .testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.ttb-landing .testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px; flex: none;
}
.ttb-landing .testimonial .name { font-weight: 600; font-size: 14.5px; color: var(--navy); }
.ttb-landing .testimonial .role { font-size: 13px; color: #777; }

/* Mission / integration ---------------------------------------------------- */
.ttb-landing .mission-quote {
  font-size: 22px;
  color: var(--navy);
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
  font-weight: 500;
  line-height: 1.45;
}
.ttb-landing .integration-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ttb-landing .integration-list li {
  background: var(--white);
  border: 0.8px solid var(--card-border);
  border-radius: 12px;
  padding: 22px 20px;
  font-size: 14.5px;
}
.ttb-landing .integration-list strong { display: block; color: var(--navy); font-size: 15.5px; margin-bottom: 6px; }

/* FAQ ---------------------------------------------------------------------- */
.ttb-landing .faq-item { border-bottom: 1px solid var(--card-border); padding: 20px 0; }
.ttb-landing .faq-item h4 { font-size: 16.5px; color: var(--navy); margin-bottom: 8px; }
.ttb-landing .faq-item p { font-size: 14.5px; color: #555; margin: 0; }

/* Final CTA band ------------------------------------------------------------ */
.ttb-landing .cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.ttb-landing .cta-band h2 { color: var(--white); font-size: 30px; }
.ttb-landing .cta-band .recap { color: #e4dbff; max-width: 700px; margin: 0 auto 18px; font-size: 16.5px; }
.ttb-landing .cta-band .cost-line {
  color: #f4d9b0;
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 15px;
  font-style: italic;
}
.ttb-landing .cta-band .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .ttb-landing .grid-2,
  .ttb-landing .grid-3,
  .ttb-landing .grid-4,
  .ttb-landing .value-props,
  .ttb-landing .roles-grid,
  .ttb-landing .integration-list { grid-template-columns: 1fr; }
  .ttb-landing .hero h1 { font-size: 32px; }
  .ttb-landing .section { padding: 56px 0; }
  .ttb-landing .mission-quote { font-size: 19px; }
}
