/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen-reader only utility */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Honeypot anti-spam field (hidden offscreen) */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-secondary: #f9fafb;
    --color-border: #e5e7eb;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --max-width: 1600px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: radial-gradient(1200px 600px at 50% -10%, rgba(59,130,246,.15), transparent 60%), #F6F8FC;
    line-height: 1.6;
    font-size: 15px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-md) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.header-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: #475569;
    font-weight: 700;
    font-size: 0.9rem;
}

.header-brand__by {
    font-weight: 600;
    opacity: 0.75;
}

.header-brand__link,
.header-brand__text {
    color: #0f172a;
    text-decoration: none;
}

.header-brand__link:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    color: var(--color-primary-hover);
}

.footer-brand {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.footer-brand__domain {
    margin-left: 8px;
    font-weight: 700;
    font-size: 0.9em;
    color: #64748b;
}

.footer-brand:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.main {
    min-height: calc(100vh - 200px);
    padding: var(--spacing-xl) 0;
}

.hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.language-switch {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.language-switch-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.language-switch-link:hover {
    color: var(--color-primary);
    border-color: rgba(37, 99, 235, 0.25);
}

/* Language picker landing */
.language-picker {
    min-height: calc(100vh - 240px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.language-picker:before {
    content: '';
    position: absolute;
    inset: -80px -40px;
    pointer-events: none;
    background:
        radial-gradient(520px 280px at 20% 20%, rgba(59, 130, 246, 0.18), transparent 60%),
        radial-gradient(520px 280px at 80% 40%, rgba(99, 102, 241, 0.14), transparent 62%),
        radial-gradient(520px 280px at 50% 85%, rgba(16, 185, 129, 0.08), transparent 60%);
    filter: blur(0px);
}

.language-shell {
    width: 100%;
    max-width: 920px;
    padding: clamp(22px, 4vw, 44px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: #1d4ed8;
    font-weight: 800;
    font-size: 0.8125rem;
    margin: 0 auto var(--spacing-md);
}

.language-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: var(--spacing-sm);
}

.language-subtitle {
    color: #64748b;
    max-width: 560px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.0rem;
}

.language-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    width: 100%;
    max-width: 820px;
}

@media (min-width: 768px) {
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

.language-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 92px;
}

.language-card:before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(400px 220px at 50% -20%, rgba(59, 130, 246, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.language-card__left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.language-card__meta {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.language-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.language-card:hover:before {
    opacity: 1;
}

.language-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 4px;
}

.language-flag {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(37, 99, 235, 0.10));
    color: var(--color-primary);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

.language-flag--bg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(59, 130, 246, 0.10));
    color: #0f172a;
}

.language-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.language-hint {
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 600;
}

.language-cta {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    flex: 0 0 auto;
}

.language-card:hover .language-cta {
    background: rgba(37, 99, 235, 0.16);
    transform: translateX(2px);
}

@media (max-width: 420px) {
    .language-card {
        padding: 14px 14px;
        min-height: 86px;
    }

    .language-cta {
        width: 40px;
        height: 40px;
    }
}

.language-footnote {
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: #64748b;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.hero-cta {
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

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

/* Calendly floating CTA (used on wizard/results/receipt pages) */
.calendly-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.2px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(135deg, #5b5af7 0%, #6d5ef8 45%, #7c5cff 100%);
    box-shadow:
        0 20px 55px rgba(91, 90, 247, 0.45),
        0 2px 10px rgba(15, 23, 42, 0.14);
    position: fixed;
}

.calendly-fab::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    background: radial-gradient(60% 60% at 50% 70%, rgba(91, 90, 247, 0.55), transparent 70%);
    filter: blur(12px);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.calendly-fab:hover {
    transform: translateY(-1px);
    box-shadow:
        0 24px 65px rgba(91, 90, 247, 0.52),
        0 2px 12px rgba(15, 23, 42, 0.16);
}

.calendly-fab:active {
    transform: translateY(0);
}

.calendly-fab:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.45);
    outline-offset: 4px;
}

.calendly-fab__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.calendly-fab__text {
    white-space: nowrap;
}

@media (max-width: 520px) {
    .calendly-fab {
        left: 14px;
        bottom: 14px;
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

.features {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.feature-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    line-height: 48px;
    margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--color-text-light);
}

.cta-section {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    margin-top: var(--spacing-xl);
}

.cta-section h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.footer {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Category Selection Page */
.category-selection {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.category-selection h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

/* Results & Wizard Container Styles */
.wizard,
.results-preview {
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .results-preview {
        padding: var(--spacing-xl) 0;
    }
}

.wizard h3,
.results-preview h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Category Selection Grid */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

.category-option {
    position: relative;
}

.category-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    visibility: hidden;
}

.category-label {
    display: block;
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.category-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), #667eea);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-label:hover {
    border-color: var(--color-primary);
    background-color: #fafbfc;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.category-checkbox:checked + .category-label {
    border-color: var(--color-primary) !important;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2), 0 2px 6px rgba(37, 99, 235, 0.15) !important;
    transform: translateY(-2px);
}

.category-checkbox:checked + .category-label::before {
    transform: scaleY(1);
}

.category-checkbox:checked + .category-label::after {
    content: "✓";
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    animation: checkmark-pop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmark-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.category-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    padding-right: var(--spacing-xl);
}

.category-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Wizard */
.wizard {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.wizard-header {
    margin-bottom: var(--spacing-xl);
}

/* Wizard hero (aligned with results hero styling) */
.wizard-hero {
    background:
        radial-gradient(700px circle at 18% 18%, rgba(255, 255, 255, 0.16) 0%, transparent 58%),
        radial-gradient(900px circle at 90% 20%, rgba(59, 130, 246, 0.32) 0%, transparent 62%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(30, 64, 175, 0.94) 55%, rgba(30, 58, 138, 0.97) 100%);
    color: white;
    border-radius: 18px;
    padding: var(--spacing-lg);
    box-shadow: 0 18px 46px rgba(37, 99, 235, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.wizard-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.06) 0,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 8px
        );
    opacity: 0.12;
    pointer-events: none;
}

.wizard-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 900px) {
    .wizard-hero-inner {
        grid-template-columns: 1.5fr 0.7fr;
    }
}

.wizard-hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    margin-bottom: var(--spacing-sm);
}

