/* Revenue Leak Diagnostic landing page. Redesigned 21 Sep 2026. */
.rld-page {
    --rld-navy: #0b1633;
    --rld-navy-2: #111f45;
    --rld-blue: #2563eb;
    --rld-blue-2: #3b82f6;
    --rld-cyan: #22d3ee;
    --rld-ink: #0f1a36;
    --rld-muted: #5a6784;
    --rld-paper: #f6f8fc;
    --rld-line: #e3e8f2;
    --rld-green: #059669;
    --rld-radius: 20px;
    --rld-shadow: 0 1px 2px rgba(15, 26, 54, .04), 0 12px 32px -8px rgba(15, 26, 54, .12);
    color: var(--rld-ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* This page is intentionally a distraction-free landing page. */
.site-nav { display: none !important; }

.rld-page h1,
.rld-page h2,
.rld-page h3,
.rld-page p { margin: 0; }

.rld-page h1,
.rld-page h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.04;
    text-wrap: balance;
}

.rld-page h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.rld-page h3 { line-height: 1.25; letter-spacing: -.01em; }

.rld-page svg { flex: none; }

.rld-shell {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.rld-section { padding: 104px 0; }

.rld-kicker {
    margin-bottom: 14px !important;
    color: var(--rld-blue);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.25;
    text-transform: uppercase;
}

.rld-kicker--light { color: var(--rld-cyan); }

/* Buttons */
.rld-button {
    position: relative;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rld-blue-2) 0%, var(--rld-blue) 55%, #1d4ed8 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 26px -6px rgba(37, 99, 235, .55);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.rld-button:hover {
    filter: brightness(1.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 16px 34px -8px rgba(37, 99, 235, .65);
    transform: translateY(-2px);
}

.rld-button:focus-visible,
.rld-text-link:focus-visible,
.rld-accordion summary:focus-visible {
    outline: 3px solid var(--rld-cyan);
    outline-offset: 4px;
}

.rld-button--full { width: 100%; }

.rld-button--cash {
    flex-direction: column;
    gap: 6px;
}

.rld-cta-question {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.15;
}

.rld-cta-action {
    display: block;
    color: rgba(255, 255, 255, .9);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.rld-cta-action svg {
    width: 18px;
    height: 18px;
    margin-left: 4px;
    vertical-align: -3px;
    transition: transform .2s ease;
}

.rld-button:hover .rld-cta-action svg { transform: translateX(3px); }

.rld-section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.rld-section-heading--centred {
    margin-inline: auto;
    text-align: center;
}

.rld-section-heading h2 { margin-bottom: 18px; }

.rld-section-heading > p:last-child {
    max-width: 670px;
    margin-inline: auto;
    color: var(--rld-muted);
    font-size: 1.1rem;
}

/* Hero */
.rld-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 88px;
    background:
        radial-gradient(900px 480px at 12% -10%, rgba(37, 99, 235, .38), transparent 60%),
        radial-gradient(700px 420px at 95% 15%, rgba(34, 211, 238, .16), transparent 60%),
        linear-gradient(180deg, #0a1430 0%, var(--rld-navy) 100%);
    color: #fff;
}

.rld-hero::before,
.rld-hero::after { display: none; }

.rld-hero .rld-shell { position: relative; z-index: 1; }

.rld-hero__intro {
    max-width: 1040px;
    margin: 0 auto 40px;
    text-align: center;
}

.rld-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 4.6vw, 3.9rem);
}

.rld-hero h1 span {
    background: linear-gradient(90deg, #60a5fa 0%, var(--rld-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rld-hero__grid {
    display: grid;
    max-width: 1060px;
    align-items: start;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 28px;
}

/* Pain panel */
.rld-pain-panel {
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rld-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .025) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.rld-pain-panel h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    line-height: 1.18;
}

.rld-pain-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.rld-pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.rld-pain-list__tick {
    display: grid;
    width: 20px;
    height: 20px;
    flex: none;
    margin-top: 1px;
    place-items: center;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
}

.rld-pain-list__tick svg { width: 12px; height: 12px; stroke-width: 3; }

.rld-pain-list__copy {
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
    line-height: 1.5;
}

.rld-pain-list__copy strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.rld-pain-panel__close {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
}

.rld-pain-panel__close svg {
    width: 26px;
    height: 26px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .16);
    color: #34d399;
}

