.checklist-page-body {
    min-height: 100vh;
}

.checklist-page-shell {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}

.checklist-page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 10%, rgba(var(--accent-rgb), 0.16), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(212, 184, 138, 0.1), transparent 22%),
        linear-gradient(180deg, rgba(11, 13, 12, 0.1), rgba(11, 13, 12, 0.28));
}

.checklist-page-header {
    padding-top: 14px;
}

.checklist-page-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.06), rgba(255, 250, 242, 0.02)),
        rgba(14, 17, 14, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.checklist-page-brand {
    gap: 0.85rem;
}

html[data-theme="dark"] .checklist-page-brand img {
    filter: brightness(0) invert(1);
}

.checklist-page-brand-copy {
    display: grid;
    gap: 0.18rem;
}

.checklist-page-brand-title {
    color: rgba(var(--accent-strong-rgb), 0.92);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.checklist-page-brand-meta {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.checklist-page-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.checklist-page-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

.checklist-page-link:hover,
.checklist-page-link:focus-visible {
    color: var(--text);
}

.checklist-page-main {
    padding: clamp(1.6rem, 4vw, 3.5rem) 0 clamp(2.6rem, 5vw, 4.5rem);
}

.checklist-hero-shell,
.checklist-two-column,
.checklist-cta-card {
    display: grid;
    gap: 1.25rem;
}

.checklist-hero-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.checklist-hero-copy,
.checklist-summary-card,
.checklist-card,
.checklist-danger-card,
.checklist-result-card,
.checklist-cta-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.07), rgba(255, 250, 242, 0.03)),
        rgba(14, 17, 14, 0.6);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.checklist-hero-copy,
.checklist-summary-card,
.checklist-card,
.checklist-danger-card,
.checklist-result-card {
    padding: clamp(1.4rem, 3vw, 2.3rem);
}

.checklist-cta-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    padding: clamp(1.4rem, 3vw, 2.3rem);
}

.checklist-hero-copy::before,
.checklist-summary-card::before,
.checklist-card::before,
.checklist-danger-card::before,
.checklist-result-card::before,
.checklist-cta-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.42), transparent);
}

.checklist-hero-copy h1 {
    max-width: 13ch;
    font-family: "Tenor Sans", sans-serif;
    font-size: clamp(2.65rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.checklist-hero-lead {
    max-width: 42rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.checklist-hero-emphasis {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.35rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 22px;
    background: rgba(var(--accent-rgb), 0.08);
}

.checklist-hero-emphasis p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

.checklist-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.checklist-summary-card {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.checklist-summary-card h2,
.checklist-danger-card h2,
.checklist-result-card h2,
.checklist-cta-copy h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.08;
    text-wrap: balance;
}

.checklist-summary-list,
.checklist-points,
.checklist-danger-list,
.checklist-result-list,
.checklist-cta-list,
.checklist-free-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist-summary-list li,
.checklist-points li,
.checklist-danger-list li,
.checklist-result-list li,
.checklist-cta-list li,
.checklist-free-list li {
    position: relative;
    padding-left: 1.35rem;
}

.checklist-summary-list li::before,
.checklist-points li::before,
.checklist-danger-list li::before,
.checklist-result-list li::before,
.checklist-cta-list li::before,
.checklist-free-list li::before {
    content: "";
    position: absolute;
    top: 0.54rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.12);
}

.checklist-section {
    margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.checklist-section-compact {
    margin-top: 1.25rem;
}

.checklist-section-head {
    display: grid;
    gap: 0.5rem;
    max-width: 44rem;
    margin-bottom: 1.15rem;
}

.checklist-section-head h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.02;
    text-wrap: balance;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.checklist-card {
    display: grid;
    gap: 1rem;
}

.checklist-card-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
}

.checklist-card-index {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.14);
    color: var(--accent-strong);
    font-weight: 700;
}

.checklist-card-head h3,
.checklist-free-box h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.1;
}

.checklist-card-lead,
.checklist-card-note,
.checklist-danger-note,
.checklist-cta-note {
    margin: 0;
    color: var(--muted);
}

.checklist-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist-danger-card,
.checklist-result-card {
    display: grid;
    gap: 1rem;
}

.checklist-danger-list li::before {
    background: #d17d6e;
    box-shadow: 0 0 0 5px rgba(209, 125, 110, 0.12);
}

.checklist-cta-card {
    align-items: stretch;
}

.checklist-cta-copy,
.checklist-free-box {
    display: grid;
    gap: 1rem;
}

.checklist-free-box {
    padding: 1.15rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 28px;
    background: rgba(var(--accent-rgb), 0.08);
}