.wizard-category-title {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.4px;
    margin: 0 0 var(--spacing-xs);
}

@media (min-width: 768px) {
    .wizard-category-title {
        font-size: 1.5rem;
    }
}

.wizard-category-meta {
    margin: 0;
    font-size: 0.9375rem;
    opacity: 0.95;
    line-height: 1.5;
}

.wizard-hero-progress {
    background: rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wizard-progress-label {
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 6px;
}

.wizard-progress-value {
    font-weight: 800;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.progress-bar--hero {
    height: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.28);
    margin-left: calc(var(--spacing-md) * -1);
    margin-right: calc(var(--spacing-md) * -1);
    width: calc(100% + (var(--spacing-md) * 2));
}

.progress-bar--hero .progress {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.42));
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.18);
}

/* Wizard stepper (question checkpoints) */
.wizard-stepper {
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wizard-stepper__track {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.wizard-stepper__track::before,
.wizard-stepper__track::after {
    content: none;
}

.wizard-stepper__step {
    position: relative;
    z-index: 1;
}

.wizard-stepper__dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    font-size: 0.75rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
}

.wizard-stepper__step.is-done .wizard-stepper__dot {
    background: rgba(34, 197, 94, 0.24);
    border-color: rgba(34, 197, 94, 0.45);
    color: #dcfce7;
}

.wizard-stepper__step.is-active .wizard-stepper__dot {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.3);
}

.wizard-stepper__step:not(.is-done):not(.is-active) .wizard-stepper__dot {
    color: transparent;
}

.wizard-stepper--dense .wizard-stepper__track {
    gap: 8px;
}

.wizard-stepper--dense .wizard-stepper__dot {
    width: 18px;
    height: 18px;
    font-size: 0.6875rem;
}

/* Legacy wizard header styles (kept for safety) */
.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.category-progress {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
}

.overall-progress-section {
    margin-top: var(--spacing-md);
}

.overall-progress-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #667eea);
    transition: width 0.4s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.wizard-body {
    padding: var(--spacing-lg) 0;
}

.question-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.question-help {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-bg-secondary);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
}

/* Answer Options - Modern Card Style */
.answer-options {
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.answer-option {
    position: relative;
}

.answer-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    visibility: hidden;
}

