/* ─── Custom Properties ─────────────────────────────── */
:root {
    --bg: #f7faf8;
    --fg: #28303D;
    --nav-bg: #003b2a;
    --hero-bg: #02563d;
    --green: #1B5A3B;
    --green-dark: #153D2A;
    --green-light: #E8F3EE;
    --orange: #F26522;
    --orange-dark: #E8522A;
    --orange-hover: #cf4524;
    --mint: #5dde96;
    --mint-bright: #69F0AE;
    --risk-high: #DC2626;
    --risk-high-bg: #FEF2F2;
    --risk-medium: #D97706;
    --risk-medium-bg: #FFFBEB;
    --risk-low: #16A34A;
    --risk-low-bg: #F0FDF4;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}


body,
span,
* {
    font-family: 'Public Sans', system-ui, sans-serif !important;
}


/* ─── Animations ─────────────────────────────────────── */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid var(--green);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.5s ease forwards;
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}


.btn-free-trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 137px;
    background: var(--orange);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.2s;
}

.btn-free-trial:hover {
    background: #D95610;
}


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: calc(100vh - 100px);
    background: linear-gradient(108deg, #0F2D1E 0%, #1A4A2E 50%, #1E5233 100%);
}

.hero__blob {
    pointer-events: none;
    position: absolute;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
}

.hero__inner {
    gap: 3rem;
    display: grid;
}

@media (min-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
    }
}


