/* Fence Job Leak Finder - Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --charcoal: #1a1814;
    --steel: #25211e;
    --safety-orange: #ff6b35;
    --safety-orange-hover: #e85a2a;
    --off-white: #f0f0f0;
    --steel-gray: #8c827a;
    --light-gray: #6b5f56;
    --green: #10b981;
    --red: #ef4444;
    --yellow: #f59e0b;
    --blue: #3b82f6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 640px;
    --border-radius: 8px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--off-white);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Screens */
.screen {
    display: none;
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen.active {
    display: block;
    opacity: 1;
}

/* Brand Badge */
.brand-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--safety-orange);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
}

/* Headlines */
.headline {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--off-white);
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.125rem;
    color: var(--steel-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* Value Preview — The Stack */
.value-preview {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--off-white);
}

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

.checkmark {
    color: var(--safety-orange);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-stack-note {
    text-align: center;
    color: var(--steel-gray);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Reassurance */
.reassurance {
    color: var(--steel-gray);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Buttons */
.cta-button {
    background: var(--safety-orange);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-button:hover {
    background: var(--safety-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Progress Bar */
.progress-bar {
    height: 14px;
    background: var(--steel);
    border-radius: 7px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--safety-orange) 0%, #ff9a5c 100%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 7px;
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

.progress-counter {
    text-align: center;
    color: var(--steel-gray);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xl);
}

/* Question Container */
#question-container {
    min-height: 400px;
}

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

/* Answer Buttons */
.answer-grid {
    display: grid;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.answer-button {
    background: rgba(255, 255, 255, 0.03);
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    line-height: 1.5;
}

.answer-button:hover {
    border-color: var(--safety-orange);
    border-left-color: var(--safety-orange);
    background: rgba(255, 107, 53, 0.06);
    transform: translateX(2px);
}

.answer-button:active {
    transform: scale(0.98);
}

.answer-button.selected {
    border-color: var(--safety-orange);
    border-left: 3px solid var(--safety-orange);
    background: var(--safety-orange);
    color: #1a1814;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
}

/* Text inputs — distinct from answer buttons */
#text-answer {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0 !important;
    padding: 1rem 0 !important;
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    color: var(--off-white) !important;
    text-align: left !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease !important;
}

#text-answer:focus {
    border-bottom-color: var(--safety-orange) !important;
    outline: none;
    box-shadow: none !important;
}

#text-answer::placeholder {
    color: var(--steel-gray);
    opacity: 0.7;
}

/* Feedback Banner - shows above next question, stays until user answers */
.feedback-banner {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.04) 100%);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-left: 4px solid var(--safety-orange);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.65;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
    animation: feedbackSlideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes feedbackSlideIn {
    0% { 
        opacity: 0; 
        transform: translateY(-12px) scale(0.98); 
        box-shadow: 0 0 0 rgba(255, 107, 53, 0);
    }
    70% { 
        opacity: 1; 
        transform: translateY(2px) scale(1.01); 
        box-shadow: 0 4px 24px rgba(255, 107, 53, 0.25);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
    }
}

/* Navigation */
.question-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--steel-gray);
}

.nav-button {
    background: var(--steel);
    color: var(--off-white);
    border: 1px solid var(--steel-gray);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-button:hover {
    border-color: var(--safety-orange);
    color: var(--safety-orange);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loading Screen */
.loading-content {
    text-align: center;
    padding: var(--spacing-xl);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--steel);
    border-top: 4px solid var(--safety-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-lg);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Form */
#contact-screen h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--off-white);
}

.contact-prompt {
    color: var(--steel-gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--steel-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--off-white);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--safety-orange);
    background: rgba(255, 107, 53, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--safety-orange);
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--steel-gray);
    line-height: 1.4;
}

.contact-note {
    color: var(--steel-gray);
    font-size: 0.85rem;
    margin-top: var(--spacing-md);
    text-align: center;
}

/* Optional fields section — slightly dimmed */
.optional-fields {
    opacity: 0.7;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.optional-label {
    color: var(--steel-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

/* Results Section */
.results-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--safety-orange), transparent);
    border-radius: 12px 12px 0 0;
}

.results-hero-label {
    color: var(--steel-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.results-hero-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Impact Hero — BIG, urgent, first thing they see */
.impact-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 0 auto 3rem;
    max-width: 560px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(255, 107, 53, 0.06) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.impact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, var(--safety-orange), transparent);
}