.answer-label {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: var(--color-text);
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.answer-label:hover {
    border-color: var(--color-primary);
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.answer-radio:checked + .answer-label {
    border-color: var(--color-primary) !important;
    border-width: 2px !important;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25) !important;
    font-weight: 500;
}

.answer-radio:checked + .answer-label::after {
    content: "✓";
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Form Actions */
.wizard-footer {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid #e5e7eb;
}

.wizard-footer .btn {
    min-width: 200px;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
}

.wizard-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.wizard-footer .btn:active {
    transform: translateY(0);
}

/* Category Form Actions */
.category-form .form-actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.category-form .btn {
    min-width: 250px;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
}

.category-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.category-form .btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .wizard {
        padding: var(--spacing-md);
        border-radius: 8px;
    }
    
    .category-header {
        padding: var(--spacing-md);
    }
    
    .question-text {
        font-size: 1.125rem;
    }
    
    .answer-label {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Results Preview */
.results-preview {
    /* Center the full assessment page content (avoid legacy mobile-only constraint) */
    max-width: 980px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .results-preview {
        max-width: 1040px;
        padding: var(--spacing-xl) 0;
    }
}

@media (min-width: 1280px) {
    .results-preview {
        max-width: 1120px;
    }
}

.results-preview h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.results-preview h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

/* Score Card */
.score-card {
    background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
    color: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.overall-score {
    margin-bottom: var(--spacing-md);
}

.score-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.score-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.score-description {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Category Breakdown */
.category-breakdown {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.category-item {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: 6px;
    border: 1px solid var(--color-border);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.category-title {
    font-weight: 600;
    color: var(--color-text);
}

.category-score {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.progress-bar-small {
    width: 100%;
    height: 8px;
    background-color: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-small .progress {
    height: 100%;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

/* Top Risks */
.top-risks {
    margin-bottom: var(--spacing-lg);
}

.risks-note {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.risks-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.risk-item {
    display: flex;
    background-color: var(--color-bg-secondary);
    border-left: 4px solid var(--color-primary);
    padding: var(--spacing-md);
    border-radius: 6px;
    align-items: flex-start;
}

.risk-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.risk-content {
    flex: 1;
}

.risk-name {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.risk-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.risk-score,
.risk-weight {
    display: inline-block;
}

/* Results CTA */
.results-cta {
    background-color: #eff6ff;
    border: 2px solid var(--color-primary);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.cta-text {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

/* Pricing Breakdown */
.pricing-breakdown h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    text-align: center;
}

.pricing-subtitle {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}

.pricing-details {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

/* Category Selection */
.categories-selection {
    margin-bottom: var(--spacing-lg);
}

.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-border);
}

.selection-header strong {
    font-size: 1.1rem;
    color: var(--color-text);
}

.select-all-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.select-all-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.select-all-toggle label {
    cursor: pointer;
    user-select: none;
}

/* Category Purchase Grid */
.category-purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.category-purchase-card {
    display: flex;
    gap: var(--spacing-sm);
    background-color: #f9fafb;
    border: 3px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
}

.category-purchase-card.selected {
    background-color: #eff6ff;
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.category-purchase-card.deselected {
    background-color: #f9fafb;
    border-color: #e5e7eb;
    opacity: 0.6;
}

.category-purchase-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.category-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    accent-color: var(--color-primary);
}

.card-content {
    flex: 1;
    cursor: pointer;
    user-select: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.card-category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.card-score-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 65px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.score-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
}

.score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border);
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.card-status {
    font-size: 0.85rem;
    font-weight: 500;
    color: #059669;
}

/* Pricing Summary */
.pricing-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.summary-row.total-row {
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: var(--spacing-sm);
}

.summary-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.summary-total {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

/* Pricing Notes */
.pricing-notes {
    text-align: center;
}

.discount-note {
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    padding: var(--spacing-sm);
    background-color: #d1fae5;
    border-radius: 6px;
}

.selection-note {
    color: #dc2626;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    padding: var(--spacing-sm);
    background-color: #fee2e2;
    border-radius: 6px;
}

/* Purchase Button */
.btn-large {
    font-size: 1.125rem;
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.btn-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #9ca3af !important;
}

/* Old styles - keeping for backwards compatibility */
.categories-purchased {
    margin-bottom: var(--spacing-md);
}

.categories-purchased strong {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-border);
}

.price-list li:last-child {
    border-bottom: none;
}

.results-footer {
    text-align: center;
}

.btn-secondary {
    background-color: var(--color-border);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

/* ============================================
   NEW UX REDESIGN STYLES 
   ============================================ */

/* 1. Verdict Hero - Glass Premium Design */
.verdict-hero {
    background:
        radial-gradient(900px circle at 18% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
        radial-gradient(1000px circle at 85% 20%, rgba(59, 130, 246, 0.35) 0%, transparent 60%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.95) 55%, rgba(30, 58, 138, 0.98) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: white;
    padding: var(--spacing-xl);
    border-radius: 24px;
    text-align: left;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 768px) {
    .verdict-hero {
        padding: calc(var(--spacing-xl) * 1.35);
    }
}

.verdict-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.55) 0%,
        rgba(15, 23, 42, 0.26) 55%,
        rgba(15, 23, 42, 0.08) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.verdict-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.06) 0,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 7px
        );
    opacity: 0.14;
    pointer-events: none;
    z-index: 1;
}

.verdict-hero[data-risk='high'] {
    --risk-color: #fb7185;
    --ring-color: #fb7185;
}

.verdict-hero[data-risk='medium'] {
    --risk-color: #fbbf24;
    --ring-color: #fbbf24;
}

.verdict-hero[data-risk='low'] {
    --risk-color: #34d399;
    --ring-color: #34d399;
}

.verdict-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 900px) {
    .verdict-hero-inner {
        grid-template-columns: 1.5fr 0.5fr;
    }
}

.verdict-hero-copy {
    max-width: 720px;
}

.verdict-hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.verdict-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: white;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 14px rgba(15, 23, 42, 0.55);
}

@media (min-width: 768px) {
    .verdict-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 520px) {
    .verdict-score-ring {
        width: 140px;
        height: 140px;
    }

    .verdict-score-number {
        font-size: 3.75rem;
    }
}

.verdict-score-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.verdict-score-ring {
    width: 156px;
    height: 156px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: conic-gradient(
        var(--ring-color, rgba(255, 255, 255, 0.9)) calc(var(--score, 0) * 1%),
        rgba(255, 255, 255, 0.18) 0
    );
    box-shadow:
        0 18px 60px rgba(15, 23, 42, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.verdict-score-ring::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background: rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.verdict-score-ring > * {
    position: relative;
    z-index: 1;
}

.verdict-score-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.45);
}

.verdict-score-help {
    margin-top: 2px;
    font-size: 0.9rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    max-width: 28ch;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.45);
}

/* Results nav */
.results-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin: 0 auto var(--spacing-xl);
}

.results-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #334155;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
}

.results-nav-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--color-primary);
}

.results-nav-link:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: all 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: rgba(37, 99, 235, 0.35);
    color: white;
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.4);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

.verdict-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.verdict-score-number {
    font-size: 4.25rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.verdict-score-outof {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
}

.verdict-risk-level {
    font-size: 0.9375rem;
    font-weight: 800;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.45);
}

.verdict-risk-level:before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--risk-color, rgba(255, 255, 255, 0.9));
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.verdict-description {
    font-size: 1.05rem;
    line-height: 1.78;
    max-width: 60ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    text-shadow: 0 2px 14px rgba(15, 23, 42, 0.55);
}

