@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #f6f5f0;
  --paper: #fff;
  --ink: #111714;
  --muted: #626b66;
  --green: #087a32;
  --green-dark: #056426;
  --green-soft: #eaf4ec;
  --slate: #64748b;
  --charcoal: #1f2933;
  --line: rgba(17, 23, 20, .10);
  --shadow: 0 22px 60px rgba(28, 38, 32, .09)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at 78% 14%, rgba(8, 122, 50, .05), transparent 26%), var(--bg);
  color: var(--ink);
  line-height: 1.5
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1440px, calc(100% - 72px));
  margin: 0 auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px)
}

.nav-container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative
}

.brand-wordmark-img {
  display: block;
  width: 220px;
  max-width: 220px;
  height: auto
}

.main-nav {
  display: flex;
  gap: 20px;
  font-weight: 700;
  font-size: .95rem
}

.main-nav a:hover,
.footer a:hover {
  color: var(--green)
}

.nav-actions {
  display: flex;
  gap: 14px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 15px 23px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .05)
}

.btn-green {
  background: linear-gradient(180deg, #0b8237, #056426);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 122, 50, .20)
}

.btn-light {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 0, 0, .08);
  color: var(--ink)
}

.btn-large {
  padding: 18px 28px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 28px
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green)
}

h1 {
  font-size: clamp(4.7rem, 7.35vw, 7.15rem);
  line-height: .94;
  letter-spacing: -.066em;
  font-weight: 900;
  margin-bottom: 30px
}

h1 mark {
  color: var(--green);
  background: transparent
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.065em;
  font-weight: 900;
  margin-bottom: 22px
}

h3 {
  letter-spacing: -.035em
}

.hero-section {
  padding: 60px 0 0
}

.hero-top-row {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: start
}

.hero-content {
  padding-top: 12px
}

.hero-intro,
.lead-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.65;
  margin-bottom: 32px
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-graphic {
  position: relative;
  height: 520px
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 54px;
  left: 24px;
  height: 405px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .03)), radial-gradient(circle at 76% 36%, rgba(245, 196, 120, .22), transparent 24%), linear-gradient(135deg, #222d27 0%, #566270 42%, #d2d8d5 100%);
  box-shadow: var(--shadow)
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 96px);
  opacity: .42
}

.screen-card {
  position: absolute;
  top: 116px;
  right: 150px;
  width: 230px;
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  z-index: 2;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .12)
}

.screen-card strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -.05em
}

.screen-card a {
  display: inline-flex;
  margin-top: 28px;
  background: var(--green);
  color: #fff;
  padding: 8px 13px;
  border-radius: 4px;
  font-weight: 800;
  font-size: .82rem
}

.enquiry-panel {
  position: absolute;
  left: 0;
  top: 42px;
  width: 300px;
  background: rgba(18, 20, 18, .91);
  color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow)
}

.enquiry-panel h3 {
  margin-bottom: 18px
}

.enquiry-panel div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.enquiry-panel small {
  opacity: .65
}

.pipeline-card {
  position: absolute;
  right: 0;
  top: 78px;
  width: 210px;
  background: rgba(255, 255, 255, .96);
  border-radius: 24px;
  padding: 25px;
  box-shadow: var(--shadow)
}

.pipeline-card span {
  display: block;
  margin-bottom: 12px;
  font-weight: 700
}

.pipeline-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px
}

.pipeline-card em {
  color: var(--green);
  font-style: normal;
  font-weight: 800
}

.bars {
  height: 70px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 16px
}

.bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--green), #dfeee2);
  border-radius: 999px 999px 0 0
}

.bars i:nth-child(1) {
  height: 28%
}

.bars i:nth-child(2) {
  height: 42%
}

.bars i:nth-child(3) {
  height: 39%
}

.bars i:nth-child(4) {
  height: 56%
}

.bars i:nth-child(5) {
  height: 76%
}

.new-enquiry-card,
.booking-card {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  border-radius: 20px;
  box-shadow: var(--shadow)
}

.new-enquiry-card {
  left: 118px;
  top: 336px;
  width: 360px;
  padding: 20px 25px;
  display: flex;
  gap: 16px;
  align-items: center
}

.new-enquiry-card span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center
}

.new-enquiry-card p,
.booking-card p {
  color: var(--muted)
}

.booking-card {
  right: 110px;
  top: 378px;
  width: 270px;
  padding: 20px 25px
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: center;
  padding: 0 0 34px
}

.lower-left {
  display: grid;
  row-gap: 34px
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start
}

.benefit>span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900
}

.benefit strong {
  display: block;
  line-height: 1.25;
  margin-bottom: 5px
}