.hero__badge {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 15px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 11px;
    font-weight: 600;
    line-height: 17.6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.hero h1 {
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 18px;
}

.hero h1 span {
    font-weight: 800;
    color: #5DDE96;
}

.hero__desc {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    margin-bottom: 32px;
    text-align: left;
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero__ctas {
        flex-direction: row;
        align-items: center;
    }
}

.btn-primary-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 1.5rem;
    min-width: 200px;
    background: #E8522A;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-primary-orange:hover {
    background: var(--orange-hover);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero__note {
    color: rgba(255, 255, 255, 0.40);
    font-size: 12px;
    margin-top: 20px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
}

/* Sample scorecard widget */
.hero__card-wrap {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero__card-wrap {
        justify-content: flex-end;
    }
}

.hero__card {
    position: relative;
    width: 100%;
    max-width: 28rem;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    padding: 1.5rem;
    padding-top: 1.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* SAMPLE ribbon */
.hero__card-ribbon {
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 80px;
    width: 80px;
    overflow: hidden;
    z-index: 10;
}

.hero__card-ribbon__inner {
    position: absolute;
    right: -42px;
    top: 14px;
    width: 140px;
    transform: rotate(45deg);
    background: var(--orange);
    padding: 6px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}

.hero__card-header {
    position: relative;
    z-index: 0;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding-right: 2.5rem;
}

.hero__card-header p:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
}

.hero__card-header p:last-child {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.risk-badge {
    flex-shrink: 0;
    border-radius: 9999px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.risk-badge--high {
    background: var(--risk-high-bg);
    color: var(--risk-high);
}

.risk-badge--medium {
    background: var(--risk-medium-bg);
    color: var(--risk-medium);
}

.risk-badge--low {
    background: var(--risk-low-bg);
    color: var(--risk-low);
}

.hero__card-score-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero__mini-gauge {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.hero__mini-gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hero__mini-gauge__label {
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__mini-gauge__num {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-900);
}

.hero__mini-gauge__sub {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.hero__card-score-meta p:first-child {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    text-align: left;
}

.hero__card-score-meta p:last-child {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 0.375rem;
    text-align: left;
}

.hero__card-risks p {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.hero__card-risk-item {
    margin-bottom: 1rem;
}

.hero__card-risk-item:last-child {
    margin-bottom: 0;
}

.hero__card-risk-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.375rem;
}

.hero__card-risk-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
}

.risk-tag {
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.risk-tag--high {
    color: var(--risk-high);
}

.risk-tag--medium {
    color: #D97706;
}

.hero__risk-bar {
    height: 8px;
    overflow: hidden;
    border-radius: 9999px;
    background: var(--gray-100);
}

.hero__risk-bar-fill {
    height: 100%;
    border-radius: 9999px;
}

.bar-fill--red {
    background: #EF4444;
}

.bar-fill--amber {
    background: #F59E0B;
}

.hero__card-locked {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}

.hero__card-locked span {
    font-size: 1.125rem;
    line-height: 1;
}

.hero__card-locked p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.hero__card-locked strong {
    color: var(--orange);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   WHAT YOU GET
   ═══════════════════════════════════════════════════════ */
.what-you-get {
    position: relative;
    background: #F7FAF8;
    padding: 100px 0px;
}

@media (min-width: 640px) {
    .what-you-get {
        padding: 5rem 1.5rem;
    }
}

.what-you-get__header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2D7A4F;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 17.6px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-kicker__line {
    height: 2px;
    width: 18px;
    min-width: 18px;
    background: #2D7A4F;
}

.what-you-get__title {
    margin-top: 1rem;
    font-size: clamp(1.75rem, 5vw, 2.625rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.05rem;
    color: var(--gray-900);
}

.what-you-get__title span {
    color: #2D7A4F;
    font-weight: 900;
    display: block;
}

.what-you-get__subtitle {
    margin-top: 1.25rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.wyg-grid {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(243, 244, 246, 0.9);
    background: #fff;
    display: grid;
    gap: 1px;
    grid-template-columns: 1fr;
    box-shadow: 0 8px 48px 0 rgba(26, 92, 54, 0.07);
}

@media (min-width: 768px) {
    .wyg-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .wyg-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wyg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border-right: 1px solid #E4EDE8;
    padding: 2rem 1.5rem;
}

.wyg-grid .wyg-card:last-child {
    border-right: 0px;
}

@media (min-width: 640px) {
    .wyg-card {
        padding: 2.25rem 1.75rem;
        padding-bottom: 100px;
    }
}

.wyg-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.wyg-card__num {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-200);
    user-select: none;
}

.wyg-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: #F0F9F4;
    color: var(--green);
    flex-shrink: 0;
}

.wyg-card__icon-wrap svg {
    width: 20px;
    height: 20px;
}

.wyg-card__badge {
    display: inline-block;
    border-radius: 9999px;
    background: var(--green-light);
    padding: 2px 10px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
}

.wyg-card__title {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01rem;
    color: var(--gray-900);
}

.wyg-card__desc {
    margin-top: 0.5rem;
    font-size: 0.84375rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════
   BLIND SPOT
   ═══════════════════════════════════════════════════════ */
.blind-spot {
    background: #F7FAF8;
    padding: 80px 0px;
}

.blind-spot__header {
    margin-bottom: 3.5rem;
    max-width: 48rem;
}

.blind-spot__kicker {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2E7D5F;
}

.blind-spot h2 {
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    line-height: 1.2;
    letter-spacing: -0.03rem;
    color: #1A1A1A;
    margin-top: 1.25rem;
}

.blind-spot__intro {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin-top: 0.75rem;
    max-width: 48rem;
}

.blind-spot__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .blind-spot__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blind-spot-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blind-spot-card__num {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.05em;
}

.blind-spot-card__quote {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blind-spot-card__quote span {
    color: var(--risk-high);
    font-weight: 700;
}

.blind-spot-card__truth {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #666;
}

.blind-spot__callout {
    border-radius: 1rem;
    background: #1B332A;
    padding: 2rem 2.5rem;
}

.blind-spot__callout p {
    font-style: italic;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

.blind-spot__callout .accent {
    color: var(--mint);
}

/* ═══════════════════════════════════════════════════════
   SAMPLE REPORT PREVIEW
   ═══════════════════════════════════════════════════════ */
.sample-report {
    background: #F7FAF8;
    padding: 80px 0px;
}

.sample-report h2 {
    color: #1A1A1A;
    text-align: center;
    font-family: "Public Sans";
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: 54.4px;
    letter-spacing: -0.4px;
    margin-top: 24px;
}

.sample-report__desc {
    margin-top: 20px;
    color: #666;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.sample-card {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    margin-top: 32px;
}

.sample-card img {
    width: 100%;
}

.sample-blur-cta {
    z-index: 10;
    display: flex;
    justify-content: center;
}

.sample-blur-wrap {
    position: absolute;
    bottom: 100px;
    right: 0;
    left: 0;
}

.btn-unlock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    height: 39px;
    width: 232px;
    max-width: 100%;
    background: #1A3C2E;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.btn-unlock:hover {
    background: #152f26;
}


/* ═══════════════════════════════════════════════════════
   LEAD CAPTURE FORM
   ═══════════════════════════════════════════════════════ */
.lead-form-section {
    padding: 80px 0px;
}

.lead-form__grid {
    display: grid;
    align-items: start;
    gap: 3.5rem;
}

@media (min-width: 768px) {
    .lead-form__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.lead-form__kicker {
    color: #2D7A4F;
    font-size: 11px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lead-form__title {
    margin-top: 16px;
    color: #1A1A1A;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.7px;
}

.lead-form__title span {
    font-weight: 800;
    color: #2D7A4F;
}


.lead-form__desc {
    color: #666;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.lead-form__features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead-form__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lead-form__feature-check {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--green-light);
}

.lead-form__feature-check svg {
    width: 12px;
    height: 12px;
    color: var(--green);
}

.lead-form__feature span {
    font-size: 14px;
    line-height: 22px;
    color: var(--gray-600);
}

.cookies-text-form {
    color: #BBB;
    font-size: 12px;
    margin-bottom: 0px;
    margin-top: 16px;
    text-align: center;
}

.cookies-text-form a {
    color: #2D7A4F;
}

/* Form card */
.form-card {
    border-radius: 16px;
    border: 1px solid #EFEFEF;
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.07);
    padding: 35px;
}


.form-card__title {
    color: #1A1A1A;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 3px;
}

.form-card__subtitle {
    color: #AAA;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

#labour-law-form {
    margin-top: 25px;
}

#labour-law-form .floating-form-input,
#labour-law-form .floating-form-control select {
    padding: 12px 15px;
    font-size: 14px;
    color: #1A1A1A;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
    background: #FFF;
}

#labour-law-form .floating-form-label {
    font-size: 14px;
    background: #fff;
}

#labour-law-form .floating-form-control {
    margin-bottom: 28px;
}

#labour-law-form .floating-form-input-group-text {
    font-size: 14px;
    padding: 12px;
    border: 1px solid #E8E8E8;
    border-right: 0px;
    border-radius: 8px 0px 0px 8px;
}

#labour-law-form .floating-form-group-control {
    border-radius: 0px 8px 8px 0px !important;
}

#labour-law-form .floating-form-group-control .floating-form-input {
    border-radius: 0 4px 4px 0 !important;
}

#labour-law-form .input-btn-orange-submit {
    padding: 15px 24px;
    font-size: 15px;
    font-family: 'Public Sans';
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   PLAYBOOK SECTION
   ═══════════════════════════════════════════════════════ */
.playbook-section {
    background: #1A3C2E;
    padding: 6rem 1.5rem 5rem;
}

.playbook__grid {
    display: grid;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .playbook__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.playbook__kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.playbook__kicker-line {
    height: 1px;
    width: 40px;
    background: rgba(105, 240, 174, 0.7);
}

.playbook__kicker-text {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #69F0AE;
}

.playbook h2 {
    margin-top: 1.5rem;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.playbook h2 .white {
    color: #fff;
}

.playbook h2 .mint {
    color: #69F0AE;
}

.playbook__desc {
    margin-top: 1.5rem;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #A5B1AB;
}

.playbook__features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.playbook__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.playbook__feature-arrow {
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    color: #69F0AE;
}

.playbook__feature span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #A5B1AB;
}

.playbook__cta-wrap {
    margin-top: 3rem;
}

.btn-playbook {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #69F0AE;
    border-radius: 9999px;
    background: rgba(15, 31, 25, 0.8);
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    transition: background 0.2s;
}

.btn-playbook:hover {
    background: rgba(15, 31, 25, 1);
}

.playbook__cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #A5B1AB;
}

/* Playbook card */
.playbook__card-wrap {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .playbook__card-wrap {
        justify-content: flex-end;
    }
}

.playbook__card {
    width: 100%;
    min-width: 0;
    max-width: 420px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    background: linear-gradient(152deg, #152920 0%, #0f1f19 48%, #122a1f 100%);
    box-shadow: 0 28px 64px -16px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.playbook__card-edition {
    display: block;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(93, 222, 150, 0.5);
}

.playbook__card-title {
    display: block;
    margin-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #5DDE96;
    line-height: 1.2;
}

.playbook__card-sub {
    font-size: 0.875rem;
    color: #A5B1AB;
    margin-top: 0.5rem;
}

.playbook__card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.75rem 0;
}

.playbook__card-lines {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.playbook__card-line {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.playbook__card-line-dash {
    margin-top: 8px;
    height: 1px;
    width: 12px;
    flex-shrink: 0;
    background: rgba(105, 240, 174, 0.5);
}

.playbook__card-line span {
    font-size: 0.9375rem;
    line-height: 1.35;
    color: #A5B1AB;
}

.playbook__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.playbook__card-footer-label {
    font-size: 0.5625rem;
    font-weight: 400;
    color: #5DDE96;
}

.playbook__card-footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #5DDE96;
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 0.5625rem;
    color: #5DDE96;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
    background: #1A3C2E;
    padding: 2rem 1.5rem 6rem;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.final-cta h2 .accent {
    color: var(--mint);
}

.final-cta__desc {
    margin: 1.5rem auto 0;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.45;
    color: #B0B0B0;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: #E8522A;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: background 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.final-cta__btn:hover {
    background: var(--orange-hover);
}

.final-cta__note {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.final-cta__note .or {
    color: rgba(93, 222, 150, 0.5);
}

.final-cta__note .speak {
    font-weight: 500;
    color: var(--mint);
}

/* ═══════════════════════════════════════════════════════
   CLOSING FOOTER BANNER
   ═══════════════════════════════════════════════════════ */
.closing-banner {
    background: #E8522A;
    padding: 3rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .closing-banner {
        padding: 4rem 1.5rem;
    }
}

.closing-banner h2 {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.6;
    color: #fff;
}

.closing-banner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    background: #fff;
    color: #E8522A;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: background 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.closing-banner a:hover {
    background: #F9FAFB;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-cta {
    background: var(--green);
    padding: 3rem 1.5rem;
}

.footer-cta__inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-cta__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-cta__text p:first-child {
    font-weight: 600;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #fff;
}

.footer-cta__text p:last-child {
    font-size: 0.875rem;
    color: #BBF7D0;
    margin-top: 0.25rem;
}

.footer-cta__btn {
    background: #fff;
    color: var(--green);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-cta__btn:hover {
    background: var(--gray-100);
}

.footer-main {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-links__col h4 {
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links__col a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-links__col a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .hr {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

.footer-brand .one {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--orange);
}

.footer-brand .copy {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-left: 0.5rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════
   ASSESSMENT PAGE
   ═══════════════════════════════════════════════════════ */
.assessment-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg);
}

.assessment-topbar {
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
    z-index: 50;
}

.assessment-topbar__inner {
    max-width: 40rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.assessment-topbar__logo img {
    height: 32px;
    width: auto;
}

.assessment-topbar__counter {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.progress-bar {
    height: 4px;
    background: var(--gray-100);
}

.progress-bar__fill {
    height: 100%;
    background: var(--green);
    transition: width 0.5s ease;
}

.assessment-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.5rem;
}

.assessment-body.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.assessment-body.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.assessment-content {
    max-width: 40rem;
    margin: 0 auto;
    width: 100%;
}

.question-num-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.question-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: var(--green);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-num-line {
    height: 1px;
    flex: 1;
    background: var(--gray-200);
}

.question-title {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.question-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

/* Card Select */
.card-select {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}

.card-option:hover {
    border-color: var(--green);
    background: var(--green-light);
}

.card-option.selected {
    border-color: var(--green);
    background: var(--green-light);
}

.card-option__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.card-option__body {
    flex: 1;
    min-width: 0;
}

.card-option__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.card-option__desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.card-option__check {
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    flex-shrink: 0;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.card-option.selected .card-option__check {
    background: var(--green);
    border-color: var(--green);
}

.card-option.selected .card-option__check::after {
    content: '';
    display: block;
    width: 5px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

/* Slider Question */
.slider-wrap {
    margin-top: 0.5rem;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.slider-track {
    position: relative;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.range-input {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray-200);
    border-radius: 9999px;
    outline: none;
    cursor: pointer;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: var(--green);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(27, 90, 59, 0.4);
    transition: transform 0.15s;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: var(--green);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(27, 90, 59, 0.4);
}

.slider-value-display {
    display: flex;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.slider-hint {
    background: #EFF8F3;
    border: 1px solid rgba(27, 90, 59, 0.15);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    color: #1B5A3B;
    line-height: 1.5;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--gray-200);
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
}

.checklist-item:hover {
    border-color: var(--green);
}

.checklist-item.checked {
    border-color: var(--green);
    background: var(--green-light);
}

.checklist-item__box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.checklist-item.checked .checklist-item__box {
    background: var(--green);
    border-color: var(--green);
}

.checklist-item.checked .checklist-item__box::after {
    content: '';
    display: block;
    width: 5px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.checklist-item__label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-800);
}

.checklist-feedback {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    background: #FEF2F2;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    color: var(--risk-high);
}

/* Navigation */
.question-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: color 0.2s;
}

.btn-back:hover:not(:disabled) {
    color: var(--gray-600);
}

.btn-back:disabled {
    opacity: 0;
    pointer-events: none;
}

.btn-next {
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    transition: background 0.2s, opacity 0.2s;
}

.btn-next:hover:not(:disabled) {
    background: var(--green-dark);
}

.btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Encouragement bar */
.assessment-footer {
    background: #fff;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.assessment-footer p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Loading state */
.loading-screen {
    display: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.loading-screen__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-screen p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════
   RESULTS PAGE
   ═══════════════════════════════════════════════════════ */
#results-page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 9999;
    overflow-y: auto;
    animation: slideUp 0.35s ease;
}

.assessment-page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    animation: slideUp 0.35s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0.9;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#assessment-page,
#results-page,
#assessment-loading,
#results-loading {
    display: none;
}

.results-topbar {
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 50;
}

.results-topbar__inner {
    max-width: 56rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-topbar__logo img {
    height: 32px;
    width: auto;
}

.results-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-retake {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color 0.2s;
}

.btn-retake:hover {
    color: var(--gray-700);
}

.btn-download {
    background: var(--green);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: background 0.2s;
}

.btn-download:hover {
    background: var(--green-dark);
}

.btn-download:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.results-body {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Score card */
.score-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.score-card__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .score-card__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.score-card__left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .score-card__left {
        align-items: flex-start;
    }
}

.score-card__name {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.score-card__meta {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

/* SVG Gauge */
.gauge-wrap {
    position: relative;
    width: 13rem;
    height: 13rem;
}

.gauge-wrap svg {
    width: 100%;
    height: 100%;
}

.gauge-persona-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: 1px solid;
}

.gauge-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    text-align: center;
}

.score-card__right h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.score-card__right p.persona-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.exposure-box {
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid;
}

.exposure-box p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.exposure-box strong {
    font-weight: 700;
}

/* Risk area bars */
.risk-section {
    margin-bottom: 2rem;
}

.results-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.risk-bar-card {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-100);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.risk-bar-card__rank {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    flex-shrink: 0;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-bar-card__body {
    flex: 1;
    min-width: 0;
}

.risk-bar-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.risk-bar-card__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.risk-bar-card__score {
    font-size: 0.875rem;
    font-weight: 700;
}

.risk-bar-card__bar {
    height: 8px;
    border-radius: 9999px;
    overflow: hidden;
    background: var(--gray-100);
}

.risk-bar-card__fill {
    height: 100%;
    border-radius: 9999px;
    width: 0;
    transition: width 1s ease;
}

.risk-bar-card__level {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
}

.level--high {
    color: var(--risk-high);
    background: var(--risk-high-bg);
}

.level--medium {
    color: var(--risk-medium);
    background: var(--risk-medium-bg);
}

.level--low {
    color: var(--risk-low);
    background: var(--risk-low-bg);
}

.bar--high {
    background: var(--risk-high);
}

.bar--medium {
    background: var(--risk-medium);
}

.bar--low {
    background: var(--risk-low);
}

/* Risk blocks */
.risk-blocks-section {
    margin-bottom: 2rem;
}

.risk-block-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.risk-block__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.risk-block__icon {
    width: 40px;
    height: 40px;
    border-radius: 0.625rem;
    flex-shrink: 0;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.risk-block__rank-title {
    flex: 1;
}

.risk-block__rank {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
}

.risk-block__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 1px;
}

.risk-block__rows {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.risk-block__row {
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
}

.risk-block__row--noticed {
    background: var(--risk-high-bg);
}

.risk-block__row--matters {
    background: var(--risk-medium-bg);
}

.risk-block__row--todo {
    background: var(--risk-low-bg);
}

.risk-block__row-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.row-label--noticed {
    color: var(--risk-high);
}

.row-label--matters {
    color: var(--risk-medium);
}

.row-label--todo {
    color: var(--risk-low);
}

.risk-block__row-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Action plan */
.action-plan-section {
    margin-bottom: 2.5rem;
}

.action-plan__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.action-plan__subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.action-plan__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .action-plan__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-plan__col {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--gray-100);
}

.action-plan__col-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
}

.action-plan__col-badge {
    font-size: 1.125rem;
}

.action-plan__col-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-800);
}

.action-plan__col-items {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.action-plan__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.action-plan__item::before {
    content: '•';
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--green);
    font-weight: 700;
}

/* Results CTA */
.results-cta {
    background: var(--green);
    border-radius: 1rem;
    padding: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.results-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.results-cta p {
    color: #BBF7D0;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.results-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
}

.results-cta__btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.results-cta__note {
    font-size: 0.75rem;
    color: #86EFAC;
    margin-top: 1rem;
}

/* ─── Print styles ───────────────────────────────────── */
@media print {
    .results-topbar {
        position: static;
    }

    .btn-retake,
    .btn-download {
        display: none;
    }

    .score-card,
    .risk-block-card,
    .action-plan__col {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}