.verdict-description strong {
    color: rgba(255, 255, 255, 0.98);
}

.verdict-hero .verdict-hero-trust {
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.5);
}

/* Hero CTA styles (scoped so other pages aren't affected) */
.verdict-hero .verdict-hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.verdict-hero .verdict-hero-cta .btn.btn-primary {
    box-shadow:
        0 16px 36px rgba(15, 23, 42, 0.35),
        0 10px 22px rgba(37, 99, 235, 0.28);
}

.verdict-hero .verdict-hero-cta .btn.btn-primary:hover {
    box-shadow:
        0 20px 44px rgba(15, 23, 42, 0.38),
        0 12px 26px rgba(37, 99, 235, 0.34);
}

.verdict-hero .verdict-hero-cta .btn.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.verdict-hero .verdict-hero-cta .btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
}

.verdict-hero .verdict-hero-cta .btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.35);
    outline-offset: 3px;
}

@media (max-width: 520px) {
    .verdict-hero .verdict-hero-cta {
        gap: 8px;
        margin-top: 12px;
    }
}

.verdict-risk-high {
    color: #fee2e2 !important;
}

.verdict-risk-medium {
    color: #fef3c7 !important;
}

.verdict-risk-low {
    color: #d1fae5 !important;
}

/* 2. Business Impact Section */
.business-impact-section {
    margin-bottom: var(--spacing-xl);
}

.section-heading--left {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-align: center;
    letter-spacing: -0.5px;
}

.collapsible-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.collapsible-section-toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 6px;
    border-radius: 14px;
}

.collapsible-section-toggle__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
    flex: 0 1 auto;
    min-width: 12ch;
}

.collapsible-section-toggle__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.collapsible-section-toggle:hover .collapsible-section-toggle__pill {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--color-primary);
}

.collapsible-toggle {
    appearance: none;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.collapsible-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--color-primary);
}

.collapsible-toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

.collapsible-toggle__label {
    color: inherit;
}

.collapsible-toggle__icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.16);
    position: relative;
    flex-shrink: 0;
}

.collapsible-toggle__icon:before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(15, 23, 42, 0.75);
    border-bottom: 2px solid rgba(15, 23, 42, 0.75);
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.collapsible-toggle.is-expanded .collapsible-toggle__icon:before,
.collapsible-toggle[aria-expanded="true"] .collapsible-toggle__icon:before,
.collapsible-section-toggle[aria-expanded="true"] .collapsible-toggle__icon:before {
    transform: rotate(-135deg);
}

.collapsible-content[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .collapsible-section-toggle__title {
        font-size: 1.55rem;
    }

    .collapsible-section-toggle__pill {
        padding: 9px 11px;
    }
}

.section-heading + p {
    text-align: center;
    color: #64748b;
    font-size: 1.0625rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

.impact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .impact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.impact-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.impact-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

/* Impact cards use the same header template as risk cards */
.impact-card .risk-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-icon-inline {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon-inline svg {
    width: 20px;
    height: 20px;
}

.impact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
}

.impact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: #475569;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.impact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* 3. Risk Cards Section - Product-like Design */
.risk-cards-section {
    margin-bottom: var(--spacing-xl);
}

.risk-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin: 0 auto var(--spacing-xl);
}

.risk-controls-group {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.risk-control-btn,
.risk-control-chip {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: #334155;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.risk-control-btn:hover,
.risk-control-chip:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
}

.risk-control-btn.is-active,
.risk-control-chip.is-active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.08));
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--color-primary);
}