html[data-theme="light"] .checklist-page-header-inner,
html[data-theme="light"] .checklist-hero-copy,
html[data-theme="light"] .checklist-summary-card,
html[data-theme="light"] .checklist-card,
html[data-theme="light"] .checklist-danger-card,
html[data-theme="light"] .checklist-result-card,
html[data-theme="light"] .checklist-cta-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 240, 0.46)),
        rgba(255, 249, 242, 0.68);
}

html[data-theme="light"] .checklist-hero-emphasis,
html[data-theme="light"] .checklist-free-box {
    background: rgba(var(--accent-rgb), 0.08);
}

@media (max-width: 1100px) {
    .checklist-grid,
    .checklist-two-column,
    .checklist-cta-card,
    .checklist-hero-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .checklist-page-header-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .checklist-page-header-actions,
    .checklist-hero-actions {
        display: grid;
    }

    .checklist-card-head {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
}

/* 2026-04-03: align checklist page with quiz header and main landing surfaces */
.checklist-page-body {
    background: #0b0d0c;
}

.checklist-page-shell::before,
.checklist-page-shell::after {
    position: fixed;
    inset: 0;
}

.checklist-page-shell::before {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 10, 9, 0.18) 0%, rgba(8, 10, 9, 0.44) 50%, rgba(8, 10, 9, 0.72) 100%),
        radial-gradient(circle at 14% 10%, rgba(var(--accent-rgb), 0.08), transparent 24%),
        radial-gradient(circle at 84% 12%, rgba(214, 184, 132, 0.05), transparent 22%),
        url("images/hero-top-dark-living-20260319.png") center top / cover no-repeat;
}

.checklist-page-shell::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11, 13, 12, 0.12), rgba(11, 13, 12, 0.24)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02), transparent 42%);
}

.checklist-page-header {
    position: relative;
    z-index: 24;
    padding: clamp(0.8rem, 2vh, 1.1rem) 0 0;
}

.checklist-page-header-inner {
    width: min(var(--header-container), calc(100% - 18px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 0;
    padding: clamp(1rem, 2vw, 1.2rem) clamp(1rem, 2.2vw, 1.5rem);
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.checklist-page-brand {
    flex: 0 0 auto;
}

.checklist-page-brand-copy,
.checklist-page-link {
    display: none;
}

.checklist-page-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: nowrap;
}

.checklist-page-about-link {
    min-height: 3.25rem;
    padding-inline: 1.3rem;
}

.checklist-page-phone {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-align: right;
    align-items: flex-end;
}

.checklist-page-phone::after {
    display: none;
}

.checklist-page-main {
    padding: clamp(1.25rem, 3vw, 1.9rem) 0 4.75rem;
}

.checklist-hero-shell,
.checklist-two-column,
.checklist-cta-card {
    gap: 1rem;
}

.checklist-hero-copy,
.checklist-summary-card,
.checklist-card,
.checklist-danger-card,
.checklist-result-card,
.checklist-cta-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--panel);
    box-shadow: var(--shadow-soft);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.checklist-hero-copy h1,
.checklist-summary-card h2,
.checklist-danger-card h2,
.checklist-result-card h2,
.checklist-section-head h2,
.checklist-cta-copy h2,
.checklist-card-head h3,
.checklist-free-box h3 {
    font-family: "Onest", sans-serif;
}

.checklist-hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.45rem, 4.8vw, 4.9rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 650;
}

.checklist-summary-card h2,
.checklist-danger-card h2,
.checklist-result-card h2,
.checklist-cta-copy h2 {
    font-weight: 600;
    letter-spacing: -0.04em;
}

.checklist-section-head h2 {
    letter-spacing: -0.05em;
    font-weight: 600;
}

.checklist-hero-lead,
.checklist-card-lead,
.checklist-card-note,
.checklist-danger-note,
.checklist-cta-note,
.checklist-summary-list li,
.checklist-points li,
.checklist-danger-list li,
.checklist-result-list li,
.checklist-cta-list li,
.checklist-free-list li {
    line-height: 1.68;
}

.checklist-hero-emphasis,
.checklist-free-box {
    border-radius: calc(var(--radius-lg) - 2px);
    border-color: var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(18, 19, 16, 0.92);
    box-shadow: none;
}

.checklist-section {
    margin-top: clamp(1.2rem, 3vw, 2rem);
}

.checklist-section-head {
    max-width: 46rem;
    margin-bottom: 1rem;
}

.checklist-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.checklist-card-head {
    align-items: start;
}