.benefit p {
  color: var(--muted);
  font-size: .9rem
}

.growth-banner {
  min-height: 138px;
  background: linear-gradient(90deg, #edf5ed, #f8fbf7);
  border: 1px solid rgba(8, 122, 50, .12);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 70px 1fr 250px;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  box-shadow: 0 18px 46px rgba(8, 122, 50, .08)
}

.growth-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, rgba(8, 122, 50, .78), rgba(8, 122, 50, .5));
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 900
}

.growth-copy strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 6px
}

.growth-copy p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45
}

.growth-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 14px;
  height: 62px
}

.growth-chart span {
  flex: 1;
  height: 4px;
  background: var(--green);
  border-radius: 99px
}

.growth-chart span:nth-child(1) {
  transform: translateY(18px) rotate(-8deg)
}

.growth-chart span:nth-child(2) {
  transform: translateY(8px) rotate(-4deg)
}

.growth-chart span:nth-child(3) {
  transform: translateY(-2px) rotate(1deg)
}

.growth-chart span:nth-child(4) {
  transform: translateY(-12px) rotate(6deg)
}

.growth-chart span:nth-child(5) {
  transform: translateY(-24px) rotate(-8deg)
}

.growth-chart em {
  position: absolute;
  top: -24px;
  right: 0;
  background: #fff;
  border-radius: 13px;
  padding: 8px 11px;
  font-style: normal;
  font-weight: 900;
  font-size: .78rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08)
}

.process-section {
  padding: 18px 0 42px
}

.process-card {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 24px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .055);
  overflow: hidden
}

.process-title,
.process-step {
  padding: 24px 30px;
  border-right: 1px solid rgba(0, 0, 0, .08)
}

.process-step:last-child {
  border-right: 0
}

.process-title strong {
  display: block;
  font-size: 1.17rem;
  line-height: 1.45
}

.process-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px
}

.number-badge,
.process-step span,
.review-list div>span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900
}

.process-step p {
  color: var(--muted);
  font-size: .9rem
}

.section {
  padding: 86px 0
}

.white-section,
.soft-section {
  background: #fff
}

.intro-section {
  padding: 54px 0 70px
}

.page-hero {
  padding: 76px 0 58px
}

.page-hero h1 {
  font-size: clamp(4rem, 6.8vw, 6.8rem);
  line-height: .95;
  letter-spacing: -.075em;
  margin-bottom: 30px
}

.page-hero h1.hero-long {
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.065em;
}


.intro-grid,
.content-grid,
.page-hero-grid,
.review-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 80px;
  align-items: center
}

.contact-page .page-hero-grid {
  align-items: start;
}

.reverse {
  direction: rtl
}

.reverse>* {
  direction: ltr
}

.section-label {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: 18px
}

.section-copy p,
.intro-grid p,
.content-grid p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 14px
}

.service-pillar-grid,
.review-category-grid,
.systems-benefits-grid,
.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.feature-grid,
.visibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.service-pillar,
.review-category,
.systems-benefit-card,
.visibility-card,
.summary-card,
.system-panel,
.workflow-panel,
.contact-form-card,
.proof-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.service-pillar,
.review-category,
.systems-benefit-card,
.visibility-card,
.feature-grid div,
.proof-points div,
.review-list div {
  background: #f7f7f3;
  box-shadow: none
}

.service-pillar h3,
.review-category h3,
.systems-benefit-card h3 {
  font-size: 1.7rem;
  letter-spacing: -.04em;
  margin: 22px 0 14px
}

.service-pillar p,
.review-category p,
.systems-benefit-card p,
.visibility-card p,
.proof-points p {
  color: var(--muted)
}

.clean-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px
}

.clean-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px
}

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

.review-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  padding: 24px
}

.review-list div>span {
  grid-column: 1;
  grid-row: 1/3
}

.review-list div>strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.12rem
}

.review-list div>p {
  grid-column: 2;
  grid-row: 2;
  color: var(--muted)
}

.workflow-cards {
  display: grid;
  gap: 16px
}

.workflow-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 18px;
  padding: 20px
}

.workflow-card span {
  display: inline-flex;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 14px
}

.workflow-card strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 5px
}

.workflow-card p {
  color: var(--muted);
  font-size: .95rem
}

.system-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px
}

.system-top span {
  color: var(--green);
  font-weight: 800
}

.final-cta {
  padding: 80px 0
}

.final-card {
  background: linear-gradient(135deg, #0b8237, #056426);
  color: #fff;
  text-align: center;
  border-radius: 34px;
  padding: 72px 40px;
  box-shadow: 0 30px 80px rgba(8, 122, 50, .22)
}

.final-card h2 {
  max-width: 820px;
  margin: 0 auto 18px
}

.final-card p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.1rem
}