/* Offer card */
.rld-offer {
    position: relative;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--rld-radius);
    background: #fff;
    color: var(--rld-ink);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .55), 0 0 0 6px rgba(255, 255, 255, .06);
}

.rld-offer__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rld-line);
}

.rld-offer__heading p {
    color: var(--rld-ink);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.2;
}

.rld-offer__heading span {
    display: block;
    margin-top: 4px;
    color: var(--rld-muted);
    font-size: .84rem;
}

.rld-offer__heading strong {
    color: var(--rld-ink);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}

.rld-offer__heading + .rld-button { margin-top: 22px; }

.rld-offer .rld-button {
    min-height: 92px;
    padding: 18px 16px;
}

.rld-offer .rld-cta-question,
.rld-offer .rld-cta-action { font-size: 1.1rem; }

.rld-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px !important;
    color: #6b7690;
    font-size: .78rem;
}

.rld-secure svg,
.rld-proof-cta p svg { width: 13px; height: 13px; }

.rld-guarantee {
    margin-top: 20px;
    padding: 16px 18px;
    border: 1px solid #c9eedf;
    border-radius: 14px;
    background: linear-gradient(180deg, #f0fbf6 0%, #e9f8f1 100%);
}

.rld-guarantee span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #047857;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rld-guarantee span svg { width: 18px; height: 18px; }

.rld-guarantee p {
    color: #33584c;
    font-size: .8rem;
    line-height: 1.5;
}

.rld-booking-term {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--rld-paper);
    color: var(--rld-muted);
    font-size: .76rem;
    line-height: 1.45;
}

.rld-booking-term svg {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: #94a0b8;
}

.rld-booking-term strong { color: var(--rld-ink); font-weight: 700; }

/* Unused in the current layout, kept for re-use. */
.rld-check-list {
    display: grid;
    margin: 13px 0 14px;
    padding: 0;
    gap: 6px;
    list-style: none;
}

.rld-check-list li {
    position: relative;
    padding-left: 25px;
    color: #303d58;
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.35;
}

.rld-check-list li::before {
    position: absolute;
    top: .08em;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #e6f9f2;
    color: #06845f;
    content: '✓';
    font-size: .72rem;
    font-weight: 900;
    line-height: 17px;
    text-align: center;
}

/* Reviews */
.rld-proof {
    padding: 88px 0 80px;
    background: #fff;
}

.rld-proof-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 40px;
    gap: 8px;
    text-align: center;
}

.rld-proof-heading span {
    text-wrap: balance;
    color: var(--rld-ink);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.rld-proof-heading p { color: var(--rld-muted); font-size: .92rem; }

.rld-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rld-reviews figure {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 30px 28px 26px;
    border: 1px solid var(--rld-line);
    border-radius: var(--rld-radius);
    background: #fff;
    box-shadow: var(--rld-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rld-reviews figure:hover {
    box-shadow: 0 1px 2px rgba(15, 26, 54, .04), 0 22px 44px -12px rgba(15, 26, 54, .18);
    transform: translateY(-3px);
}

.rld-reviews figure::after {
    position: absolute;
    top: 14px;
    right: 24px;
    color: #e8eefb;
    content: '\201D';
    font-family: Georgia, serif;
    font-size: 5.5rem;
    line-height: 1;
    pointer-events: none;
}

.rld-stars {
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: .12em;
}

.rld-reviews blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #36425e;
    font-size: .96rem;
    line-height: 1.7;
}

.rld-reviews figcaption {
    display: grid;
    margin-top: auto;
    padding-top: 22px;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: center;
}

/* Initial avatar built from the author's name. */
.rld-reviews figcaption::before {
    color: #fff;
    font-weight: 800;
    display: grid;
    width: 40px;
    height: 40px;
    grid-row: span 2;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rld-blue-2), var(--rld-cyan));
    content: attr(data-initial);
}

.rld-reviews figcaption strong { color: var(--rld-ink); font-size: .95rem; line-height: 1.3; }
.rld-reviews figcaption span { color: var(--rld-muted); font-size: .82rem; line-height: 1.3; }

.rld-proof-cta {
    margin-top: 48px;
    text-align: center;
}