.checklist-card-index {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(190, 213, 79, 0.24), rgba(190, 213, 79, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.checklist-card-head h3,
.checklist-free-box h3 {
    font-weight: 600;
    letter-spacing: -0.03em;
}

@media (max-width: 960px) {
    .checklist-page-shell::before,
    .checklist-page-shell::after {
        position: absolute;
        min-height: 100%;
    }

    .checklist-page-phone .header-phone-meta {
        display: none;
    }

    .checklist-hero-copy h1 {
        max-width: none;
        text-wrap: balance;
    }
}

@media (max-width: 720px) {
    .checklist-page-header-inner {
        width: min(var(--header-container), calc(100% - 12px));
        padding: 0.95rem 1rem;
        gap: 0.8rem;
    }

    .checklist-page-header-actions {
        gap: 0.7rem;
    }

    .checklist-page-about-link {
        min-height: 3rem;
        padding-inline: 1.05rem;
    }

    .checklist-hero-actions {
        display: grid;
    }

    .checklist-card-head {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 560px) {
    .checklist-page-header-inner {
        flex-wrap: wrap;
    }

    .checklist-page-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .checklist-page-phone .header-phone-main {
        font-size: 0.98rem;
    }

    .checklist-hero-copy,
    .checklist-summary-card,
    .checklist-card,
    .checklist-danger-card,
    .checklist-result-card,
    .checklist-cta-card {
        padding: 1.2rem;
    }

    .checklist-hero-copy h1 {
        font-size: clamp(2rem, 9.6vw, 3.25rem);
    }
}

/* 2026-04-03: stronger quiz-header parity and landing-page surfaces */
.checklist-page-body {
    min-height: 100vh;
}

.checklist-page-shell {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}

.checklist-page-shell::before,
.checklist-page-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.checklist-page-shell::before {
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 10, 9, 0.18) 0%, rgba(8, 10, 9, 0.44) 50%, rgba(8, 10, 9, 0.72) 100%),
        radial-gradient(circle at 14% 10%, rgba(var(--accent-rgb), 0.08), transparent 24%),
        radial-gradient(circle at 84% 12%, rgba(214, 184, 132, 0.05), transparent 22%),
        url("images/hero-top-dark-living-20260319.png") center top / cover no-repeat;
}

.checklist-page-shell::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11, 13, 12, 0.12), rgba(11, 13, 12, 0.24)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02), transparent 42%);
}

.checklist-page-body .site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 24 !important;
    padding: clamp(0.8rem, 2vh, 1.1rem) 0 0 !important;
    background: transparent !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
}

.checklist-page-body .site-header.is-hidden {
    transform: none !important;
    pointer-events: auto !important;
}

.checklist-page-body .header-shell,
.checklist-page-body .site-header:not(.is-solid) .header-shell,
.checklist-page-body .site-header.is-solid .header-shell,
.checklist-page-body.menu-open .header-shell {
    width: min(var(--header-container), calc(100% - 18px));
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 0 !important;
    padding: clamp(1rem, 2vw, 1.2rem) clamp(1rem, 2.2vw, 1.5rem) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.checklist-page-body .brand {
    flex: 0 0 auto;
}

.checklist-page-body .checklist-page-brand-copy,
.checklist-page-body .checklist-page-link {
    display: none !important;
}

.checklist-page-body .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: nowrap;
}

.checklist-page-body .header-link-primary {
    min-height: 3.25rem;
    padding-inline: 1.3rem;
}

.checklist-page-body .header-phone {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-align: right;
    align-items: flex-end;
}

.checklist-page-body .header-phone::after {
    display: none !important;
}

.checklist-page-body .header-phone-main {
    font-size: clamp(1rem, 1.85vw, 1.2rem);
}

.checklist-page-body .header-phone-meta {
    opacity: 0.72;
}

.checklist-page-body .checklist-page-main {
    padding: clamp(1.25rem, 3vw, 1.9rem) 0 4.75rem;
}

.checklist-page-body .checklist-hero-shell,
.checklist-page-body .checklist-two-column,
.checklist-page-body .checklist-cta-card {
    gap: 1rem;
}

.checklist-page-body .checklist-hero-copy,
.checklist-page-body .checklist-summary-card,
.checklist-page-body .checklist-card,
.checklist-page-body .checklist-danger-card,
.checklist-page-body .checklist-result-card,
.checklist-page-body .checklist-cta-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--panel);
    box-shadow: var(--shadow-soft);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.checklist-page-body .checklist-hero-copy {
    display: grid;
    align-content: start;
    gap: 1.15rem;
}

.checklist-page-body .checklist-summary-card {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.checklist-page-body .checklist-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.checklist-page-body .checklist-hero-copy h1,
.checklist-page-body .checklist-summary-card h2,
.checklist-page-body .checklist-danger-card h2,
.checklist-page-body .checklist-result-card h2,
.checklist-page-body .checklist-section-head h2,
.checklist-page-body .checklist-cta-copy h2,
.checklist-page-body .checklist-card-head h3,
.checklist-page-body .checklist-free-box h3 {
    font-family: "Onest", sans-serif;
}

.checklist-page-body .checklist-hero-copy h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.25rem, 2.45vw, 2.45rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 650;
    text-wrap: balance;
}