.risk-control-btn:focus-visible,
.risk-control-chip:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

.risk-cards-section .risk-card {
    cursor: default;
}

.risk-card.is-hidden {
    display: none;
}

.risk-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 360px));
    justify-content: center;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .risk-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1200px) {
    .risk-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    }
}

.risk-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.risk-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.risk-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.risk-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    flex: 1;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.risk-level-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.risk-high {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
}

.risk-medium {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.risk-low {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.risk-card-consequence {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.risk-next-step {
    margin: 0 0 var(--spacing-md);
    padding: 10px 12px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 12px;
    color: #334155;
    font-size: 0.875rem;
    line-height: 1.5;
}

.risk-next-label {
    font-weight: 800;
    color: #1e293b;
    margin-right: 6px;
}

.risk-card-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.8125rem;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.risk-card-meta span {
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 6px;
    color: #475569;
    font-weight: 600;
}


/* 4. Priority Fixes Section - Soft Tinted Style */
.priority-fixes-section {
    margin-bottom: var(--spacing-xl);
}

.priority-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: var(--spacing-xl);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.priority-fixes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .priority-fixes-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1200px) {
    .priority-fixes-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.priority-fix-item {
    display: flex;
    gap: var(--spacing-lg);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
}

.priority-fix-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.priority-fix-item:before {
    display: none;
}

.priority-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.priority-content {
    flex: 1;
}

.priority-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.3px;
}

.priority-description {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.priority-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.8125rem;
    flex-wrap: wrap;
}

.priority-meta span {
    padding: 4px 10px;
    background: #f8fafc;
    border-radius: 6px;
    color: #64748b;
    font-weight: 600;
}

/* 5. Resolution Box */
/* ===== Resolution Box (Pricing Card Pattern) ===== */
.resolution-box {
    margin-bottom: var(--spacing-xl);
}

.next-step-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.94));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.10);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.next-step-panel:before {
    content: '';
    position: absolute;
    inset: -120px -140px;
    pointer-events: none;
    background:
        radial-gradient(620px 320px at 12% 18%, rgba(59, 130, 246, 0.20), transparent 62%),
        radial-gradient(560px 320px at 84% 26%, rgba(99, 102, 241, 0.16), transparent 60%),
        radial-gradient(560px 320px at 46% 108%, rgba(16, 185, 129, 0.10), transparent 62%);
}

.next-step-panel > * {
    position: relative;
    z-index: 1;
}

.next-step-panel__left {
    text-align: center;
    padding: 10px 10px 4px;
}

.next-step-panel__right {
    padding: 6px;
}

@media (min-width: 920px) {
    .next-step-panel {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 20px;
        padding: 26px;
        align-items: start;
    }

    .next-step-panel__left {
        text-align: left;
        padding: 12px 6px;
    }
}

/* Smooth scroll target spacing */
#client-details {
    scroll-margin-top: 88px;
}

/* ===== Business Impact Summary (matches card style) ===== */
.business-impact-lead {
    text-align: center;
    color: #64748b;
    max-width: 860px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.65;
}

.impact-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin: 0 auto var(--spacing-xl);
}

@media (min-width: 900px) {
    .impact-summary-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: var(--spacing-xl);
    }
}

.impact-card--summary {
    cursor: default;
}

.impact-card--cta {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
    border-color: rgba(37, 99, 235, 0.22);
}

/* Included areas pills */
.included-areas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.included-area-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: #334155;
    font-weight: 700;
    font-size: 0.875rem;
}

.resolution-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: calc(var(--spacing-xl) * 1.05) calc(var(--spacing-xl) * 1.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.10);
    position: relative;
    overflow: hidden;
}

.next-step-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.82);
    color: #1d4ed8;
    font-weight: 900;
    letter-spacing: -0.1px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.next-step-button:after {
    content: '↓';
    font-weight: 900;
    opacity: 0.8;
}

.next-step-button:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.next-step-button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

.resolution-steps {
    margin: 16px auto 0;
    max-width: 820px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 1;
}

.resolution-steps__title {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.2px;
    color: #0f172a;
}

.resolution-steps__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 10px;
    color: #0f172a;
    line-height: 1.65;
}

.resolution-steps__list li {
    counter-increment: step;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
}