.rld-proof-cta .rld-button {
    width: min(100%, 620px);
    min-height: 96px;
    padding: 20px 34px;
}

.rld-proof-cta .rld-cta-question,
.rld-proof-cta .rld-cta-action { font-size: 1.3rem; }

.rld-proof-cta--faq { margin-top: 64px; }

.rld-proof-cta p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--rld-muted);
    font-size: .8rem;
}

/* Why Revamp */
.rld-why {
    padding: 96px 0;
    background: var(--rld-paper);
}

.rld-why__intro {
    display: grid;
    align-items: center;
    grid-template-columns: 340px 1fr;
    gap: 72px;
}

.rld-why__portrait { position: relative; }

.rld-why__portrait::before {
    position: absolute;
    inset: -14px 14px 14px -14px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--rld-blue) 0%, var(--rld-cyan) 100%);
    content: '';
    opacity: .9;
    transform: rotate(-3deg);
}

.rld-why__portrait img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    object-fit: cover;
    object-position: 50% 25%;
    box-shadow: 0 24px 50px -18px rgba(15, 26, 54, .45);
}

.rld-why__intro h2 { max-width: 640px; margin-bottom: 22px; }

.rld-why__intro > div:last-child > p:not(.rld-kicker) {
    max-width: 640px;
    margin-bottom: 14px;
    color: var(--rld-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* FAQ */
.rld-faq {
    padding: 96px 0;
    background: #fff;
}

.rld-faq__grid {
    display: grid;
    align-items: start;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
}

.rld-faq__intro { position: sticky; top: 40px; }
.rld-faq__intro h2 { margin-bottom: 20px; }
.rld-faq__intro > p:not(.rld-kicker) { color: var(--rld-muted); }
.rld-faq__intro a { color: var(--rld-blue); font-weight: 700; }

.rld-accordion {
    display: grid;
    gap: 12px;
}

.rld-accordion details {
    border: 1px solid var(--rld-line);
    border-radius: 16px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.rld-accordion details:hover { border-color: #cdd6e6; }

.rld-accordion details[open] {
    border-color: #cfdcf7;
    background: #fbfcff;
    box-shadow: var(--rld-shadow);
}

.rld-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    color: var(--rld-ink);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 700;
    gap: 20px;
    list-style: none;
}

.rld-accordion summary::-webkit-details-marker { display: none; }

.rld-accordion summary span {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef3fe;
    transition: background .2s ease;
}

.rld-accordion details[open] summary span { background: var(--rld-blue); }

.rld-accordion summary span::before,
.rld-accordion summary span::after {
    position: absolute;
    top: 14px;
    left: 9px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--rld-blue);
    content: '';
    transition: transform .2s ease, background .2s ease;
}

.rld-accordion summary span::after { transform: rotate(90deg); }
.rld-accordion details[open] summary span::before,
.rld-accordion details[open] summary span::after { background: #fff; }
.rld-accordion details[open] summary span::after { transform: rotate(0); }

.rld-accordion details > div { padding: 0 64px 22px 22px; }
.rld-accordion details p { color: var(--rld-muted); font-size: .96rem; line-height: 1.7; }

/* ------------------------------------------------------------------
   Sections below are switched off in the page (if (false)) but kept
   styled so they can be turned back on.
   ------------------------------------------------------------------ */
/* Report mock-up */
.rld-report {
    position: relative;
    width: min(100%, 390px);
    height: 344px;
    margin: 0 auto;
}

.rld-report__front,
.rld-report__back {
    position: absolute;
    overflow: hidden;
    border: 1px solid #d5dfed;
    background: #fff;
    box-shadow: 0 24px 46px rgba(13, 27, 62, .2);
}

.rld-report__front {
    inset: 0 46px 0 0;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 16px;
    text-align: left;
}

.rld-report__front::after {
    position: absolute;
    top: -68px;
    right: -72px;
    width: 190px;
    height: 190px;
    border: 35px solid #e8f0ff;
    border-radius: 50%;
    content: '';
}

.rld-report__back {
    top: 30px;
    right: 0;
    bottom: 21px;
    width: 52%;
    padding: 28px 18px;
    background: var(--rld-navy);
    color: #fff;
    transform: rotate(3deg);
}

.rld-report__back > span {
    display: block;
    margin-left: 44px;
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .14em;
    white-space: nowrap;
}

.rld-report__roadmap-line {
    display: grid;
    margin: 44px 0 0 59px;
    gap: 41px;
}

.rld-report__roadmap-line::before {
    position: absolute;
    top: 75px;
    bottom: 58px;
    left: 83px;
    width: 1px;
    background: rgba(255, 255, 255, .3);
    content: '';
}

.rld-report__roadmap-line i {
    position: relative;
    z-index: 1;
    width: 13px;
    height: 13px;
    border: 3px solid var(--rld-navy);
    border-radius: 50%;
    background: var(--rld-cyan);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .5);
}

.rld-report__masthead {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--rld-navy);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.rld-report__mark {
    display: inline-grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 4px;
    background: var(--rld-blue);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
}

.rld-report__label {
    margin-top: 45px;
    color: var(--rld-blue);
    font-size: .53rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.rld-report__front > strong {
    margin-top: 5px;
    color: var(--rld-navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: .9;
}

.rld-report__business {
    margin-top: 8px;
    color: #71809b;
    font-size: .58rem;
}

.rld-report__score {
    display: grid;
    align-items: end;
    margin-top: 20px;
    padding: 9px 11px;
    border: 1px solid #e0e7f1;
    background: #f7f9fc;
    grid-template-columns: auto 1fr;
    gap: 18px;
}

.rld-report__score small {
    display: block;
    color: #728099;
    font-size: .45rem;
    line-height: 1;
}

.rld-report__score b {
    display: block;
    color: var(--rld-blue);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: .9;
}

.rld-report__bars {
    display: flex;
    height: 24px;
    align-items: flex-end;
    gap: 5px;
}

.rld-report__bars i { width: 18%; background: #b6c7e4; }
.rld-report__bars i:nth-child(1) { height: 35%; }
.rld-report__bars i:nth-child(2) { height: 75%; background: var(--rld-blue); }
.rld-report__bars i:nth-child(3) { height: 55%; }
.rld-report__bars i:nth-child(4) { height: 90%; background: var(--rld-cyan); }

.rld-report__rows {
    display: grid;
    margin-top: 11px;
    gap: 5px;
}

.rld-report__rows span {
    color: #4c5970;
    font-size: .47rem;
    font-weight: 600;
}

.rld-report__rows i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--rld-blue);
}

.rld-report__footer {
    margin-top: auto;
    color: #8590a5;
    font-size: .43rem;
    font-weight: 800;
    letter-spacing: .09em;
}

/* Leak examples */
.rld-leaks { background: #fff; }

.rld-leak-grid {
    display: grid;
    border-top: 1px solid var(--rld-line);
    border-left: 1px solid var(--rld-line);
    grid-template-columns: repeat(4, 1fr);
}

.rld-leak-grid article {
    min-height: 285px;
    padding: 31px 27px 28px;
    border-right: 1px solid var(--rld-line);
    border-bottom: 1px solid var(--rld-line);
}

.rld-leak-grid article > span {
    color: #a2adc1;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
}

.rld-leak-grid h3 {
    margin: 59px 0 12px;
    color: var(--rld-navy);
    font-size: 1.24rem;
}

.rld-leak-grid p { color: var(--rld-muted); font-size: .94rem; }

.rld-callout {
    max-width: 780px;
    margin: 33px auto 0 !important;
    color: var(--rld-navy);
    font-size: 1.08rem;
    font-weight: 700;
    text-align: center;
}

/* Deliverables */
.rld-includes { background: var(--rld-paper); }

.rld-split {
    display: grid;
    align-items: start;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
}

.rld-split__copy {
    position: sticky;
    top: 115px;
}

.rld-split__copy h2 { margin-bottom: 25px; }

.rld-split__copy > p:not(.rld-kicker) {
    max-width: 440px;
    color: var(--rld-muted);
    font-size: 1.08rem;
}

.rld-text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    border-bottom: 2px solid var(--rld-blue);
    color: var(--rld-blue);
    font-weight: 800;
    gap: 10px;
    text-decoration: none;
}

.rld-text-link span { font-size: 1.4rem; transition: transform .18s ease; }
.rld-text-link:hover span { transform: translateX(4px); }

.rld-deliverables {
    margin: 0;
    padding: 0;
    border-top: 1px solid #ced7e6;
    list-style: none;
}

.rld-deliverables li {
    display: grid;
    padding: 24px 0;
    border-bottom: 1px solid #ced7e6;
    grid-template-columns: 48px 1fr;
    gap: 18px;
}

.rld-deliverables li > span {
    color: var(--rld-blue);
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
}

.rld-deliverables h3 {
    margin-bottom: 6px;
    color: var(--rld-navy);
    font-size: 1.14rem;
}

.rld-deliverables p { color: var(--rld-muted); font-size: .94rem; }

/* Report showcase */
.rld-showcase {
    position: relative;
    overflow: hidden;
    background: var(--rld-navy);
    color: #fff;
}

.rld-showcase::before {
    position: absolute;
    top: -180px;
    left: -150px;
    width: 500px;
    height: 500px;
    border: 105px solid rgba(37, 99, 235, .14);
    border-radius: 50%;
    content: '';
}

.rld-showcase__grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: 1.04fr .96fr;
    gap: 100px;
}

.rld-report--large {
    width: min(100%, 490px);
    height: 432px;
}

.rld-report--large .rld-report__front { padding: 28px 30px 21px; }
.rld-report--large .rld-report__front > strong { font-size: 3.15rem; }
.rld-report--large .rld-report__label { margin-top: 62px; }
.rld-report--large .rld-report__roadmap-line::before { left: 95px; }
.rld-report--large .rld-report__roadmap-line { margin-left: 72px; gap: 58px; }

.rld-showcase__copy h2 { margin-bottom: 26px; font-size: clamp(2.2rem, 3.8vw, 3.2rem); }

.rld-showcase__copy > p:not(.rld-kicker) {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.04rem;
}

.rld-showcase__copy ul {
    display: grid;
    margin: 27px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    list-style: none;
}

.rld-showcase__copy li {
    position: relative;
    padding: 10px 0 10px 23px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
}

.rld-showcase__copy li::before {
    position: absolute;
    left: 0;
    color: var(--rld-cyan);
    content: '•';
}

/* Process */
.rld-process { background: #fff; }

.rld-steps {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rld-steps li {
    position: relative;
    min-height: 256px;
    padding: 28px;
    border: 1px solid var(--rld-line);
    background: #fff;
}

.rld-steps li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -33px;
    width: 42px;
    height: 1px;
    background: var(--rld-blue);
    content: '';
}

.rld-steps li > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--rld-navy);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: .9rem;
}

.rld-steps h3 {
    margin: 45px 0 10px;
    color: var(--rld-navy);
    font-size: 1.24rem;
}

.rld-steps p { color: var(--rld-muted); font-size: .94rem; }
.rld-centred-cta { margin-top: 38px; text-align: center; }

/* Cost */
.rld-cost { background: var(--rld-paper); }

.rld-cost__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .92fr 1.08fr;
    gap: 100px;
}

