{page.meta.pageTitle} {#if structuredData} {/if} {#each page.sections as section} {#if section.type === 'hero'} {@const hero = section.data}
{hero.eyebrow}

{hero.titleLead} {#if hero.titleEmphasis}
{hero.titleEmphasis} {/if}

{hero.subtext}

{hero.primaryCta.label} {hero.secondaryCta.label}
{hero.image.alt} {#if hero.stats?.length}
{#each hero.stats as stat}
{stat.label}
{stat.value}
{/each}
{/if}
{:else if section.type === 'services'} {@const block = section.data}
{block.eyebrow}

{block.title}

{block.lede}

{#each block.cards as card}
{card.tag} {card.image.alt}

{card.title}

{card.description}

{/each}
{:else if section.type === 'process'} {@const block = section.data}
{block.eyebrow}

{block.title}

{block.lede}

{#each block.steps as step, index}
{step.label}

{step.title}

{step.description}

{step.outcome}
{#if index < block.steps.length - 1} {/if} {/each}
{:else if section.type === 'outcomes'} {@const block = section.data}
{block.eyebrow}

{block.title}

{block.lede}

{#each block.items as item, index}
{#if index === 0} {:else if index === 1} {:else if index === 2} {:else if index === 3} {:else} {/if}
{item.number}

{item.title}

{item.description}

{/each}
{:else if section.type === 'why'} {@const block = section.data}
{block.eyebrow}

{block.title}

{block.lede}

    {#each block.items as item, index}
  • {#if index === 0} {:else if index === 1} {:else if index === 2} {:else} {/if}

    {item.title}

    {item.description}

  • {/each}
{:else if section.type === 'richText'} {@const block = section.data}
{#if block.eyebrow}
{block.eyebrow}
{/if} {#if block.title}

{block.title}

{/if}
{#each toParagraphs(block.body) as paragraph}

{paragraph}

{/each}
{:else if section.type === 'cta'} {@const block = section.data}

{block.titleLead} {block.titleEmphasis} {block.titleTail}

{block.body}

{#each block.flowSteps as step, index}
{index + 1} {step}
{#if index < block.flowSteps.length - 1} {/if} {/each}
{/if} {/each}