.resolution-steps__list li:before {
    content: counter(step);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.next-step-panel__alt {
    margin: 14px 0 0;
    color: #64748b;
    font-weight: 650;
}

.next-step-panel__alt a {
    color: #1d4ed8;
    font-weight: 850;
    text-decoration: none;
}

.next-step-panel__alt a:hover {
    text-decoration: underline;
}

.next-step-form {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 70px rgba(15, 23, 42, 0.10);
}

.next-step-form__head {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.next-step-form__title {
    font-weight: 950;
    letter-spacing: -0.2px;
    color: #0f172a;
}

.next-step-form__subtitle {
    color: #64748b;
    font-weight: 650;
    font-size: 0.92rem;
}

@media (max-width: 640px) {
    .next-step-panel {
        border-radius: 22px;
        padding: 14px;
    }

    .next-step-form {
        padding: 14px;
        border-radius: 18px;
    }
}

.resolution-header:before {
    content: '';
    position: absolute;
    inset: -80px -60px;
    pointer-events: none;
    background:
        radial-gradient(520px 260px at 18% 20%, rgba(59, 130, 246, 0.16), transparent 60%),
        radial-gradient(520px 260px at 82% 35%, rgba(99, 102, 241, 0.12), transparent 62%),
        radial-gradient(520px 260px at 50% 95%, rgba(16, 185, 129, 0.08), transparent 60%);
}

.resolution-header > * {
    position: relative;
    z-index: 1;
}

.resolution-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: #1d4ed8;
    font-weight: 900;
    font-size: 0.8125rem;
    letter-spacing: 0.4px;
    margin: 0 auto var(--spacing-md);
}

.resolution-pricing-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: var(--spacing-md) auto 0;
    max-width: 760px;
}

.pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: #334155;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.pricing-pill strong {
    color: #0f172a;
    font-weight: 900;
}

.resolution-pricing-note {
    margin: var(--spacing-sm) auto 0;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 760px;
}

.resolution-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

@media (max-width: 640px) {
    .resolution-header {
        padding: calc(var(--spacing-lg) * 1.05) var(--spacing-lg);
        border-radius: 20px;
    }
}

.compare-toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #334155;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
}

.compare-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--color-primary);
}

.compare-toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

.compare-panel {
    margin-top: var(--spacing-xl);
}

.compare-panel-inner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.compare-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.compare-subtitle {
    color: #64748b;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.compare-table th,
.compare-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.9375rem;
}

.compare-table th {
    color: #0f172a;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.report-includes {
    margin-top: var(--spacing-xs);
}

/* Center the sticky summary panel so it doesn't visually pull the page */
.purchase-summary {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Accessibility focus */
.report-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 4px;
}

.report-select-btn:focus-visible,
.btn-purchase-primary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 4px;
}

.resolution-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.resolution-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Report Cards Grid */
.report-cards-toolbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin: 0 0 var(--spacing-md);
}

.report-cards-toolbar__hint {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
}

.report-cards-toolbar__toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
}

.report-cards-toolbar__toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--color-primary);
}

.report-cards-toolbar__toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

.report-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
    align-items: stretch;
}

@media (min-width: 768px) {
    .report-cards-grid {
        gap: var(--spacing-xl);
    }
}

/* Mobile: default to a lightweight swipeable carousel (no JS library).
   The "Show all" button toggles .is-expanded to restore the normal grid. */