.final-card .btn {
  background: #fff !important;
  color: var(--green-dark) !important
}

form {
  display: grid;
  gap: 16px
}

label {
  font-weight: 800
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  background: #fff
}

textarea {
  min-height: 140px;
  resize: vertical
}

.website-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden
}

.form-note {
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(8, 122, 50, .16);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700
}

.legal-page {
  padding: 74px 0
}

.legal-content {
  max-width: 900px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow)
}

.legal-content h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -.06em;
  margin-bottom: 24px
}

.legal-content h2 {
  font-size: 1.6rem;
  letter-spacing: -.03em;
  margin-top: 34px
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin: 12px 0
}

.legal-content ul {
  padding-left: 22px
}

.footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 24px;
  background: #fbfaf7
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px
}

.footer h4 {
  margin-bottom: 14px
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0
}

.footer p {
  color: var(--muted);
  max-width: 330px;
  margin-top: 12px
}

.footer-brand .brand-wordmark-img {
  width: 210px;
  max-width: 210px
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .92rem
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 960px;
  margin: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 22px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .16);
  padding: 22px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center
}

.cookie-banner.show {
  display: grid
}

.cookie-banner p {
  color: var(--muted);
  margin-top: 5px
}

.cookie-actions {
  display: flex;
  gap: 12px
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .92);
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.mobile-menu-toggle div {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px
}

@media (max-width:700px) {
  .container {
    width: min(100% - 36px, 1440px)
  }

  .main-nav {
    display: none
  }

  .hero-top-row,
  .hero-bottom-grid,
  .intro-grid,
  .content-grid,
  .page-hero-grid,
  .review-grid,
  .service-pillar-grid,
  .review-category-grid,
  .systems-benefits-grid,
  .proof-points,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .page-hero-grid {
    gap: 32px;
  }

  .hero-graphic {
    display: block;
  }

  .benefits,
  .feature-grid,
  .visibility-grid {
    grid-template-columns: 1fr
  }

  .growth-banner {
    grid-template-columns: 62px 1fr
  }

  .growth-chart {
    grid-column: 1/-1
  }

  .process-card {
    grid-template-columns: 1fr
  }

  .process-title,
  .process-step {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
  }

  .cookie-banner {
    grid-template-columns: 1fr
  }
}

@media (max-width:900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
    z-index: 999
  }

  .main-nav.mobile-open {
    display: flex
  }

  .nav-actions {
    display: none
  }

  .mobile-menu-toggle {
    display: flex
  }
}

@media (max-width:700px) {
  .brand-wordmark-img {
    width: 178px;
    max-width: 178px
  }

  h1 {
    font-size: clamp(4.1rem, 17vw, 6rem)
  }

  .hero-bg {
    left: 0;
    right: 0;
    height: 360px
  }

  .enquiry-panel {
    left: 7%;
    width: 86%
  }

  .pipeline-card {
    width: 170px;
    right: 10px;
    top: 285px
  }

  .new-enquiry-card {
    left: 10px;
    top: 405px;
    width: calc(100% - 20px)
  }

  .booking-card {
    right: 10px;
    top: 520px;
    width: calc(100% - 20px)
  }

  .hero-graphic {
    height: 620px
  }

  .growth-banner {
    grid-template-columns: 1fr
  }

  .growth-chart {
    display: none
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px
  }
}


/* LWRF page refinements - balanced hero */
.framework-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.framework-subtitle {
  color: var(--green);
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.lwrf-hero {
  padding-top: 56px;
}

.lwrf-balanced-grid {
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 56px;
}

.lwrf-hero-header {
  padding-top: 0;
  max-width: 820px;
}

.lwrf-hero-header h1 {
  font-size: clamp(4.2rem, 6.25vw, 6.5rem);
  max-width: 820px;
  margin-bottom: 26px;
}

.lwrf-hero-header .hero-intro {
  max-width: 720px;
}

.lwrf-hero-graphic .hero-graphic {
  height: 420px;
  transform: scale(.88);
  transform-origin: center center;
}

.lwrf-hero-graphic .hero-bg {
  top: 14px;
  left: 20px;
  right: 30px;
  height: 330px;
}

.lwrf-hero-graphic .enquiry-panel {
  top: 44px;
  left: 0;
  width: 275px;
}

.lwrf-hero-graphic .pipeline-card {
  top: 74px;
  right: 0;
  width: 190px;
}

.lwrf-hero-graphic .screen-card {
  top: 112px;
  right: 135px;
  width: 205px;
}

.lwrf-hero-graphic .new-enquiry-card {
  top: 304px;
  left: 118px;
  width: 330px;
}

.lwrf-hero-bottom {
  padding-top: 10px;
  padding-bottom: 34px;
}

@media (max-width:1100px) {
  .lwrf-balanced-grid {
    grid-template-columns: 1fr;
  }

  .lwrf-hero-header {
    max-width: 980px;
  }

  .lwrf-hero-graphic .hero-graphic {
    transform: none;
    height: 520px;
  }

  .lwrf-hero-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width:700px) {
  .framework-title {
    font-size: .95rem;
  }

  .framework-subtitle {
    font-size: .82rem;
  }

  .lwrf-hero-graphic .hero-graphic {
    height: 620px;
  }
}

/* Launchpad / Leadstackr journey component */

.launchpad-hero {
  padding: 76px 0 84px;
}

.launchpad-hero .page-hero-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}

