/* ── Section spacing ─────────────────────────────────
   .section-space is defined in master.css.
   Mobile override below keeps page-specific breakpoint.
   ─────────────────────────────────────────────────── */

/* ── Eyebrow / section kicker ────────────────────────
   .eyebrow and .section-kicker defined in master.css.
   ─────────────────────────────────────────────────── */

.lime {
  color: var(--accent-lime);
}

/* ── Hero h1 ─────────────────────────────────────────
   Base h1 style (.hero-h1 / .section-heading h1) is in master.css.
   Page-specific sizing below.
   ─────────────────────────────────────────────────── */
.hero-copy h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.12;
  color: #000000;
}

/* ── Hero / section body paragraph ───────────────────
   .section-heading p and .section-lede defined in master.css.
   ─────────────────────────────────────────────────── */

/* .hero-lede base is in master.css — home-page specific overrides below */
.hero-lede {
  max-width: 690px;
  margin-top: 26px;
}

/* .section-copy and context-specific colour overrides */
.section-copy {
  color: var(--muted-alpha);
  font-size: var(--fs-body-lg);
  line-height: 1.8;
}

/* Black-band / final-cta text overrides (dark backgrounds) */
.black-band p,
.final-cta p {
  color: rgba(255, 255, 255, 0.68);
}

/* Primary / secondary CTA base styles are in master.css.
   Only home-page specific overrides below. */

.primary-cta:hover,
.secondary-cta:hover,
.image-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
}

.trust-line {
  display: flex;
  max-width: 680px;
  align-items: flex-start;
  gap: 12px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.mini-check,
.check-list span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-lime);
  color: #000000;
  font-size: 13px;
  font-weight: 900;
}

.hero-section {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, rgba(123, 93, 255, 0.15), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(212, 255, 18, 0.22), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb-purple {
  width: 180px;
  height: 180px;
  left: 7%;
  top: 24%;
  background: rgba(123, 93, 255, 0.2);
}

.hero-orb-lime {
  width: 140px;
  height: 140px;
  right: 12%;
  top: 18%;
  background: rgba(212, 255, 18, 0.42);
}

.dashboard-visual,
.strategy-image,
.result-visual,
.founder-visual,
.cta-dashboard {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.12);
}

.hero-dashboard {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.dashboard-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: contain;
  object-position: bottom;
}

.growth-bars,
.cta-graph {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 108px;
  margin-top: 18px;
}

.growth-bars i,
.cta-graph i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: var(--primary-purple);
}

.growth-bars i:nth-child(even),
.cta-graph i:nth-child(even) {
  background: var(--accent-lime);
}

.growth-bars i:nth-child(1), .cta-graph i:nth-child(1) { height: 34%; }
.growth-bars i:nth-child(2), .cta-graph i:nth-child(2) { height: 56%; }
.growth-bars i:nth-child(3), .cta-graph i:nth-child(3) { height: 74%; }
.growth-bars i:nth-child(4), .cta-graph i:nth-child(4) { height: 48%; }
.growth-bars i:nth-child(5), .cta-graph i:nth-child(5) { height: 84%; }
.growth-bars i:nth-child(6) { height: 68%; }
.growth-bars i:nth-child(7) { height: 92%; }

.trust-band {
  background: #ffffff;
}

.trust-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  text-align: center;
}

.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-metrics span {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #f7f7fa;
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

/* Section h2 is defined globally in master.css.
   Black-band / final-cta colour overrides: */
.black-band h2,
.final-cta h2 {
  color: #ffffff;
}

.image-card,
.pricing-card,
.testimonial-card,
.proof-card,
.timeline-step {
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background: #ffffff;
}

.image-card {
  padding: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card:hover {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.1);
}

.service-showcase {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-list {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 30px 0;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2f0ff;
  color: var(--primary-purple);
  font-weight: 900;
}

.service-row h3 {
  color: #000000;
  font-size: 22px;
  font-weight: 800;
}

.service-row p {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.7;
}

.service-row a {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  color: var(--primary-purple);
  font-weight: 900;
}

.service-row img {
  display: none;
  width: 210px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.placeholder-image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: #f6f6f9;
}

.placeholder-image img,
.workflow-shot img,
.strategy-image > img,
.result-visual > img,
.founder-visual > img,
.cta-dashboard > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strategy-image > img,
.result-visual > img,
.founder-visual > img,
.cta-dashboard > img {
  position: absolute;
  inset: 0;
}

.strategy-image > img,
.founder-visual > img {
  opacity: 0.78;
}

.result-visual > img,
.cta-dashboard > img {
  opacity: 0.32;
}

.placeholder-image span,
.strategy-image span,
.result-visual > span,
.founder-visual > span,
.workflow-shot span,
.cta-dashboard > span {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.analytics-placeholder {
  background:
    linear-gradient(135deg, transparent 20%, rgba(123, 93, 255, 0.22) 21% 24%, transparent 25%),
    radial-gradient(circle at 82% 28%, rgba(212, 255, 18, 0.6), transparent 16%),
    #f6f6f9;
}

.content-placeholder {
  background:
    linear-gradient(90deg, rgba(123, 93, 255, 0.18) 0 18%, transparent 18% 24%, rgba(0, 0, 0, 0.07) 24% 58%, transparent 58%),
    radial-gradient(circle at 74% 70%, rgba(212, 255, 18, 0.45), transparent 18%),
    #f6f6f9;
}

.report-placeholder {
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 32px),
    linear-gradient(135deg, rgba(123, 93, 255, 0.22), transparent 44%),
    #f6f6f9;
}

.image-card h3,
.timeline-step h3,
.pricing-card h3 {
  margin-top: 24px;
  color: #000000;
  font-size: 25px;
  font-weight: 900;
}

.image-card p,
.timeline-step span,
.pricing-card li,
.testimonial-card p,
.text-grid p,
.proof-card span {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.75;
}

.image-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--primary-purple);
  font-weight: 900;
}

