.vp-story-section {
    position: relative;
    isolation: isolate;
}
.vp-story-section::before {
    position: absolute;
    z-index: -1;
    top: 54px;
    right: max(24px, calc((100vw - 1180px) / 2));
    color: rgba(27, 62, 51, .055);
    content: attr(data-story-step);
    font-family: var(--vp-display);
    font-size: clamp(86px, 11vw, 158px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.08em;
    pointer-events: none;
}
.vp-story-section--problem { background: linear-gradient(180deg, #fff 0%, #fbf8f1 100%); }
.vp-story-section--solution { border-top: 1px solid var(--vp-line); }
.vp-story-section--process { background: linear-gradient(180deg, #fbf8f1 0%, #fff 100%); }
.vp-story-section--trust { background: #fbf8f1; }

.vp-objection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.vp-objection-card {
    position: relative;
    min-height: 250px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(31, 67, 55, .09);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 42px rgba(24, 55, 44, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.vp-objection-card:hover {
    border-color: rgba(47, 107, 86, .22);
    box-shadow: 0 24px 52px rgba(24, 55, 44, .09);
    transform: translateY(-3px);
}
.vp-objection-card__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border-radius: 50%;
    background: #edf5ef;
    color: var(--vp-green-strong);
    font-family: var(--vp-display);
    font-size: 14px;
    font-weight: 700;
}
.vp-objection-card h3 {
    max-width: 14ch;
    margin: 0;
    color: var(--vp-ink-deep);
    font-family: var(--vp-display);
    font-size: 29px;
    line-height: 1.03;
    letter-spacing: -.035em;
}
.vp-objection-card p {
    margin: 16px 0 0;
    color: var(--vp-muted);
    line-height: 1.65;
}

.vp-offer-card,
.vp-offer-details,
.vp-lead-form,
.vp-form-copy {
    box-shadow: 0 24px 60px rgba(20, 48, 39, .08);
}
.vp-offer-card { position: sticky; top: 104px; align-self: start; }
.vp-offer-details { border-radius: 28px; }
.vp-offer-columns h3 { display: flex; align-items: center; gap: 10px; }
.vp-offer-columns h3::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--vp-green);
    content: "";
}
.vp-offer-exclusions h3::before { background: var(--vp-clay); }

.vp-process li > span {
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.vp-process li:hover > span,
.vp-process li:focus-within > span {
    background: var(--vp-green);
    color: white;
    transform: scale(1.04);
}
.vp-process li > div { transition: border-color .2s ease; }
.vp-process li:hover > div { border-color: rgba(47, 107, 86, .28); }

.vp-assurance-strip {
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: #173b32;
    color: white;
}
.vp-assurance-strip .vp-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vp-assurance-strip .vp-container > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 12px;
    align-items: center;
    min-height: 116px;
    padding: 24px 28px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.vp-assurance-strip .vp-container > div:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.vp-assurance-strip span {
    grid-row: 1 / 3;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #bfe1cb;
    font-weight: 900;
}
.vp-assurance-strip strong { font-size: 14px; }
.vp-assurance-strip small { color: #b9ccc5; font-size: 12px; line-height: 1.45; }

.vp-demo-card,
.vp-faq-list details,
.vp-button,
.vp-field input,
.vp-field select,
.vp-field textarea {
    transition-duration: .22s;
    transition-timing-function: cubic-bezier(.2,.7,.2,1);
}
.vp-demo-card:hover {
    transform: translateY(-5px);
}
.vp-demo-card:focus-visible {
    outline: 3px solid rgba(255,255,255,.42);
    outline-offset: 4px;
}
.vp-faq-list details {
    border-radius: 16px;
}
.vp-faq-list details[open] {
    border-color: rgba(47, 107, 86, .22);
    background: white;
    box-shadow: 0 12px 30px rgba(24, 55, 44, .06);
}
.vp-faq-list summary::after {
    transition: transform .22s ease;
}
.vp-faq-list details[open] summary::after { transform: rotate(45deg); }

.vp-section--form {
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 28%),
        #173b32;
}
.vp-form-copy {
    position: sticky;
    top: 104px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    background: rgba(255,255,255,.055);
}
.vp-lead-form {
    border-radius: 28px;
}
.vp-field input:focus,
.vp-field select:focus,
.vp-field textarea:focus {
    border-color: var(--vp-green);
    box-shadow: 0 0 0 4px rgba(47, 107, 86, .1);
}
.vp-button--primary {
    position: relative;
    overflow: hidden;
}
.vp-button--primary::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
    content: "";
    transform: translateX(-130%);
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.vp-button--primary:hover::after,
.vp-button--primary:focus-visible::after { transform: translateX(130%); }

.vp-footer { border-top: 0; }

@media (max-width: 980px) {
    .vp-objection-grid { grid-template-columns: 1fr; }
    .vp-objection-card { min-height: auto; }
    .vp-offer-card,
    .vp-form-copy { position: relative; top: auto; }
    .vp-assurance-strip .vp-container { grid-template-columns: 1fr; }
    .vp-assurance-strip .vp-container > div,
    .vp-assurance-strip .vp-container > div:first-child {
        min-height: auto;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
}
@media (max-width: 760px) {
    .vp-story-section::before { top: 32px; right: 18px; font-size: 86px; }
    .vp-objection-card { padding: 26px; border-radius: 20px; }
    .vp-objection-card__icon { margin-bottom: 22px; }
    .vp-objection-card h3 { max-width: none; font-size: 26px; }
    .vp-assurance-strip .vp-container > div { padding: 20px 0; }
    .vp-form-copy { padding: 24px; }
}
@media print {
    .vp-story-section::before,
    .vp-assurance-strip { display: none !important; }
    .vp-offer-card,
    .vp-form-copy { position: static; box-shadow: none; }
}


/* Trust principles */
.vp-client-trust {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(47, 107, 86, .08), transparent 28%),
        linear-gradient(180deg, #f7f3ea 0%, #ffffff 100%);
    border-top: 1px solid rgba(31, 67, 55, .08);
    border-bottom: 1px solid rgba(31, 67, 55, .08);
}
.vp-client-trust .vp-container {
    padding-top: clamp(56px, 7vw, 86px);
    padding-bottom: clamp(56px, 7vw, 86px);
}
.vp-trust-principles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}
.vp-trust-principle {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(31, 67, 55, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 34px rgba(23, 59, 50, .06);
}
.vp-trust-principle__index {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(47, 107, 86, .1);
    color: var(--vp-green);
    font-weight: 800;
    line-height: 1;
}
.vp-trust-principle h3 {
    margin: 0 0 8px;
    color: var(--vp-ink-deep);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.vp-trust-principle p {
    margin: 0;
    color: var(--vp-ink-soft);
    line-height: 1.65;
}

@media (max-width: 760px) {
    .vp-client-trust .vp-container { padding-top: 46px; padding-bottom: 46px; }
    .vp-trust-principles { grid-template-columns: 1fr; gap: 14px; }
    .vp-trust-principle { padding: 20px; }
}

.vp-google-reviews {
    background: linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
    border-top: 1px solid rgba(31,67,55,.08);
}
.vp-google-reviews .vp-container { padding-top: clamp(64px,8vw,96px); padding-bottom: clamp(64px,8vw,96px); }
.vp-google-reviews .reviews-widget { margin-top: 34px; }