.launchpad-hero .lead-text {
  margin-top: -14px;
}

.leadstackr-journey-visual {
  max-width: 400px;
  width: 100%;
  MARGIN: 0 auto;
  position: relative;
}

.leadstackr-journey-visual::before {
  content: "";
  position: absolute;
  inset: -36px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 74% 18%, rgba(8,122,50,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(234,244,236,.72));
  z-index: -1;
}

.journey-panel {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  gap: 14px;
}

.journey-stage {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  background: #f7f7f3;
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 20px;
  padding: 16px 18px;
}

.journey-stage::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: -15px;
  width: 2px;
  height: 15px;
  background: rgba(8,122,50,.18);
}

.journey-stage:last-child::after {
  display: none;
}

.journey-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.journey-stage strong {
  display: block;
  font-size: 1.16rem;
  letter-spacing: -.035em;
}

.journey-stage p {
  color: var(--muted);
  font-size: .95rem;
  margin: 3px 0 0;
  font-weight: 700;
}

.journey-stage.completed {
  opacity: .82;
}

.journey-stage.completed .journey-icon {
  background: var(--green-soft);
  color: var(--green-dark);
}

.journey-stage.active {
  grid-template-columns: 1fr;
  text-align: center;
  background: linear-gradient(135deg, #0b8237, #056426);
  color: #fff;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(8,122,50,.22);
  transform: scale(1.02);
}

.journey-stage.active::after {
  left: 50%;
  background: rgba(8,122,50,.28);
}

.journey-stage.active .journey-icon {
  display: none;
}

.journey-stage.active small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  opacity: .8;
  margin-bottom: 8px;
}

.journey-stage.active strong {
  font-size: 2.25rem;
  line-height: 1;
  color: #fff;
}

.journey-stage.active p {
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  margin-top: 8px;
}

.journey-stage.future {
  background: #fff;
}

.journey-stage.goal {
  border: 2px solid rgba(8,122,50,.24);
  background: linear-gradient(135deg, #fff, #f1faf4);
}

.journey-stage.goal strong,
.journey-stage.goal .journey-icon {
  color: var(--green-dark);
}

.launchpad-centre {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.launchpad-centre p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.launchpad-finder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.launchpad-choice {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.launchpad-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(8,122,50,.24);
}

.launchpad-choice span {
  display: inline-flex;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.launchpad-choice strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.launchpad-choice p {
  color: var(--muted);
}

.launchpad-journey {
  grid-template-columns: repeat(4, 1fr);
}

.launchpad-journey .process-step {
  border-right: 1px solid rgba(0,0,0,.08);
}

.launchpad-journey .process-step:last-child {
  border-right: 0;
}

.launchpad-included .service-pillar {
  min-height: 210px;
}

.launchpad-included .service-pillar span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .launchpad-hero .page-hero-grid,
  .launchpad-finder-grid,
  .launchpad-journey {
    grid-template-columns: 1fr;
  }

  .launchpad-journey .process-step {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .launchpad-journey .process-step:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .launchpad-hero {
    padding: 56px 0 60px;
  }

  .journey-panel {
    padding: 20px;
  }

  .journey-stage.active strong {
    font-size: 1.85rem;
  }

  .launchpad-finder-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile homepage hero graphic */
@media (max-width: 700px) {
  .hero-section .hero-graphic {
    display: block !important;
    height: 430px;
    margin-top: 28px;
    transform: scale(.72);
    transform-origin: top center;
  }
}
/* Mobile layout containment */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .hero-top-row,
  .hero-bottom-grid,
  .page-hero-grid,
  .content-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .process-title,
  .process-step {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .process-step:last-child {
    border-bottom: 0;
  }
}