.rld-cost__copy h2 { margin-bottom: 26px; }

.rld-cost__copy > p:not(.rld-kicker) {
    margin-bottom: 15px;
    color: var(--rld-muted);
    font-size: 1.02rem;
}

.rld-cost__copy .rld-cost__strong {
    margin: 25px 0 0;
    padding-left: 18px;
    border-left: 3px solid var(--rld-blue);
    color: var(--rld-navy);
    font-weight: 700;
}

.rld-cost__sequence {
    position: relative;
    display: grid;
    gap: 13px;
}

.rld-cost__sequence::before {
    position: absolute;
    top: 41px;
    bottom: 41px;
    left: 22px;
    width: 2px;
    background: #c5d2e5;
    content: '';
}

.rld-cost__sequence div {
    position: relative;
    z-index: 1;
    padding: 18px 20px 18px 63px;
    border: 1px solid #d8e0eb;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(13, 27, 62, .05);
}

.rld-cost__sequence div::before {
    position: absolute;
    top: 22px;
    left: 15px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border: 5px solid #e3eaf5;
    border-radius: 50%;
    background: var(--rld-blue);
    box-sizing: content-box;
    content: '';
}

.rld-cost__sequence div:last-child::before { background: #db4e4e; }

.rld-cost__sequence span {
    display: block;
    color: var(--rld-navy);
    font-weight: 800;
}

.rld-cost__sequence small {
    display: block;
    margin-top: 2px;
    color: var(--rld-muted);
    font-size: .83rem;
}

/* Why and proof */
/* Fit */
.rld-fit {
    background: #17346e;
    color: #fff;
}

.rld-fit__grid {
    display: grid;
    align-items: start;
    grid-template-columns: .88fr 1.12fr;
    gap: 90px;
}

.rld-fit__intro h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }

.rld-fit__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.rld-fit__lists > div {
    height: 100%;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
}

.rld-fit__lists .rld-fit__not { background: rgba(7, 17, 42, .22); }

.rld-fit__lists h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1.05rem;
}

.rld-fit__lists ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 14px;
    list-style: none;
}

.rld-fit__lists li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
}

.rld-fit__lists li::before {
    position: absolute;
    left: 0;
    color: var(--rld-cyan);
    content: '•';
}

.rld-fit__not li::before { color: #9eacc9; }

/* FAQ */
/* Final CTA */
.rld-final {
    padding: 80px 0;
    background: var(--rld-navy);
    color: #fff;
}

.rld-final__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 400px;
    gap: 90px;
}

.rld-final h2 { max-width: 700px; font-size: clamp(2.2rem, 3.8vw, 3.4rem); }

.rld-final__inner > div > p:last-child {
    max-width: 720px;
    margin-top: 23px;
    color: rgba(255, 255, 255, .68);
    font-size: 1.03rem;
}

.rld-final aside {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    text-align: center;
}

.rld-final aside > span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rld-final aside > strong {
    display: block;
    margin: 5px 0 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.7rem;
    font-weight: 400;
    line-height: 1;
}

.rld-button--light {
    width: 100%;
    border-color: #fff;
    background: #fff;
    color: var(--rld-navy);
    box-shadow: none;
}