@media (max-width: 900px) {
    .report-cards-toolbar {
        display: flex;
    }

    .report-cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 6px 4px 14px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .report-cards-grid::-webkit-scrollbar {
        height: 10px;
    }

    .report-cards-grid::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.55);
        border-radius: 999px;
    }

    .report-cards-grid::-webkit-scrollbar-track {
        background: rgba(148, 163, 184, 0.18);
        border-radius: 999px;
    }

    .report-card {
        flex: 0 0 min(84vw, 380px);
        scroll-snap-align: start;
    }

    .report-cards-grid.is-expanded {
        display: grid;
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Individual Report Card - Compact Box Style */
.report-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.report-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.report-card.selected {
    background: #fefefe;
    border-color: var(--color-primary);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.report-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Card Header - Compact */
.report-card-header {
    margin-bottom: var(--spacing-md);
}

.report-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-card .risk-card-consequence {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.risk-card-answered--placeholder {
    color: rgba(100, 116, 139, 0.85);
}

.report-risk-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.report-risk-high {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.report-risk-medium {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.report-risk-low {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Card Body */
.report-card-body {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.report-consequence {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.report-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: #64748b;
}

.report-fixes {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.report-fixes strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    font-size: 0.875rem;
}

.report-fixes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-fixes li {
    padding: 4px 0 4px 24px;
    position: relative;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.report-fixes li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Card Footer - Compact */
.report-card-footer {
    margin-top: auto;
}

.report-price-section {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.report-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1;
}

.report-price-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.report-select-btn {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    color: var(--color-text);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-select-btn:hover {
    background: white;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.report-card.selected .report-select-btn {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
}

.report-card.selected .report-select-btn:hover {
    background: #0f172a;
    border-color: #0f172a;
}

.btn-text-unselected {
    display: inline;
}

.btn-text-selected {
    display: none;
}

.report-card.selected .btn-text-unselected {
    display: none;
}

.report-card.selected .btn-text-selected {
    display: inline;
}

/* Purchase Summary (Sticky Panel) */
.purchase-summary {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    position: sticky;
    top: var(--spacing-lg);
}

.purchase-summary.is-updating {
    transform: translateY(-1px);
}

.purchase-summary.is-updating .summary-total-price,
.purchase-summary.is-updating .btn-purchase-price {
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.summary-content {
    display: flex;
    flex-direction: column;
}

.summary-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.summary-item.hidden {
    display: none;
}

.summary-item-name {
    font-size: 0.9375rem;
    color: var(--color-text);
    font-weight: 500;
}

.summary-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}

.summary-discount {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(251, 191, 36, 0.04) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: #92400e;
}

.summary-discount svg {
    color: #d97706;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    border-radius: 16px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.summary-total-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    opacity: 0.95;
}

.summary-total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.summary-count {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: var(--spacing-lg);
}

.client-info {
    margin: 14px 0 18px;
    padding: 14px;
    display: grid;
    gap: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.client-info__field {
    display: grid;
    gap: 6px;
    text-align: left;
}

.client-info__label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.client-info__label {
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.1px;
}

.client-info__badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: #1d4ed8;
    white-space: nowrap;
}

.client-info__input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}

.client-info__input::placeholder {
    color: #94a3b8;
}

.client-info__input:focus {
    border-color: rgba(37, 99, 235, 0.75);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.client-info__hint {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 650;
    text-align: center;
}

.client-info__actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.client-info__actions .btn--wide {
    flex: 1 1 260px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 560px) {
    .client-info {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .client-info__hint {
        grid-column: 1 / -1;
    }
}

.btn-purchase-primary {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-md);
    box-shadow: 
        0 4px 6px rgba(59, 130, 246, 0.2),
        0 10px 25px rgba(59, 130, 246, 0.25);
}

.btn-purchase-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 12px rgba(59, 130, 246, 0.3),
        0 16px 32px rgba(59, 130, 246, 0.35);
}

.btn-purchase-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    box-shadow: none;
}

.btn-purchase-price {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.btn-purchase-secondary {
    width: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(34, 197, 94, 0.14) 100%);
    color: #064e3b;
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease;
    margin-bottom: var(--spacing-md);
}

.btn-purchase-secondary:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.55);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22) 0%, rgba(34, 197, 94, 0.18) 100%);
}

.btn-purchase-secondary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Landing marketing sections */
.landing-shell {
    max-width: 1100px;
    margin: 0 auto;
}

/* Scope language switch styling to landing so it doesn't fight the global language-switch rules */
.landing-shell .language-switch {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-bottom: 14px;
}

.landing-shell .language-switch-link {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.45);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    opacity: 0.9;
}

.landing-shell .language-switch-link:hover {
    opacity: 1;
    border-color: rgba(37, 99, 235, 0.35);
}

.landing-hero--panel {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(148,163,184,0.35);
    background:
        radial-gradient(1000px 420px at 15% -10%, rgba(37, 99, 235, 0.22), transparent 62%),
        radial-gradient(900px 360px at 85% 0%, rgba(99, 102, 241, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.70));
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.landing-hero--panel::before {
    content: "";
    position: absolute;
    inset: -120px -120px auto -120px;
    height: 280px;
    background: radial-gradient(circle at 25% 50%, rgba(59, 130, 246, 0.22), transparent 62%);
    pointer-events: none;
    filter: blur(6px);
}

.landing-hero--panel::after {
    content: "";
    position: absolute;
    inset: auto -120px -160px -120px;
    height: 300px;
    background: radial-gradient(circle at 70% 40%, rgba(99, 102, 241, 0.14), transparent 60%);
    pointer-events: none;
    filter: blur(4px);
}

.landing-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    align-items: start;
}

.landing-hero-copy {
    min-width: 0;
    text-align: left;
    padding: 6px 4px;
}

.landing-hero--panel .landing-kicker {
    margin-left: 0;
    margin-right: 0;
}

.landing-hero--panel .landing-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 18ch;
}

.landing-hero--panel .landing-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.landing-hero--panel .landing-cta {
    justify-content: flex-start;
    margin-top: 6px;
}

.landing-hero--panel .landing-proof {
    justify-content: flex-start;
}

.landing-card--sidebar {
    height: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    text-align: left;
}

.landing-card--sidebar h3 {
    text-align: center;
    margin-bottom: 12px;
}

.landing-card--sidebar .landing-list {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.landing-card--sidebar .landing-list li {
    position: relative;
    padding-left: 26px;
    line-height: 1.35;
}

.landing-card--sidebar .landing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 950;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.landing-deliverable-note {
    margin-top: 14px;
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(148,163,184,0.28);
    color: #64748b;
    font-weight: 750;
    text-align: center;
}

.landing-grid--single {
    grid-template-columns: 1fr;
}

.landing-steps-section {
    margin-top: 18px;
}

.landing-steps-title {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin: 0 0 10px;
    opacity: 0.9;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.landing-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.35);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    min-width: 0;
}

.landing-step__num {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    color: white;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
    flex: 0 0 auto;
}

.landing-step__text {
    color: #334155;
    font-weight: 800;
    line-height: 1.25;
}

@media (min-width: 900px) {
    .landing-grid--single .pricing-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

@media (max-width: 980px) {
    .landing-hero-inner {
        grid-template-columns: 1fr;
    }

    .landing-hero--panel .landing-title {
        max-width: none;
    }

    .landing-steps {
        grid-template-columns: 1fr;
    }
}

.landing-hero {
    padding: calc(var(--spacing-xl) * 1.05) 0;
    text-align: center;
}

.landing-kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: #1d4ed8;
    font-weight: 900;
    font-size: 0.85rem;
    margin: 0 auto var(--spacing-md);
}

.landing-title {
    font-size: 2.75rem;
    font-weight: 950;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 auto var(--spacing-md);
}

.landing-subtitle {
    max-width: 780px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
    color: #475569;
}

.landing-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.landing-cta .btn {
    min-height: 46px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 14px;
    font-weight: 850;
}

.landing-proof {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
    font-weight: 700;
    font-size: 0.92rem;
}

.landing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

@media (min-width: 900px) {
    .landing-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }
}

.landing-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: calc(var(--spacing-lg) * 1.1);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.landing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Request received (receipt) */
.receipt {
    margin: var(--spacing-xl) auto;
    max-width: 980px;
}

.receipt-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: clamp(18px, 4vw, 34px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.10);
    text-align: center;
}

