2026-05-02 08:26:18 +12:00
|
|
|
<script lang="ts">
|
2026-05-02 09:43:32 +12:00
|
|
|
import { onMount } from 'svelte';
|
2026-05-02 08:26:18 +12:00
|
|
|
import { reveal } from '$lib/actions/reveal';
|
2026-05-18 22:25:43 +12:00
|
|
|
import BookingWizard from '$lib/components/BookingWizard.svelte';
|
2026-05-02 08:26:18 +12:00
|
|
|
import Icon from '$lib/components/Icon.svelte';
|
2026-05-13 00:34:34 +12:00
|
|
|
import PageHeader from '$lib/components/PageHeader.svelte';
|
2026-05-13 20:44:01 +12:00
|
|
|
import PricingPlanCard from '$lib/components/PricingPlanCard.svelte';
|
2026-05-02 08:26:18 +12:00
|
|
|
import TestimonialsSection from '$lib/components/TestimonialsSection.svelte';
|
2026-05-13 20:44:01 +12:00
|
|
|
import { decoratePlans } from '$lib/utils/pricing';
|
2026-05-02 08:26:18 +12:00
|
|
|
import type { PricingPageContent, SiteSharedContent } from '$lib/types';
|
|
|
|
|
|
|
|
|
|
export let content: SiteSharedContent;
|
|
|
|
|
export let pageContent: PricingPageContent;
|
2026-05-02 09:43:32 +12:00
|
|
|
|
|
|
|
|
onMount(() => {
|
2026-05-18 09:43:29 +12:00
|
|
|
/* eslint-disable no-console */
|
|
|
|
|
console.log(
|
|
|
|
|
'%c🐾 If you are reading this, you love dogs.\n So do we. Come say hi: hello@goodwalk.co.nz',
|
|
|
|
|
'color:#213021;font:600 13px/1.5 system-ui;padding:6px 0'
|
|
|
|
|
);
|
|
|
|
|
});
|
2026-05-02 09:43:32 +12:00
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
const includedPromises = [
|
|
|
|
|
{ icon: 'fas fa-handshake', label: 'Free Meet & Greet first' },
|
|
|
|
|
{ icon: 'fas fa-car', label: 'Pickup and drop-off included' },
|
|
|
|
|
{ icon: 'fas fa-user-check', label: 'Same walker every week' },
|
|
|
|
|
{ icon: 'fas fa-rotate-left', label: 'No contracts, cancel anytime' }
|
|
|
|
|
];
|
2026-05-02 09:43:32 +12:00
|
|
|
|
2026-05-02 08:26:18 +12:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<main class="pricing-page">
|
2026-05-13 00:34:34 +12:00
|
|
|
<PageHeader variant="green" title={pageContent.title} subtitle={pageContent.subtitle}>
|
|
|
|
|
<a
|
|
|
|
|
class="pricing-trust"
|
|
|
|
|
href="https://g.page/r/CUsvrWPhkYrAEB0/"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener"
|
|
|
|
|
aria-label="Read our 5-star Google reviews"
|
|
|
|
|
>
|
|
|
|
|
<img
|
|
|
|
|
class="pricing-trust-logo"
|
|
|
|
|
src="/images/google-g-logo.svg"
|
|
|
|
|
alt=""
|
|
|
|
|
width="18"
|
|
|
|
|
height="19"
|
|
|
|
|
/>
|
|
|
|
|
<span class="pricing-trust-stars" aria-hidden="true">
|
|
|
|
|
{#each Array(5) as _}
|
|
|
|
|
<Icon name="fas fa-star" />
|
|
|
|
|
{/each}
|
|
|
|
|
</span>
|
|
|
|
|
<span class="pricing-trust-label">30+ 5-star Google reviews, trusted by Auckland dog owners</span>
|
|
|
|
|
<Icon name="fas fa-arrow-right" className="pricing-trust-arrow" />
|
|
|
|
|
</a>
|
|
|
|
|
</PageHeader>
|
2026-05-02 08:26:18 +12:00
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
{#if pageContent.comparison}
|
|
|
|
|
<section use:reveal class="pricing-block pricing-block--lead reveal-block">
|
|
|
|
|
<div class="page-inner">
|
|
|
|
|
<div class="section-header pricing-section-header">
|
|
|
|
|
<span class="eyebrow">How to choose</span>
|
|
|
|
|
<h2 class="section-heading">{pageContent.comparison.title}</h2>
|
|
|
|
|
{#if pageContent.comparison.intro}
|
|
|
|
|
<p class="section-intro">{pageContent.comparison.intro}</p>
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p class="pricing-attribution">
|
|
|
|
|
<img
|
|
|
|
|
class="pricing-attribution-avatar"
|
|
|
|
|
src="/images/alessandra-goodwalk-founder-auckland.webp"
|
|
|
|
|
alt="Aless, Goodwalk founder"
|
|
|
|
|
width="40"
|
|
|
|
|
height="40"
|
|
|
|
|
/>
|
|
|
|
|
<span class="pricing-attribution-body">
|
|
|
|
|
<span class="pricing-attribution-name">
|
|
|
|
|
<span class="pricing-attribution-paw" aria-hidden="true">
|
|
|
|
|
<Icon name="fas fa-paw" />
|
|
|
|
|
</span>
|
|
|
|
|
Aless, Goodwalk founder
|
|
|
|
|
<svg
|
|
|
|
|
class="pricing-attribution-sig"
|
|
|
|
|
viewBox="0 0 120 8"
|
|
|
|
|
fill="none"
|
|
|
|
|
aria-hidden="true"
|
|
|
|
|
focusable="false"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
d="M2 5 Q 14 1, 26 4 T 50 4 T 74 5 T 98 3 T 118 4"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
stroke-width="1.6"
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</span>
|
|
|
|
|
<span class="pricing-attribution-text">
|
|
|
|
|
Most owners start with Tiny Gang, but the right answer is whichever fits your dog.
|
|
|
|
|
If you are not sure, the free Meet & Greet is the easiest way to work it out.
|
|
|
|
|
</span>
|
|
|
|
|
</span>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
|
|
{#each pageContent.sections as section, sectionIndex}
|
|
|
|
|
<section
|
|
|
|
|
use:reveal
|
|
|
|
|
class="pricing-block pricing-block--plans reveal-block"
|
|
|
|
|
class:pricing-block--tinted={sectionIndex % 2 === 1}
|
|
|
|
|
>
|
2026-05-13 20:44:01 +12:00
|
|
|
<div class="page-inner">
|
2026-05-18 09:43:29 +12:00
|
|
|
{#if sectionIndex > 0}
|
|
|
|
|
<div class="pricing-section-divider" aria-hidden="true">
|
|
|
|
|
<span class="pricing-section-divider-mark">
|
|
|
|
|
<Icon name="fas fa-paw" />
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
|
|
<div class="section-header pricing-section-header">
|
2026-05-02 08:26:18 +12:00
|
|
|
{#if section.icon}
|
2026-05-18 09:43:29 +12:00
|
|
|
<span class="pricing-section-emblem" aria-hidden="true">
|
|
|
|
|
<Icon name={section.icon} className="pricing-section-emblem-glyph" />
|
|
|
|
|
</span>
|
|
|
|
|
{/if}
|
|
|
|
|
{#if section.eyebrow}
|
|
|
|
|
<span class="eyebrow">{section.eyebrow}</span>
|
2026-05-02 08:26:18 +12:00
|
|
|
{/if}
|
2026-05-18 09:43:29 +12:00
|
|
|
<h2 class="section-heading">{section.title}</h2>
|
|
|
|
|
{#if section.lede ?? section.blurb}
|
|
|
|
|
<p class="section-intro">{section.lede ?? section.blurb}</p>
|
2026-05-02 08:26:18 +12:00
|
|
|
{/if}
|
2026-05-18 09:43:29 +12:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{#if section.meta?.length}
|
|
|
|
|
<ul class="pricing-meta-chips" aria-label="{section.title} at a glance">
|
|
|
|
|
{#each section.meta as item}
|
|
|
|
|
<li class="pricing-meta-chip">
|
|
|
|
|
<span class="pricing-meta-chip-label">{item.label}</span>
|
|
|
|
|
<span class="pricing-meta-chip-value">{item.value}</span>
|
|
|
|
|
</li>
|
|
|
|
|
{/each}
|
|
|
|
|
</ul>
|
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
|
|
{#if section.detailCta}
|
|
|
|
|
<p class="pricing-section-link-wrap">
|
|
|
|
|
<a class="pricing-block-link" href={section.detailCta.href}>
|
2026-05-06 11:36:19 +12:00
|
|
|
<span>{section.detailCta.label}</span>
|
|
|
|
|
<Icon name="fas fa-arrow-right" />
|
2026-05-02 08:26:18 +12:00
|
|
|
</a>
|
2026-05-18 09:43:29 +12:00
|
|
|
</p>
|
|
|
|
|
{/if}
|
2026-05-02 08:26:18 +12:00
|
|
|
|
|
|
|
|
<div class:pricing-plan-grid-three={section.plans.length === 3} class="pricing-plan-grid">
|
2026-05-07 21:47:42 +12:00
|
|
|
{#each decoratePlans(section.plans) as plan}
|
2026-05-13 20:44:01 +12:00
|
|
|
<PricingPlanCard {plan} variant="pricing" />
|
2026-05-02 08:26:18 +12:00
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{/each}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
<section use:reveal class="pricing-block pricing-block--promise pricing-block--tinted reveal-block">
|
|
|
|
|
<div class="page-inner">
|
|
|
|
|
<div class="section-header pricing-section-header">
|
|
|
|
|
<span class="eyebrow">What every booking includes</span>
|
|
|
|
|
<h2 class="section-heading">Built around trust, not contracts.</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<ul class="pricing-promise-row" aria-label="What every Goodwalk booking includes">
|
|
|
|
|
{#each includedPromises as promise}
|
|
|
|
|
<li class="pricing-promise">
|
|
|
|
|
<span class="pricing-promise-icon" aria-hidden="true">
|
|
|
|
|
<Icon name={promise.icon} />
|
|
|
|
|
</span>
|
|
|
|
|
<span class="pricing-promise-label">{promise.label}</span>
|
|
|
|
|
</li>
|
|
|
|
|
{/each}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
2026-05-11 21:02:24 +12:00
|
|
|
<TestimonialsSection
|
|
|
|
|
heading={pageContent.testimonialsHeading}
|
|
|
|
|
testimonials={content.testimonials}
|
|
|
|
|
seedKey="/our-pricing"
|
|
|
|
|
/>
|
2026-05-18 22:25:43 +12:00
|
|
|
<BookingWizard booking={pageContent.booking} pagePath="/our-pricing" />
|
2026-05-02 08:26:18 +12:00
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.pricing-page {
|
|
|
|
|
background: var(--off-white);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Trust pill in header ── */
|
2026-05-06 08:27:24 +12:00
|
|
|
.pricing-trust {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-top: 22px;
|
|
|
|
|
padding: 9px 18px;
|
|
|
|
|
border-radius: 999px;
|
2026-05-18 09:43:29 +12:00
|
|
|
background: rgba(255, 255, 255, 0.10);
|
2026-05-06 08:27:24 +12:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
2026-05-18 09:43:29 +12:00
|
|
|
color: var(--text-inverse);
|
2026-05-11 21:02:24 +12:00
|
|
|
font-family: var(--font-head);
|
2026-05-06 08:27:24 +12:00
|
|
|
font-size: 14px;
|
2026-05-11 21:02:24 +12:00
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
letter-spacing: 0.01em;
|
2026-05-06 08:27:24 +12:00
|
|
|
text-decoration: none;
|
|
|
|
|
transition:
|
|
|
|
|
background 0.2s ease,
|
2026-05-18 09:43:29 +12:00
|
|
|
transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
|
2026-05-06 08:27:24 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-06 11:36:19 +12:00
|
|
|
.pricing-trust-logo {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 19px;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-06 08:27:24 +12:00
|
|
|
.pricing-trust:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.18);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-trust-stars {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.pricing-trust .pricing-trust-arrow) {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
opacity: 0.85;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Section rhythm ── */
|
|
|
|
|
.pricing-block {
|
|
|
|
|
padding: 56px 0 40px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block--lead {
|
|
|
|
|
padding-top: 48px;
|
|
|
|
|
padding-bottom: 20px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block:last-of-type {
|
|
|
|
|
padding-bottom: 64px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block--plans {
|
|
|
|
|
padding-top: 56px;
|
|
|
|
|
padding-bottom: 56px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-block--promise {
|
|
|
|
|
padding-top: 56px;
|
|
|
|
|
padding-bottom: 56px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Surface alternation (chapter banding) ─────────
|
|
|
|
|
Lead + sections 1/3 stay on the page cream.
|
|
|
|
|
Section 2 + promise sit on a slightly warmer cream.
|
|
|
|
|
*/
|
|
|
|
|
.pricing-block--tinted {
|
|
|
|
|
background: var(--surface-panel-cream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Section divider (paw on hairline) ── */
|
|
|
|
|
.pricing-section-divider {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
max-width: 460px;
|
|
|
|
|
margin: 0 auto 32px;
|
|
|
|
|
color: var(--gw-green);
|
|
|
|
|
opacity: 0.55;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-section-divider::before,
|
|
|
|
|
.pricing-section-divider::after {
|
|
|
|
|
content: '';
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: currentColor;
|
|
|
|
|
opacity: 0.35;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-section-divider-mark {
|
2026-05-02 08:26:18 +12:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-05-18 09:43:29 +12:00
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: var(--off-white);
|
|
|
|
|
color: var(--gw-green);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(33, 48, 33, 0.18);
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block--tinted .pricing-section-divider-mark {
|
|
|
|
|
background: var(--surface-panel-cream);
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Section header (uses global .section-header / .section-heading / .eyebrow / .section-intro) ── */
|
|
|
|
|
.pricing-section-header {
|
|
|
|
|
margin-bottom: 22px;
|
|
|
|
|
gap: 10px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* Green emblem tile — canonical Goodwalk identity above each service heading */
|
|
|
|
|
.pricing-section-emblem {
|
2026-05-06 11:36:19 +12:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-05-18 09:43:29 +12:00
|
|
|
justify-content: center;
|
|
|
|
|
width: 64px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
justify-self: center;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
background: var(--gw-green);
|
|
|
|
|
box-shadow: 0 12px 28px rgba(33, 48, 33, 0.20);
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
:global(.pricing-section-emblem .pricing-section-emblem-glyph) {
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
font-size: 26px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Meta chip row (centered label · value pills) ── */
|
|
|
|
|
.pricing-meta-chips {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin: 0 auto 18px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
max-width: 940px;
|
|
|
|
|
list-style: none;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-meta-chip {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 9px 16px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: var(--surface-panel);
|
|
|
|
|
border: 1px solid rgba(33, 48, 33, 0.10);
|
|
|
|
|
color: var(--text-heading);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 1.4;
|
2026-05-15 16:27:39 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-meta-chip-label {
|
|
|
|
|
color: var(--gw-green);
|
|
|
|
|
font-family: var(--font-head);
|
|
|
|
|
font-size: 10.5px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.10em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
opacity: 0.78;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-meta-chip-value {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Section CTA link (centered under chips) ── */
|
|
|
|
|
.pricing-section-link-wrap {
|
|
|
|
|
margin: 0 auto 28px;
|
|
|
|
|
text-align: center;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block-link {
|
2026-05-02 09:43:32 +12:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
2026-05-07 21:47:42 +12:00
|
|
|
color: var(--gw-green);
|
2026-05-02 09:43:32 +12:00
|
|
|
font-family: var(--font-head);
|
2026-05-18 09:43:29 +12:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: gap 0.22s cubic-bezier(0.22, 1, 0.36, 1);
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block-link :global(.icon) {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block-link:hover {
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-block-link:hover :global(.icon) {
|
|
|
|
|
transform: translateX(2px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Aless attribution (signed-note feel, centered) ── */
|
|
|
|
|
.pricing-attribution {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
margin: 26px auto 0;
|
|
|
|
|
padding: 16px 22px 16px 14px;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
background: var(--surface-panel);
|
|
|
|
|
border: 1px solid rgba(33, 48, 33, 0.12);
|
|
|
|
|
color: var(--text-heading);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
max-width: 640px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
transition:
|
|
|
|
|
transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
|
|
|
|
|
border-color 0.22s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-block--lead .page-inner {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (hover: hover) {
|
|
|
|
|
.pricing-attribution:hover {
|
|
|
|
|
transform: rotate(-0.4deg) translateY(-2px);
|
|
|
|
|
border-color: rgba(33, 48, 33, 0.22);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-attribution:hover .pricing-attribution-avatar {
|
|
|
|
|
transform: rotate(2deg) scale(1.04);
|
|
|
|
|
}
|
2026-05-15 16:27:39 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution-avatar {
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
|
|
|
|
border-radius: 50%;
|
2026-05-15 16:27:39 +12:00
|
|
|
object-fit: cover;
|
|
|
|
|
object-position: center top;
|
|
|
|
|
flex: 0 0 auto;
|
2026-05-18 09:43:29 +12:00
|
|
|
transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
|
2026-05-15 16:27:39 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution-body {
|
2026-05-15 16:27:39 +12:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-05-18 09:43:29 +12:00
|
|
|
gap: 6px;
|
2026-05-15 16:27:39 +12:00
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution-name {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
position: relative;
|
|
|
|
|
align-self: flex-start;
|
|
|
|
|
color: var(--gw-green);
|
2026-05-15 16:27:39 +12:00
|
|
|
font-family: var(--font-head);
|
|
|
|
|
font-weight: 700;
|
2026-05-18 09:43:29 +12:00
|
|
|
font-size: 13px;
|
|
|
|
|
letter-spacing: 0.01em;
|
|
|
|
|
padding-bottom: 6px;
|
2026-05-15 16:27:39 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution-paw {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
color: var(--gw-green);
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-attribution-sig {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 26px;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: -2px;
|
|
|
|
|
width: calc(100% - 26px);
|
|
|
|
|
height: 8px;
|
|
|
|
|
color: var(--gw-green);
|
|
|
|
|
opacity: 0.55;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-attribution-text {
|
|
|
|
|
color: var(--text-heading);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Plan grid (centered, tighter) ── */
|
|
|
|
|
.pricing-plan-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
|
|
|
gap: 16px;
|
|
|
|
|
max-width: 1120px;
|
|
|
|
|
margin: 0 auto;
|
2026-05-15 16:27:39 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-plan-grid-three {
|
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
max-width: 880px;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Promise row (centered, no card chrome) ── */
|
|
|
|
|
.pricing-promise-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 18px 32px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
max-width: 860px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-promise {
|
2026-05-15 16:27:39 +12:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-05-18 09:43:29 +12:00
|
|
|
gap: 12px;
|
|
|
|
|
transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-promise-icon {
|
2026-05-02 09:43:32 +12:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
2026-05-18 09:43:29 +12:00
|
|
|
border-radius: 10px;
|
|
|
|
|
background: rgba(33, 48, 33, 0.06);
|
|
|
|
|
color: var(--gw-green);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
flex: 0 0 auto;
|
2026-05-02 09:43:32 +12:00
|
|
|
transition:
|
2026-05-18 09:43:29 +12:00
|
|
|
background 0.28s ease,
|
|
|
|
|
color 0.28s ease,
|
|
|
|
|
transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (hover: hover) {
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-promise:hover {
|
2026-05-02 09:43:32 +12:00
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-promise:hover .pricing-promise-icon {
|
|
|
|
|
background: var(--gw-green);
|
|
|
|
|
color: var(--yellow);
|
|
|
|
|
transform: rotate(-4deg);
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-promise-label {
|
|
|
|
|
color: var(--text-heading);
|
|
|
|
|
font-family: var(--font-head);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 1.35;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Reduced motion: drop rotational delights, keep color/lift ── */
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
|
.pricing-attribution,
|
|
|
|
|
.pricing-attribution-avatar,
|
|
|
|
|
.pricing-promise,
|
|
|
|
|
.pricing-promise-icon {
|
|
|
|
|
transition: none;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution:hover,
|
|
|
|
|
.pricing-attribution:hover .pricing-attribution-avatar,
|
|
|
|
|
.pricing-promise:hover .pricing-promise-icon {
|
|
|
|
|
transform: none;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
/* ── Responsive ── */
|
2026-05-02 08:26:18 +12:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
|
.pricing-plan-grid,
|
|
|
|
|
.pricing-plan-grid-three {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
2026-05-15 16:27:39 +12:00
|
|
|
max-width: none;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block {
|
|
|
|
|
padding: 40px 0 32px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block--lead {
|
|
|
|
|
padding-top: 32px;
|
|
|
|
|
padding-bottom: 12px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block:last-of-type {
|
|
|
|
|
padding-bottom: 40px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-block--plans,
|
|
|
|
|
.pricing-block--promise {
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
padding-bottom: 40px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-section-divider {
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
gap: 12px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-section-divider-mark {
|
|
|
|
|
width: 26px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
font-size: 10px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-section-header {
|
|
|
|
|
margin-bottom: 18px;
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-section-emblem {
|
|
|
|
|
width: 54px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
border-radius: 16px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
:global(.pricing-section-emblem .pricing-section-emblem-glyph) {
|
|
|
|
|
font-size: 21px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-meta-chips {
|
2026-05-06 11:36:19 +12:00
|
|
|
gap: 8px;
|
2026-05-18 09:43:29 +12:00
|
|
|
margin-bottom: 22px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-meta-chip {
|
|
|
|
|
padding: 8px 14px;
|
|
|
|
|
font-size: 12.5px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-section-link-wrap {
|
|
|
|
|
margin-bottom: 24px;
|
2026-05-06 11:36:19 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution {
|
|
|
|
|
max-width: none;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
padding: 12px 16px 12px 10px;
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
align-items: flex-start;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-attribution-avatar {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
2026-05-15 16:27:39 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-trust {
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pricing-plan-grid,
|
|
|
|
|
.pricing-plan-grid-three {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 16px;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
|
|
|
|
|
2026-05-18 09:43:29 +12:00
|
|
|
.pricing-promise-row {
|
|
|
|
|
gap: 18px 24px;
|
2026-05-02 09:43:32 +12:00
|
|
|
}
|
2026-05-02 08:26:18 +12:00
|
|
|
}
|
|
|
|
|
</style>
|