.rld-button--light:hover {
    border-color: #dbeeff;
    background: #dbeeff;
    color: var(--rld-navy);
}

.rld-final aside p {
    margin-top: 15px;
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
    line-height: 1.45;
}

.rld-final aside p b { color: rgba(255, 255, 255, .86); }


/* Responsive */
@media (max-width: 980px) {
    .rld-section { padding: 82px 0; }
    .rld-hero__grid { gap: 22px; }
    .rld-pain-panel { padding: 24px 22px 20px; }
    .rld-offer { padding: 24px 22px 22px; }
    .rld-leak-grid { grid-template-columns: 1fr 1fr; }
    .rld-leak-grid article { min-height: 250px; }
    .rld-split,
    .rld-cost__grid,
    .rld-fit__grid,
    .rld-faq__grid { gap: 55px; }
    .rld-showcase__grid { gap: 45px; }
    .rld-why__intro { grid-template-columns: 260px 1fr; gap: 56px; }
    .rld-reviews { gap: 14px; }
    .rld-reviews figure { padding: 24px 22px 22px; }
    .rld-final__inner { grid-template-columns: 1fr 350px; gap: 50px; }
}

@media (max-width: 760px) {
    .rld-shell { width: calc(100% - 32px); max-width: 620px; }
    .rld-section { padding: 68px 0; }
    .rld-proof,
    .rld-why,
    .rld-faq { padding: 64px 0; }
    .rld-kicker { margin-bottom: 12px !important; }
    .rld-section-heading { margin-bottom: 34px; }
    .rld-section-heading > p:last-child { font-size: 1rem; }

    .rld-hero { padding: 40px 0 56px; }
    .rld-hero__intro { margin-bottom: 32px; }
    .rld-hero h1 { font-size: clamp(2.3rem, 9.5vw, 3.2rem); }
    .rld-hero__grid { grid-template-columns: 1fr; gap: 20px; }
    .rld-report--hero { width: min(94%, 390px); height: 326px; }

    .rld-leak-grid { grid-template-columns: 1fr; }
    .rld-leak-grid article { min-height: 0; padding: 25px; }
    .rld-leak-grid h3 { margin: 28px 0 9px; }

    .rld-split,
    .rld-showcase__grid,
    .rld-cost__grid,
    .rld-fit__grid,
    .rld-faq__grid,
    .rld-final__inner { grid-template-columns: 1fr; gap: 36px; }
    .rld-split__copy,
    .rld-faq__intro { position: static; }

    .rld-showcase__visual { order: 1; }
    .rld-showcase__copy { order: 0; }
    .rld-report--large { height: 385px; }
    .rld-report--large .rld-report__front > strong { font-size: 2.75rem; }

    .rld-steps { grid-template-columns: 1fr; gap: 14px; }
    .rld-steps li { display: grid; min-height: 0; grid-template-columns: 44px 1fr; gap: 18px; }
    .rld-steps li:not(:last-child)::after { display: none; }
    .rld-steps h3 { margin: 2px 0 8px; }

    .rld-cost__sequence { order: 0; }
    .rld-cost__copy { order: 1; }

    .rld-why__intro { grid-template-columns: 1fr; gap: 48px; }
    .rld-why__portrait { width: min(78%, 300px); margin-inline: auto; }
    .rld-proof-heading { margin-bottom: 28px; }
    .rld-reviews { grid-template-columns: 1fr; }
    .rld-proof-cta { margin-top: 36px; }
    .rld-proof-cta--faq { margin-top: 44px; }
    .rld-proof-cta .rld-button { width: 100%; min-width: 0; }
    .rld-accordion details > div { padding-right: 22px; }

    .rld-fit__lists { grid-template-columns: 1fr; }
    .rld-final { padding: 68px 0; }
    .rld-final__inner { gap: 35px; }
    .rld-final aside { width: min(100%, 420px); }
}