.receipt-card:before {
    content: '';
    position: absolute;
    inset: -120px -140px;
    pointer-events: none;
    background:
        radial-gradient(620px 320px at 14% 18%, rgba(59, 130, 246, 0.18), transparent 62%),
        radial-gradient(560px 320px at 86% 26%, rgba(99, 102, 241, 0.14), transparent 60%),
        radial-gradient(560px 320px at 46% 108%, rgba(16, 185, 129, 0.10), transparent 62%);
}

.receipt-card > * {
    position: relative;
    z-index: 1;
}

.receipt-badge {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}

.receipt-title {
    margin: 0;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 950;
    letter-spacing: -0.6px;
    color: #0f172a;
}

.receipt-subtitle {
    margin: 10px auto 0;
    max-width: 720px;
    color: #475569;
    line-height: 1.65;
    font-size: 1.02rem;
    font-weight: 650;
}

.receipt-actions {
    margin: 18px auto 0;
    display: grid;
    gap: 10px;
    max-width: 520px;
}

.receipt-actions .btn--wide {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 46px;
    border-radius: 14px;
    font-weight: 850;
}

.receipt-note {
    margin: 14px auto 0;
    max-width: 720px;
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 650;
}

.landing-list {
    margin: 0;
    padding-left: 18px;
    color: #334155;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.pricing-tier {
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(248, 250, 252, 0.9);
}

.pricing-tier.is-featured {
    border-color: rgba(37, 99, 235, 0.28);
    background: rgba(37, 99, 235, 0.06);
}

.pricing-tier-title {
    font-weight: 900;
    margin-bottom: 2px;
}

.pricing-tier-price {
    font-size: 1.75rem;
    font-weight: 950;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.pricing-tier-note {
    color: #64748b;
    font-weight: 650;
    font-size: 0.95rem;
}

.purchase-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.purchase-reassurance svg {
    color: #10b981;
}

.selection-note {
    text-align: center;
    color: #dc2626;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: var(--spacing-md);
    background: rgba(239, 68, 68, 0.05);
    border-radius: 12px;
    margin-top: var(--spacing-md);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .verdict-hero {
        padding: var(--spacing-lg);
    }
    
    .verdict-title {
        font-size: 1.5rem;
    }
    
    .verdict-score-number {
        font-size: 3rem;
    }
    
    .verdict-score-outof {
        font-size: 1rem;
    }
    
    .verdict-risk-level {
        font-size: 1rem;
        padding: 10px 18px;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .impact-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .impact-card {
        padding: var(--spacing-lg);
    }
    
    .risk-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .risk-card {
        padding: var(--spacing-lg);
    }
    
    .priority-fix-item {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }
    
    .priority-number {
        position: relative;
        margin-bottom: var(--spacing-xs);
    }
    
    .resolution-title {
        font-size: 1.75rem;
    }
    
    .resolution-subtitle {
        font-size: 1rem;
    }
    
    .report-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .report-card-title {
        font-size: 1.125rem;
        min-height: auto;
    }
    
    .report-card-header {
        padding: var(--spacing-md);
    }
    
    .report-card-body {
        padding: var(--spacing-md);
    }
    
    .report-card-footer {
        padding: var(--spacing-md);
    }
    
    .report-price {
        font-size: 2rem;
    }
    
    .report-select-btn {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .purchase-summary {
        position: static;
        margin-top: var(--spacing-lg);
    }
    
    .summary-total-price {
        font-size: 2rem;
    }
    
    .btn-purchase-primary {
        font-size: 1rem;
        flex-direction: column;
        gap: var(--spacing-xs);
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .btn-purchase-price {
        font-size: 1.25rem;
    }
}