.checklist-page-body .checklist-summary-card h2,
.checklist-page-body .checklist-danger-card h2,
.checklist-page-body .checklist-result-card h2,
.checklist-page-body .checklist-cta-copy h2 {
    font-weight: 600;
    letter-spacing: -0.04em;
}

.checklist-page-body .checklist-section-head {
    max-width: 46rem;
    margin-bottom: 1rem;
}

.checklist-page-body .checklist-section-head h2 {
    letter-spacing: -0.05em;
    font-weight: 600;
}

.checklist-page-body .checklist-hero-emphasis,
.checklist-page-body .checklist-free-box {
    border-radius: calc(var(--radius-lg) - 2px);
    border-color: var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(18, 19, 16, 0.92);
    box-shadow: none;
}

.checklist-page-body .checklist-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.checklist-page-body .checklist-card-head {
    align-items: start;
}

.checklist-page-body .checklist-card-index {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(190, 213, 79, 0.24), rgba(190, 213, 79, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.checklist-page-body .checklist-card-head h3,
.checklist-page-body .checklist-free-box h3 {
    font-weight: 600;
    letter-spacing: -0.03em;
}

@media (max-width: 960px) {
    .checklist-page-shell::before,
    .checklist-page-shell::after {
        position: absolute;
        min-height: 100%;
    }

    .checklist-page-body .header-phone-meta {
        display: none;
    }

    .checklist-page-body .checklist-hero-copy h1 {
        max-width: none;
        text-wrap: balance;
    }
}

@media (max-width: 720px) {
    .checklist-page-body .header-shell {
        width: min(var(--header-container), calc(100% - 12px));
        padding: 0.95rem 1rem !important;
        gap: 0.8rem;
    }

    .checklist-page-body .header-actions {
        gap: 0.7rem;
    }

    .checklist-page-body .header-link-primary {
        min-height: 3rem;
        padding-inline: 1.05rem;
    }

    .checklist-page-body .checklist-hero-actions {
        display: grid;
    }
}

@media (max-width: 560px) {
    .checklist-page-body .header-shell {
        flex-wrap: wrap;
    }

    .checklist-page-body .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .checklist-page-body .header-phone-main {
        font-size: 0.98rem;
    }

    .checklist-page-body .checklist-hero-copy,
    .checklist-page-body .checklist-summary-card,
    .checklist-page-body .checklist-card,
    .checklist-page-body .checklist-danger-card,
    .checklist-page-body .checklist-result-card,
    .checklist-page-body .checklist-cta-card {
        padding: 1.2rem;
    }

    .checklist-page-body .checklist-hero-copy h1 {
        font-size: clamp(1.05rem, 4.8vw, 1.65rem);
    }
}

/* 2026-04-03: compact 8-step checklist cards */
.checklist-page-body .checklist-hero-actions,
.checklist-steps-section-legacy {
    display: none !important;
}

.checklist-steps-section {
    margin-top: clamp(1rem, 2.6vw, 1.7rem);
}

.checklist-section-head--compact {
    max-width: 56rem;
}

.checklist-steps-lead {
    margin: 0;
    max-width: 44rem;
    color: var(--muted);
    line-height: 1.6;
}

.checklist-grid-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.checklist-card-compact {
    gap: 0.75rem;
    padding: 1rem 0.95rem;
    min-height: 0;
    align-content: start;
    border-radius: 24px;
}

.checklist-card-head-copy {
    display: grid;
    gap: 0.22rem;
}

.checklist-card-compact .checklist-card-head {
    gap: 0.72rem;
    align-items: start;
}

.checklist-card-compact .checklist-card-index {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
}

.checklist-card-kicker {
    margin: 0;
    color: rgba(var(--accent-strong-rgb), 0.94);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checklist-card-compact .checklist-card-head h3 {
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.08;
}

.checklist-card-summary,
.checklist-card-signal {
    margin: 0;
}

.checklist-card-summary {
    color: rgba(245, 241, 232, 0.82);
    font-size: 0.96rem;
    line-height: 1.52;
}

.checklist-card-signal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-strong);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.4;
}

.checklist-card-signal::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.9);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
    flex: 0 0 auto;
}

.checklist-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.checklist-two-column .checklist-cta-actions {
    display: none;
}

.checklist-cta-card > .checklist-cta-actions {
    display: flex;
}

.checklist-cta-actions .button {
    min-width: 190px;
}

@media (max-width: 1180px) {
    .checklist-grid-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .checklist-grid-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .checklist-grid-steps {
        grid-template-columns: 1fr;
    }

    .checklist-card-compact {
        padding: 0.95rem 0.9rem;
    }

    .checklist-cta-actions {
        display: grid;
    }

    .checklist-cta-actions .button {
        width: 100%;
        min-width: 0;
    }
}