.impact-hero-label {
    color: #fca5a5;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-hero-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef4444, var(--safety-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.impact-hero-sub {
    color: var(--steel-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Findings Section */
.findings-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.findings-section h3,
.diagnosis-section h3,
.evidence-section h3,
.strengths-section h3,
.fix-plan-section h3,
.plan30-section h3,
.secondary-leaks h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--steel-gray);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.finding-item {
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.finding-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.finding-item p {
    color: var(--off-white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Diagnosis Card */
.diagnosis-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.diagnosis-card {
    background: rgba(45, 55, 72, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--safety-orange);
    border-radius: 8px;
    padding: 1.75rem 2rem;
}

.diagnosis-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.diagnosis-card p {
    color: var(--steel-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.diagnosis-math {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.math-label {
    color: var(--steel-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.math-detail {
    color: var(--off-white);
    font-size: 0.9rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    line-height: 1.5;
    word-break: break-word;
}

.diagnosis-impact {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.impact-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--safety-orange);
    letter-spacing: -0.02em;
}

.impact-label {
    color: var(--steel-gray);
    font-size: 0.9rem;
}

/* Evidence Section */
.evidence-section {
    max-width: 560px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.evidence-intro {
    color: var(--steel-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 500;
}

.evidence-item {
    background: rgba(45, 55, 72, 0.3);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--safety-orange);
}

.evidence-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #fff;
    font-size: 0.95rem;
}

.evidence-item p {
    color: var(--steel-gray);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Strengths Section */
.strengths-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.strength-item {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
}

.strength-name {
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.strength-item p {
    color: var(--steel-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* 7-Day Fix Plan */
.fix-plan-section,
.plan30-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.fix-day,
.plan-week {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
}

.fix-day-label,
.plan-week-label {
    font-weight: 700;
    color: var(--safety-orange);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.3rem;
}

.fix-day p,
.plan-week p {
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Secondary Leaks */
.secondary-leaks {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.secondary-leak-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
}

.secondary-leak-name {
    font-weight: 600;
    color: var(--yellow);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.secondary-leak-item p {
    color: var(--steel-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Report Footer */
.report-footer {
    text-align: center;
    color: var(--steel-gray);
    font-size: 0.85rem;
    font-style: italic;
    padding: 2rem 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Diagnosis Bridge */
.diagnosis-bridge {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.diagnosis-bridge-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    color: var(--steel-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

/* Potential Impact Section */
.impact-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.impact-card {
    background: rgba(45, 55, 72, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--safety-orange);
    border-radius: 8px;
    padding: 1.5rem 2rem;
}

.impact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.impact-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.impact-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.impact-label {
    color: var(--steel-gray);
    font-size: 0.85rem;
}

.impact-value {
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.impact-range {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.impact-range-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--safety-orange);
    display: block;
}

.impact-range-note {
    color: var(--steel-gray);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.25rem;
}

/* Ready-to-Use Resource Section */
.ready-resource {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
}

.ready-resource h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.copy-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
}

.copy-text {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

.copy-note {
    color: var(--steel-gray);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0;
}

.copy-button {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    display: inline-block;
}

.copy-button:hover {
    background: rgba(16, 185, 129, 0.25);
}

/* Mid CTA (inline, after 7-day plan) */
.cta-inline {
    max-width: 560px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.cta-inline h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cta-inline-copy {
    color: var(--steel-gray);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    text-align: center;
}

.cta-inline-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: var(--safety-orange);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s ease;
    font-family: var(--font-body);
}

.cta-inline-btn:hover {
    background: var(--safety-orange-hover);
}

.cta-inline-sub {
    color: var(--steel-gray);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-style: italic;
    text-align: center;
}

/* Hidden Leaks Toggle */
.expand-leaks-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--steel-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    margin-bottom: 0;
}

.expand-leaks-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--off-white);
}

.hidden-leaks {
    display: none;
}

/* Final CTA */
.cta-final {
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    max-width: 560px;
    margin: 0 auto;
}

.cta-final h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-final-copy {
    color: var(--off-white);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.cta-final-btn {
    font-size: 1.15rem;
    padding: 1.1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 8px;
    animation: cta-pulse 3s ease-in-out infinite;
    display: inline-block;
    width: 100%;
    max-width: 380px;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250, 177, 68, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(250, 177, 68, 0); }
}

.cta-final-sub {
    color: var(--steel-gray);
    font-size: 0.8rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .container {
        padding: var(--spacing-md);
    }
    
    .headline {
        font-size: 1.875rem;
    }
    
    .question-text {
        font-size: 1.125rem;
    }
    
    .answer-button {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
    }
    
    .screen {
        display: block !important;
        min-height: auto;
    }
    
    .cta-button,
    .consultation-offer {
        display: none;
    }
}

/* ==================================================================
   NEW RESULTS PAGE STYLES (post-rebuild)
   ================================================================== */

/* Greeting */
.results-greeting {
    text-align: center;
    margin-bottom: 2rem;
}
.results-greeting h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

/* Impact Hero — updated */
.impact-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 0 auto 3rem;
    max-width: 560px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(255, 107, 53, 0.06) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}
.impact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, var(--safety-orange), transparent);
}
.impact-eyebrow {
    color: #fca5a5;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    font-weight: 700;
}
.impact-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ef4444, var(--safety-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.impact-sub {
    color: var(--steel-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 1.25rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.impact-expand {
    margin-top: 0.5rem;
}
.impact-expand .expand-content {
    display: none;
    color: var(--steel-gray);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.impact-expand.expanded .expand-content {
    display: block;
}
.expand-toggle {
    background: none;
    border: none;
    color: var(--steel-gray);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: var(--font-body);
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.expand-toggle:hover {
    color: var(--safety-orange);
}

/* #1 Job Leak Section */
.job-leak-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}
.leak-label {
    color: var(--safety-orange);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.leak-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.leak-desc {
    color: var(--off-white);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.leak-why {
    color: var(--steel-gray);
    font-size: 0.8rem;
    line-height: 1.55;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Findings Grid */
.findings-grid {
    display: grid;
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}
.finding-card {
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    position: relative;
    padding-left: 3.5rem;
}
.finding-number {
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    width: 24px;
    height: 24px;
    background: var(--safety-orange);
    color: #1a1814;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.finding-title {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}
.finding-sub {
    color: var(--steel-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Strength Section */
.strength-section {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}
.strength-section h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
}
.strength-card {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
}
.strength-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.5rem;
}
.strength-card p {
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sprint Section */
.sprint-section {
    max-width: 560px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.sprint-section h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.sprint-days {
    display: grid;
    gap: 0.5rem;
}
.sprint-day {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.sprint-day-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.15s;
}
.sprint-day-header:hover {
    background: rgba(255,255,255,0.02);
}
.sprint-day-num {
    color: var(--safety-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.sprint-day-title {
    flex: 1;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}
.sprint-chevron {
    color: var(--steel-gray);
    font-size: 0.8rem;
    transition: transform 0.2s;
}
.sprint-expanded .sprint-chevron {
    transform: rotate(180deg);
}
.sprint-day-content {
    display: none;
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.sprint-expanded .sprint-day-content {
    display: block;
}
.sprint-day-content p {
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0 0.75rem;
}

/* Sprint Tables */
.sprint-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
    font-size: 0.85rem;
}
.sprint-table th,
.sprint-table td {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}
.sprint-table th {
    color: var(--steel-gray);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.02);
}
.sprint-table td {
    color: var(--off-white);
}
.sprint-table td[contenteditable="true"] {
    color: var(--safety-orange);
    min-width: 60px;
}
.sprint-table td[contenteditable="true"]:focus {
    outline: 1px solid var(--safety-orange);
    background: rgba(255,107,53,0.04);
}

/* Sprint Message Boxes */
.sprint-message-box {
    background: rgba(16,185,129,0.05);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
}
.message-label {
    color: var(--green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.message-text {
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    white-space: pre-wrap;
}

/* SOP Box */
.sop-box {
    background: rgba(255,107,53,0.04);
    border: 1px solid rgba(255,107,53,0.1);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 0.75rem 0;
}
.sop-box h4 {
    color: var(--safety-orange);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.sop-box ol {
    padding-left: 1.25rem;
}
.sop-box li {
    color: var(--off-white);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

/* Checklist */
.checklist-box {
    margin: 0.75rem 0;
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--off-white);
    font-size: 0.88rem;
    line-height: 1.5;
}
.checklist li:last-child {
    border-bottom: none;
}
.sprint-checkbox {
    accent-color: var(--safety-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Success Target */
.success-target {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(16,185,129,0.06);
    border-radius: 6px;
    border: 1px solid rgba(16,185,129,0.12);
}

/* Process Diagram */
.process-diagram {
    max-width: 560px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.process-diagram h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    text-align: center;
}
.process-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.process-step {
    background: var(--steel);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 100px;
}
.process-step-num {
    color: var(--safety-orange);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}
.process-step-text {
    color: var(--off-white);
    font-size: 0.8rem;
    line-height: 1.3;
}
.process-arrow {
    color: var(--safety-orange);
    font-size: 1.2rem;
    font-weight: 700;
}

/* === Results CTA === */
.results-cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,107,53,0.15);
    border-radius: 12px;
}
.results-cta.mid-cta {
    margin: 2rem auto;
    padding: 1.25rem;
    background: transparent;
    border: none;
}
.results-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.results-cta p {
    color: var(--off-white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.results-cta .cta-micro {
    color: var(--steel-gray);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Secondary Issue (collapsed) */
.secondary-issue {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}
.secondary-issue .expand-content {
    display: none;
    padding: 1.25rem 1.5rem;
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}
.secondary-issue.expanded .expand-content {
    display: block;
}
.secondary-issue .expand-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}
.secondary-issue .expand-content p {
    color: var(--steel-gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form (in results — pre-filled from survey) */
.contact-form-section {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    padding: 0;
}
.contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    text-align: center;
}
.form-prefill-note {
    color: var(--steel-gray);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.5;
}
.form-prefill-note strong {
    color: var(--off-white);
    font-weight: 600;
}
.contact-form-section .form-group.primary-field {
    margin-bottom: 1rem;
}
.contact-form-section .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--steel-gray);
    font-size: 0.85rem;
    font-weight: 500;
}
.contact-form-section .form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--off-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.contact-form-section .form-group input:focus {
    outline: none;
    border-color: var(--safety-orange);
}
.contact-form-section .optional-fields {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    opacity: 0.55;
    transition: opacity 0.25s;
}
.contact-form-section .optional-fields:focus-within {
    opacity: 1;
}
.contact-form-section .optional-fields .form-group {
    flex: 1;
    margin-bottom: 0;
}
.contact-form-section .cta-button {
    margin-top: 0.5rem;
}
.contact-form-section .cta-button.sent {
    background: var(--green);
}

/* Copy button copied state */
.copy-button.copied {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}

/* Mobile: Impact hero sizing */
@media (max-width: 480px) {
    .impact-amount {
        font-size: 2rem;
    }
    .leak-title {
        font-size: 1.3rem;
    }
    .process-steps {
        flex-direction: column;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .finding-card {
        padding-left: 1.5rem;
    }
    .finding-number {
        position: static;
        display: inline-flex;
        margin-right: 0.5rem;
        vertical-align: middle;
    }
}


/* === Trust Anchor (Landing Page) === */
.trust-anchor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: var(--green);
    font-weight: 500;
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* === Question Icons === */
.question-icon {
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--safety-orange);
    flex-shrink: 0;
}

.question-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* === Mid-Survey Insight Banner === */
.insight-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    animation: slide-in-overshoot 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.insight-banner-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--safety-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.insight-banner-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--safety-orange);
    line-height: 1.2;
}

.insight-banner-sub {
    font-size: 0.875rem;
    color: var(--steel-gray);
    margin-top: 0.5rem;
}

@keyframes slide-in-overshoot {
    0% { opacity: 0; transform: scale(0.95) translateY(10px); }
    70% { transform: scale(1.01) translateY(0); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* === Funnel Visualization === */
.leak-funnel {
    margin: 2rem auto;
    max-width: 560px;
    padding: 2rem 1.75rem;
    background: var(--steel);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.funnel-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.funnel-eyebrow {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--steel-gray);
    font-weight: 600;
}

.funnel-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.funnel-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.funnel-bar {
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    color: #fff;
    background: rgba(16, 185, 129, 0.25);
    transition: width 0.4s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.funnel-bar .funnel-value {
    font-weight: 800;
    font-size: 1.125rem;
    font-family: var(--font-heading);
}

.funnel-bar .funnel-unit {
    font-weight: 400;
    font-size: 0.8125rem;
    opacity: 0.8;
}

.funnel-bar.leak {
    min-width: 124px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.45), rgba(239, 68, 68, 0.45));
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
    animation: funnel-pulse 2.5s ease-in-out infinite;
}

.funnel-bar.outcome {
    min-width: 124px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.12);
}

.funnel-row.funnel-leak .funnel-bar.leak {
    position: relative;
}

.funnel-note {
    font-size: 0.75rem;
    color: var(--steel-gray);
    text-align: center;
}

.funnel-note.highlight {
    color: var(--safety-orange);
    font-weight: 500;
}

.funnel-divider {
    width: 100%;
    text-align: center;
    padding: 0.35rem 0;
    position: relative;
}

.funnel-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.funnel-divider span {
    position: relative;
    font-size: 0.6875rem;
    color: var(--steel-gray);
    background: var(--steel);
    padding: 0 0.75rem;
    text-transform: lowercase;
    font-style: italic;
}

.funnel-footer {
    margin-top: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 8px;
}

.funnel-footer-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--safety-orange);
    color: #fff;
    font-weight: 800;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
}

.funnel-footer span:last-child {
    font-size: 0.8125rem;
    color: var(--off-white);
    line-height: 1.5;
}

@keyframes funnel-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.15); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 53, 0.3); }
}

.funnel-note-estimate {
    text-align: center;
    font-size: 0.75rem;
    color: var(--steel-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.funnel-note-estimate-inline {
    text-align: center;
    font-size: 0.75rem;
    color: var(--steel-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

/* === Leak Severity Indicator === */
.severity-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.severity-label {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.severity-bars {
    display: flex;
    gap: 3px;
}

.severity-bar {
    width: 12px;
    height: 6px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.severity-bar.filled {
    background: var(--red);
}

/* === Dream Outcome Section === */
.dream-outcome {
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 560px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
}

.dream-outcome h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--green);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.dream-outcome ul {
    list-style: none;
    padding: 0;
}

.dream-outcome li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--off-white);
    line-height: 1.5;
}

.dream-outcome li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* === CTA Urgency === */
.cta-urgency {
    font-size: 0.8125rem;
    color: var(--steel-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* === Sprint Section Intro === */
.section-intro {
    font-size: 0.9375rem;
    color: var(--steel-gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .funnel-bar {
        height: 28px;
        font-size: 0.75rem;
    }
    .funnel-label {
        font-size: 0.75rem;
    }
    .insight-banner-amount {
        font-size: 1.5rem;
    }
}

.funnel-note {
    text-align: center;
    font-size: 0.85rem;
    color: #8a8780;
    margin: 0.5rem auto 2rem;
    max-width: 560px;
    font-style: italic;
}

/* === Inline Contact Form in CTA === */
.results-contact-form {
    max-width: 500px;
    margin: 1.5rem auto;
}
.results-contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.results-contact-form input[type="text"],
.results-contact-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1rem;
    background: var(--charcoal);
    border: 1px solid #3a3630;
    border-radius: 8px;
    color: var(--off-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.results-contact-form input:focus {
    border-color: var(--safety-orange);
}
.results-contact-form input::placeholder {
    color: #5a5750;
}
.results-contact-form .cta-button {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .results-contact-form .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==================================================================
   Visual conversion pass — DFY/results compression
   ================================================================== */

/* Opening screen: CTA above fold */
#opening-screen .container {
    padding-top: 1.5rem;
}
.hero-cta {
    margin: 0.25rem 0 0.85rem;
}
.value-preview.compact {
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
}
.value-preview.compact .value-item {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}
#opening-screen .brand-badge {
    margin-bottom: 1.25rem;
}
#opening-screen .headline {
    margin-bottom: 1rem;
}
#opening-screen .subheadline {
    margin-bottom: 1.25rem;
}
#opening-screen .trust-anchor {
    margin-top: 0.75rem;
}

/* Results greeting compact so the report card starts higher */
.results-container > * {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.compact-results-greeting {
    margin-bottom: 1rem;
}
.compact-results-greeting h1 {
    font-size: 1.15rem;
    color: var(--steel-gray);
    font-weight: 600;
}

/* Screenshot-worthy diagnosis card */
.diagnosis-report-card {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 1.65rem;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(255,107,53,0.16), transparent 36%),
        linear-gradient(135deg, rgba(239,68,68,0.10), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,107,53,0.22);
    box-shadow: 0 18px 55px rgba(0,0,0,0.26), 0 0 35px rgba(255,107,53,0.08);
    position: relative;
    overflow: hidden;
}
.diagnosis-report-card::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, var(--safety-orange), #f59e0b);
}
.report-card-topline,
.report-card-bottom,
.report-card-severity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.report-card-badge,
.dfy-badge,
.sprint-topline,
.proof-kicker,
.dfy-kicker {
    display: inline-block;
    color: var(--safety-orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.report-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.13);
    border: 1px solid rgba(255,107,53,0.28);
    color: var(--safety-orange);
    font-size: 1.15rem;
}
.report-card-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.25rem;
    margin: 1.25rem 0 1.1rem;
}
.report-card-label {
    color: var(--steel-gray);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.report-card-primary h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.18;
    margin-bottom: 0.45rem;
}
.report-card-primary p {
    color: var(--steel-gray);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}
.report-card-money {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.report-card-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    overflow-wrap: anywhere;
    background: linear-gradient(135deg, #ef4444, var(--safety-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.report-card-period {
    color: #fca5a5;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}
.impact-calculation {
    margin: 1.15rem 0 0;
    padding: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.28);
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.06);
}
.calculation-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.calculation-step {
    display: grid;
    grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
    gap: 0.8rem;
    padding: 0.58rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.calculation-step span {
    color: var(--steel-gray);
    font-size: 0.78rem;
    font-weight: 700;
}
.calculation-step strong {
    color: var(--off-white);
    font-size: 0.84rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.calculation-step small {
    color: #fca5a5;
    font-weight: 800;
    grid-column: 2;
}
.calculation-total strong { color: var(--safety-orange); }
.impact-calculation p {
    color: var(--steel-gray);
    font-size: 0.76rem;
    line-height: 1.5;
    margin: 0.75rem 0 0;
}
@media (max-width: 640px) {
    .calculation-step { grid-template-columns: 1fr; gap: 0.25rem; }
    .calculation-step small { grid-column: 1; }
}
.report-card-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: flex-start;
}
.report-card-severity {
    justify-content: flex-start;
    color: var(--off-white);
    font-size: 0.85rem;
}
.report-card-severity strong {
    color: var(--red);
}
.report-card-fix {
    color: var(--steel-gray);
    font-size: 0.82rem;
    text-align: right;
    max-width: 250px;
}
.report-card-fix strong {
    color: var(--off-white);
}
.diagnosis-report-card .impact-expand {
    text-align: center;
    margin-top: 1rem;
}

/* Diagnosis visuals/charts */
.diagnostic-visual,
.system-proof {
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--steel);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}
.visual-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.visual-header span {
    color: var(--safety-orange);
    font-size: 1.25rem;
}
.visual-header h3,
.system-proof h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: #fff;
    margin: 0;
    text-align: center;
}
.visual-note,
.system-proof p {
    color: var(--steel-gray);
    font-size: 0.85rem;
    line-height: 1.55;
    text-align: center;
    margin: 1rem 0 0;
}
.comparison-row,
.week-row {
    display: grid;
    grid-template-columns: 120px 1fr 56px;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}
.comparison-label,
.week-row span {
    color: var(--off-white);
    font-weight: 600;
}
.comparison-track,
.week-track {
    height: 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
}
.comparison-fill,
.week-fill {
    height: 100%;
    border-radius: 999px;
    background: rgba(16,185,129,0.45);
}
.comparison-row.risk .comparison-fill,
.week-fill {
    background: linear-gradient(90deg, rgba(255,107,53,0.85), rgba(239,68,68,0.85));
}
.comparison-row.target .comparison-fill {
    background: rgba(245,158,11,0.7);
}
.comparison-value {
    color: var(--steel-gray);
    text-align: right;
    font-weight: 700;
}
.timeline-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 0.25rem;
}
.timeline-track::before {
    content: '';
    position: absolute;
    left: 8%; right: 8%; top: 13px;
    height: 2px;
    background: rgba(255,255,255,0.08);
}
.timeline-point {
    position: relative;
    text-align: center;
    z-index: 1;
    color: var(--steel-gray);
    font-size: 0.75rem;
}
.timeline-dot {
    width: 28px;
    height: 28px;
    margin: 0 auto 0.4rem;
    border-radius: 50%;
    background: var(--charcoal);
    border: 2px solid rgba(255,255,255,0.12);
}
.timeline-point.best .timeline-dot {
    border-color: var(--green);
    background: rgba(16,185,129,0.18);
}
.timeline-point.you .timeline-dot {
    border-color: var(--red);
    background: rgba(239,68,68,0.22);
    box-shadow: 0 0 18px rgba(239,68,68,0.25);
}
.timeline-point strong,
.timeline-point em {
    display: block;
    margin-top: 0.25rem;
    color: var(--safety-orange);
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.timeline-point em {
    color: var(--green);
}
.target-line {
    text-align: center;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(16,185,129,0.25);
}

/* Early same-goal CTA */
.dfy-inline-cta {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    padding: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,107,53,0.10), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,107,53,0.18);
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 1rem;
    align-items: center;
}
.dfy-inline-cta strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 0.25rem 0;
}
.dfy-inline-cta p {
    color: var(--steel-gray);
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
}
.compact-cta {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
}

/* Compact sprint preview */
.compact-sprint {
    padding: 1.35rem 1.5rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
}
.compact-sprint h2 {
    margin-top: 0.35rem;
    margin-bottom: 0.55rem;
}
.sprint-preview-list {
    display: grid;
    gap: 0.45rem;
    margin-top: 1rem;
}
.sprint-preview-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    background: rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.045);
}
.sprint-preview-item span {
    color: var(--safety-orange);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sprint-preview-item strong {
    color: var(--off-white);
    font-size: 0.86rem;
    line-height: 1.35;
}

/* Proof blocks */
.system-proof {
    background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(255,255,255,0.02));
    border-color: rgba(16,185,129,0.16);
}
.proof-kicker {
    color: var(--green);
    display: block;
    text-align: center;
    margin-bottom: 0.35rem;
}
.sms-thread {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.15rem;
}
.sms-bubble {
    max-width: 82%;
    padding: 0.75rem 0.95rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.42;
}
.sms-bubble.system {
    justify-self: start;
    background: rgba(255,255,255,0.08);
    color: var(--off-white);
    border-bottom-left-radius: 5px;
}
.sms-bubble.homeowner {
    justify-self: end;
    background: var(--safety-orange);
    color: #1a1814;
    font-weight: 700;
    border-bottom-right-radius: 5px;
}
.proof-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}
.proof-steps span {
    text-align: center;
    color: var(--green);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.16);
    border-radius: 8px;
    padding: 0.65rem 0.35rem;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Stronger bottom DFY CTA */
.results-cta.dfy-final {
    position: relative;
    padding: 2.7rem 1.75rem;
    background:
        radial-gradient(circle at top center, rgba(255,107,53,0.20), transparent 48%),
        linear-gradient(135deg, rgba(255,107,53,0.10), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,107,53,0.28);
    box-shadow: 0 18px 60px rgba(0,0,0,0.26), 0 0 36px rgba(255,107,53,0.10);
}
.results-cta.dfy-final .dfy-badge {
    color: #1a1814;
    background: var(--safety-orange);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.85rem;
}
.results-cta.dfy-final h2 {
    font-size: 1.65rem;
}
.results-cta.dfy-final .cta-button {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255,107,53,0.25);
}
.results-cta.dfy-final .cta-urgency.strong {
    color: #fca5a5;
    background: rgba(239,68,68,0.09);
    border: 1px solid rgba(239,68,68,0.18);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin: 1rem auto 0;
    font-weight: 700;
    max-width: 460px;
}

@media (max-width: 640px) {
    .report-card-grid,
    .dfy-inline-cta {
        grid-template-columns: 1fr;
    }
    .report-card-bottom {
        flex-direction: column;
    }
    .report-card-fix {
        text-align: left;
        max-width: none;
    }
    .report-card-amount {
        font-size: 1.65rem;
    }
    .comparison-row,
    .week-row {
        grid-template-columns: 90px 1fr 44px;
        gap: 0.5rem;
    }
    .timeline-track {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .timeline-track::before { display: none; }
    .timeline-point {
        display: grid;
        grid-template-columns: 28px 1fr auto;
        gap: 0.5rem;
        align-items: center;
        text-align: left;
    }
    .timeline-dot { margin: 0; }
    .proof-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================================
   Evidence-led conversion refinements
   ================================================================== */
.impact-equation {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    text-align: left;
}
.impact-equation .equation-label {
    display: block;
    color: var(--steel-gray);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.impact-equation strong {
    display: block;
    color: var(--off-white);
    font-size: 0.86rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.impact-equation small {
    display: block;
    color: #8a8780;
    font-size: 0.7rem;
    line-height: 1.45;
    margin-top: 0.35rem;
}
.visual-note strong {
    color: var(--off-white);
}

.ready-resource {
    padding: 1.4rem 1.5rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(16,185,129,0.18);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}
.ready-resource-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.ready-resource h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 0.25rem 0 0;
}
.ready-resource .proof-kicker {
    text-align: left;
}
.copy-button {
    flex-shrink: 0;
    border: 1px solid rgba(16,185,129,0.28);
    background: rgba(16,185,129,0.1);
    color: #6ee7b7;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}
.copy-button:hover { background: rgba(16,185,129,0.17); }
.copy-button:active { transform: scale(0.97); }
.copy-button.copied { background: var(--green); color: #0b2119; }
.ready-message {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    color: var(--off-white);
    background: rgba(0,0,0,0.2);
    border-left: 3px solid var(--green);
    border-radius: 4px 10px 10px 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.ready-resource > p {
    color: var(--steel-gray);
    font-size: 0.78rem;
    line-height: 1.5;
    margin: 0.75rem 0 0;
}

.inline-cta-action {
    display: grid;
    gap: 0.45rem;
    text-align: center;
    min-width: 0;
}
.inline-cta-action .cta-button {
    min-width: 0;
    overflow-wrap: anywhere;
}
.inline-cta-action small {
    color: #8a8780;
    font-size: 0.66rem;
    line-height: 1.35;
}

.complete-analysis {
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.complete-analysis > summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    color: var(--off-white);
    transition: background 0.15s ease;
}
.complete-analysis > summary::-webkit-details-marker { display: none; }
.complete-analysis > summary:hover { background: rgba(255,255,255,0.03); }
.complete-analysis > summary strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}
.complete-analysis > summary small {
    display: block;
    color: var(--steel-gray);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}
.summary-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--safety-orange);
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.2);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
}
.complete-analysis[open] .summary-icon { transform: rotate(45deg); }
.complete-analysis-body {
    padding: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.complete-analysis-body > * {
    max-width: 100%;
}
.analysis-section-label {
    color: var(--safety-orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.complete-analysis .findings-grid,
.complete-analysis .strength-section,
.complete-analysis .compact-sprint,
.complete-analysis .process-diagram,
.complete-analysis .system-proof {
    margin-left: 0;
    margin-right: 0;
}
.analysis-secondary {
    margin: 1.25rem 0 0;
    padding: 1.1rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    background: rgba(0,0,0,0.12);
}
.analysis-secondary h3 {
    color: var(--off-white);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.analysis-secondary p {
    color: var(--steel-gray);
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0;
}

.guarantee-card {
    max-width: 470px;
    margin: 1rem auto 1.25rem;
    padding: 0.95rem 1rem;
    text-align: left;
    background: rgba(16,185,129,0.07);
    border: 1px solid rgba(16,185,129,0.17);
    border-radius: 10px;
}
.guarantee-card strong {
    display: block;
    color: #6ee7b7;
    font-size: 0.86rem;
    margin-bottom: 0.3rem;
}
.guarantee-card span {
    display: block;
    color: var(--steel-gray);
    font-size: 0.75rem;
    line-height: 1.5;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 640px) {
    .ready-resource-topline {
        align-items: flex-start;
    }
    .copy-button {
        padding: 0.6rem 0.7rem;
    }
    .complete-analysis-body {
        padding: 1rem;
    }
    .mobile-sticky-cta {
        position: fixed;
        left: 50%;
        bottom: 0;
        z-index: 1000;
        width: calc(100% - 1rem);
        max-width: 430px;
        min-height: 68px;
        padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
        transform: translate(-50%, 120%);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        background: rgba(26,24,20,0.97);
        border: 1px solid rgba(255,107,53,0.28);
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
        transition: transform 0.22s ease, opacity 0.22s ease;
        pointer-events: none;
    }
    .mobile-sticky-cta.visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-sticky-cta div {
        display: grid;
        line-height: 1.1;
    }
    .mobile-sticky-cta strong {
        color: #fca5a5;
        font-size: 0.9rem;
    }
    .mobile-sticky-cta span {
        color: var(--steel-gray);
        font-size: 0.68rem;
    }
    .mobile-sticky-cta a {
        color: #1a1814;
        background: var(--safety-orange);
        border-radius: 8px;
        padding: 0.72rem 0.8rem;
        font-size: 0.72rem;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
    }
}