@media (max-width: 430px) {
    .rld-hero h1 { font-size: 2.2rem; }
    .rld-pain-panel { padding: 24px 18px 20px; }
    .rld-offer { padding: 22px 18px 20px; }
    .rld-offer__heading p { font-size: 1.05rem; }
    .rld-offer__heading strong { font-size: 2.2rem; }
    .rld-button { min-height: 55px; padding-inline: 17px; font-size: .94rem; }
    .rld-cta-question,
    .rld-cta-action,
    .rld-offer .rld-cta-question,
    .rld-offer .rld-cta-action,
    .rld-proof-cta .rld-cta-question,
    .rld-proof-cta .rld-cta-action { font-size: 1rem; }

    .rld-report,
    .rld-report--hero { height: 286px; }
    .rld-report__front { right: 35px; padding: 16px 16px 12px; }
    .rld-report__back { top: 23px; bottom: 17px; }
    .rld-report__label { margin-top: 30px; }
    .rld-report__front > strong { font-size: 2.05rem; }
    .rld-report__score { margin-top: 13px; }
    .rld-report__rows { gap: 3px; }
    .rld-report__back > span { margin-left: 32px; }
    .rld-report__roadmap-line { margin: 35px 0 0 45px; gap: 32px; }
    .rld-report__roadmap-line::before { top: 65px; bottom: 50px; left: 69px; }

    .rld-deliverables li { grid-template-columns: 36px 1fr; gap: 10px; }
    .rld-report--large { height: 315px; }
    .rld-report--large .rld-report__front { padding: 19px 19px 14px; }
    .rld-report--large .rld-report__label { margin-top: 37px; }
    .rld-report--large .rld-report__front > strong { font-size: 2.25rem; }
    .rld-report--large .rld-report__roadmap-line { margin-left: 50px; gap: 39px; }
    .rld-report--large .rld-report__roadmap-line::before { left: 74px; }

    .rld-steps li { padding: 22px; grid-template-columns: 38px 1fr; gap: 14px; }
    .rld-steps li > span { width: 38px; height: 38px; }
    .rld-cost__sequence div { padding-right: 14px; padding-left: 58px; }
    .rld-accordion summary { padding: 18px 16px; font-size: .97rem; }
    .rld-accordion details > div { padding: 0 16px 18px; }
    .rld-final aside { padding: 22px 17px; }
}

@media (prefers-reduced-motion: reduce) {
    .rld-button,
    .rld-cta-action svg,
    .rld-reviews figure,
    .rld-text-link span,
    .rld-accordion details,
    .rld-accordion summary span,
    .rld-accordion summary span::before,
    .rld-accordion summary span::after { transition: none; }
    .rld-button:hover,
    .rld-reviews figure:hover { transform: none; }
}