.image-card a span {
  color: var(--accent-lime);
}

.soft-section {
  background: var(--soft-gray);
}

.strategy-image,
.founder-visual,
.result-visual,
.cta-dashboard {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.strategy-image {
  background:
    radial-gradient(circle at 20% 24%, rgba(123, 93, 255, 0.24), transparent 20%),
    radial-gradient(circle at 78% 72%, rgba(212, 255, 18, 0.42), transparent 18%),
    linear-gradient(135deg, #ffffff, #f3f3f7);
}

.check-list {
  display: grid;
  gap: 18px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  padding: 14px;
}

.workflow-shot {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(123, 93, 255, 0.2), transparent 38%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0 18px, transparent 18px 34px),
    #f8f8fb;
}

.workflow-shot img {
  min-height: 170px;
}

.timeline-step p {
  margin-top: 22px;
  color: var(--primary-purple);
  font-weight: 900;
}

.framework-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.framework-visual {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7fa;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
}

.framework-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-board {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 22px 0;
  box-shadow: none;
}

.process-step p {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #000000;
  color: var(--accent-lime);
  font-weight: 900;
}

.process-step h3 {
  color: #000000;
  font-size: 22px;
  font-weight: 800;
}

.process-step span {
  display: block;
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.7;
}

.black-band {
  background: #000000;
}

.black-band h2,
.final-cta h2 {
  color: #ffffff;
}

.black-band p,
.final-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.result-visual {
  background: #111111;
  box-shadow: none;
}

.result-visual > span {
  color: rgba(255, 255, 255, 0.52);
}

.before-after {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.before-after div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.before-after small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

.before-after b {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 44px;
  font-weight: 900;
}

.growth-bars {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 36px;
  height: 230px;
}

.proof-card {
  padding: 26px;
  background: #111111;
  color: #ffffff;
}

.proof-card strong {
  display: block;
  color: var(--accent-lime);
  font-size: 48px;
  font-weight: 900;
}

.proof-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.founder-visual {
  background:
    radial-gradient(circle at 22% 20%, rgba(123, 93, 255, 0.22), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(212, 255, 18, 0.52), transparent 14%),
    #f7f7fa;
}

.headshot {
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), transparent 18%),
    linear-gradient(135deg, var(--primary-purple), #000000);
}

.growth-note {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 10%;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  color: #000000;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.text-grid {
  display: grid;
  gap: 16px;
}

.text-grid p {
  border-left: 4px solid var(--primary-purple);
  background: #ffffff;
  padding: 20px;
}

.testimonial-card {
  padding: 28px;
}

.headshot {
  width: 68px;
  height: 68px;
  object-fit: cover;
  display: block;
}

.headshot-two {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), transparent 18%),
    linear-gradient(135deg, #000000, var(--accent-lime));
}

.headshot-three {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), transparent 18%),
    linear-gradient(135deg, var(--primary-purple), var(--accent-lime));
}

.testimonial-card p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 17px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 24px;
  color: #000000;
  font-weight: 900;
}

.testimonial-card span {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 800;
}

.pricing-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card.featured {
  border-color: rgba(123, 93, 255, 0.38);
  box-shadow: 0 34px 90px rgba(123, 93, 255, 0.16);
}

.pricing-card p {
  color: var(--primary-purple);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-top: 16px;
  color: #000000;
  font-size: 46px;
  font-weight: 900;
}

.pricing-card strong span {
  color: rgba(0, 0, 0, 0.45);
  font-size: 17px;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary-purple);
}

.pricing-card a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  font-weight: 900;
}

.featured a {
  background: var(--primary-purple);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px 22px;
}

.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--primary-purple);
}

.faq-list p {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.75;
}

.final-cta {
  background: #ffffff;
}

.cta-dashboard {
  min-height: 390px;
  background: #111111;
  box-shadow: none;
}

.cta-dashboard > span {
  color: rgba(255, 255, 255, 0.52);
}

.cta-graph {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 230px;
}

@media (min-width: 768px) {
  .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .text-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .trust-panel {
    padding: 30px 34px;
  }

  .service-row {
    grid-template-columns: auto 1fr auto;
    min-height: 150px;
  }

  .service-row img {
    display: block;
  }

  .framework-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .process-step {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-dashboard,
  .strategy-image,
  .result-visual,
  .founder-visual {
    min-height: 430px;
  }

  .proof-card strong,
  .pricing-card strong {
    font-size: 36px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .growth-bars {
    height: 150px;
  }
}

/* =====================================================================
   HOMEPAGE FAQ — design override for .rb-faq-list
   The homepage uses CARD-style FAQ (bordered cards with gap + padding),
   not the inner-page line-separator style.
   These overrides make .rb-faq-list match the original .faq-list design
   on the homepage exactly.
   ===================================================================== */
#faq .rb-faq-list {
  gap: 14px;
}

#faq .rb-faq-list details {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px 22px;
  box-shadow: none;
}

#faq .rb-faq-list details:hover {
  box-shadow: none;
  transform: none;
}

#faq .rb-faq-list summary {
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  background: transparent !important;
}

#faq .rb-faq-list details[open] > summary {
  background: transparent !important;
}

#faq .rb-faq-list .chevron-icon {
  color: var(--primary-purple);
}

#faq .rb-faq-list details p {
  padding: 0;
  margin-top: 16px;
  font-size: 15px;
}
