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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    background: #FAFAFA;
    padding: 0;
    min-height: 100vh;
    line-height: 1.7;
    color: #1a1a1a;
}

.logo {
    text-align: center;
    padding: 20px 20px 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Start Screen Styles */
.start-screen {
    display: none;
}

.start-screen.active {
    display: block;
}

.start-card {
    background: white;
    border-radius: 16px;
    padding: 40px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 20px;
}

.start-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.start-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #1a5c4d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

.start-button {
    background: #1a5c4d;
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s;
}

.start-button:hover {
    background: #0f4a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 92, 77, 0.3);
}

.start-footer {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 16px;
}

.progress-bar-container {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: #1a1a1a;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Question Styles */
.question-screen {
    display: none;
}

.question-screen.active {
    display: block;
}

.question-card {
    background: white;
    border-radius: 16px;
    padding: 24px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 8px;
}

.question-number {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.question-context {
    background: linear-gradient(135deg, #f0fdf9 0%, #e6fcf5 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 2px 8px rgba(40, 204, 143, 0.08);
}

.question-context::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1a5c4d 0%, #0f4a3d 100%);
    border-radius: 12px 0 0 12px;
}

.question-text {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.4;
}

.options {
    margin-bottom: 24px;
}

.option {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 13px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option:hover {
    border-color: #1a5c4d;
    background: #f4f8f7;
}

.option.selected {
    border-color: #1a5c4d;
    background: #eaf2f0;
}

.radio-button {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.option.selected .radio-button {
    border-color: #1a5c4d;
    background: white;
}

.option.selected .radio-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #1a5c4d;
    border-radius: 50%;
}

.option-text {
    flex: 1;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.5;
}

.button-group {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back {
    background: white;
    color: #666;
    border: 2px solid #e5e5e5;
}

.btn-back:hover {
    background: #f5f5f5;
}

.btn-next {
    background: #1a5c4d;
    color: white;
    flex: 1;
}

.btn-next:hover:not(:disabled) {
    background: #0f4a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 92, 77, 0.3);
}

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

/* Results Screen */
.result-screen {
    display: none;
}

.result-screen.active {
    display: block;
}

.result-header-card {
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A5F 100%);
    border-radius: 2px;
    padding: 50px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    text-align: center;
    margin-bottom: 32px;
    border-top: 3px solid #C5A572;
}

.result-header-title {
    font-size: 13px;
    font-weight: 500;
    color: #C5A572;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.result-header-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.result-icon {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.result-main-title {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.result-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.result-card {
    background: white;
    border-radius: 0;
    padding: 40px 45px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    border-left: 3px solid #E0E0E0;
}

.result-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 12px;
}

.problem-section {
    margin-bottom: 24px;
}

.problem-item {
    margin-bottom: 20px;
    padding: 20px 24px;
    background: #F8F9FA;
    border-radius: 0;
    border-left: 2px solid #C5A572;
}

.problem-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: #6B7280;
}

.problem-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.8;
}

.philosophical {
    color: #0A1F44;
    font-weight: 500;
}

.transformation-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin: 28px 0;
}

.state-box {
    padding: 28px 24px;
    border-radius: 0;
    text-align: left;
}

.before-state {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-left: 3px solid #6B7280;
}

.after-state {
    background: #FAFAFA;
    border: 1px solid #C5A572;
    border-left: 3px solid #C5A572;
}

.state-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.before-state .state-label {
    color: #6B7280;
}

.after-state .state-label {
    color: #C5A572;
}

.state-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.8;
}

.arrow {
    font-size: 24px;
    color: #C5A572;
    font-weight: 300;
}

.empathy-authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 24px;
}

.ea-box {
    padding: 28px 24px;
    background: #F8F9FA;
    border-radius: 0;
    border-left: 2px solid #E0E0E0;
}

.ea-title {
    font-size: 14px;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.ea-list {
    list-style: none;
    padding: 0;
}

.ea-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.7;
}

.ea-list li:before {
    position: absolute;
    left: 0;
    font-size: 14px;
}

.empathy-list li:before {
    content: "•";
    color: #6B7280;
    font-weight: bold;
}

.authority-list li:before {
    content: "✓";
    color: #C5A572;
    font-weight: bold;
}

.plan-card {
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A5F 100%);
    color: white;
    border-radius: 0;
    padding: 45px 45px;
    margin-bottom: 24px;
    border-top: 2px solid #C5A572;
}

.plan-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.plan-steps {
    display: grid;
    gap: 20px;
}

.plan-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px 24px;
    border-radius: 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 2px solid rgba(197, 165, 114, 0.3);
}

.step-number {
    width: 36px;
    height: 36px;
    background: transparent;
    color: #C5A572;
    border: 2px solid #C5A572;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.step-content p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.7;
}

.stakes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 24px;
}

.stakes-box {
    padding: 28px 24px;
    border-radius: 0;
}

.failure-stakes {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    border-left: 3px solid #6B7280;
}

.success-stakes {
    background: #FAFAFA;
    border: 1px solid #C5A572;
    border-left: 3px solid #C5A572;
}

.stakes-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.failure-stakes .stakes-title {
    color: #4a4a4a;
}

.success-stakes .stakes-title {
    color: #0A1F44;
}

.stakes-list {
    list-style: none;
    padding: 0;
}

.stakes-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: #1a1a1a;
}

.failure-stakes li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: #6B7280;
    font-weight: bold;
}

.success-stakes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C5A572;
    font-weight: bold;
}

.score-section {
    margin-top: 24px;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.score-label {
    width: 200px;
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 500;
    flex-shrink: 0;
}

.score-bar-container {
    flex: 1;
    height: 8px;
    background: #E5E7EB;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.score-bar {
    height: 100%;
    background: linear-gradient(90deg, #C5A572 0%, #8B7355 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: transparent;
    font-weight: 600;
    font-size: 11px;
    transition: width 1s ease;
    position: relative;
}

.score-bar::after {
    content: attr(data-score);
    position: absolute;
    right: -48px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.cta-card {
    background: white;
    border-radius: 0;
    padding: 50px 45px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    text-align: center;
    margin-top: 24px;
    border-left: 3px solid #C5A572;
}

.cta-title {
    font-size: 22px;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.cta-subtitle {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 16px 40px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: #0A1F44;
    color: white;
    border: 2px solid #0A1F44;
}

.cta-primary:hover {
    background: #1E3A5F;
    border-color: #1E3A5F;
}

.cta-secondary {
    background: white;
    color: #0A1F44;
    border: 2px solid #0A1F44;
}

.cta-secondary:hover {
    background: #F8F9FA;
}

.cta-footer {
    margin-top: 28px;
    font-size: 12px;
    color: #9CA3AF;
    letter-spacing: 0.5px;
}

/* Contact Form Screen */
.contact-screen {
    display: none;
}

.contact-screen.active {
    display: block;
}

.contact-card {
    background: white;
    border-radius: 0;
    padding: 50px 45px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-top: 8px;
    border-left: 3px solid #C5A572;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.contact-subtitle {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0A1F44;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-label .required {
    color: #C5A572;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #D1D5DB;
    border-radius: 0;
    background: white;
    color: #1a1a1a;
    transition: all 0.2s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #C5A572;
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-optional {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 400;
    margin-left: 4px;
}

.submit-button {
    width: 100%;
    padding: 16px 40px;
    background: #1a5c4d;
    color: white;
    border: 2px solid #1a5c4d;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.submit-button:hover:not(:disabled) {
    background: #0f4a3d;
    border-color: #0f4a3d;
}

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

.privacy-note {
    margin-top: 20px;
    font-size: 12px;
    color: #9CA3AF;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .start-card,
    .question-card,
    .result-card,
    .result-header-card,
    .cta-card {
        padding: 24px 20px;
    }

    .transformation-box,
    .empathy-authority-grid,
    .stakes-grid {
        grid-template-columns: 1fr;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .button-group {
        flex-direction: column-reverse;
    }

    .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
    }
}

/* ===========================
   REPORT PAGES CSS
   =========================== */

/* Fixed Header Menu */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 20px;
}

.fixed-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fixed-header-logo {
    flex-shrink: 0;
}

.fixed-header-logo img {
    height: 40px;
    width: auto;
}

.fixed-header-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
}

.fixed-header-cta {
    padding: 8px 16px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    white-space: nowrap;
}

.fixed-header-cta.primary {
    background: #1a5c4d;
    color: white;
    border: 2px solid #1a5c4d;
}

.fixed-header-cta.primary:hover {
    background: #267159;
    border-color: #267159;
}

.fixed-header-cta.secondary {
    background: white;
    color: #1a5c4d;
    border: 2px solid #1a5c4d;
}

.fixed-header-cta.secondary:hover {
    background: #F8F9FA;
}

/* Early CTA Section */
.early-cta-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 30px 40px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.early-cta-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #1a5c4d;
    margin-bottom: 12px;
}

.early-cta-subtitle {
    font-size: 0.95em;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.early-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.early-cta-button {
    padding: 12px 32px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.early-cta-button.primary {
    background: #1a5c4d;
    color: white;
    border: 2px solid #1a5c4d;
}

.early-cta-button.primary:hover {
    background: #267159;
    border-color: #267159;
}

.early-cta-button.secondary {
    background: white;
    color: #1a5c4d;
    border: 2px solid #1a5c4d;
}

.early-cta-button.secondary:hover {
    background: #F8F9FA;
}

/* Report Logo */
.logo {
    text-align: center;
    margin-bottom: 12px;
    padding: 12px;
}

.logo img {
    max-width: 160px;
    height: auto;
}

/* Report Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Executive Summary Cover */
.cover-page {
    background: linear-gradient(135deg, #1a5c4d 0%, #267159 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border-top: 3px solid #C5A572;
}

.cover-page h1 {
    font-size: 2em;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cover-personalization {
    font-size: 1.1em;
    margin: 20px 0 16px 0;
    font-weight: 500;
    opacity: 0.95;
}

.cover-subtitle {
    font-size: 1em;
    opacity: 0.85;
    margin-bottom: 24px;
}

.cover-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.85em;
    opacity: 0.75;
    letter-spacing: 0.5px;
}

/* Content Sections */
.content-section {
    padding: 35px 40px;
    border-bottom: 1px solid #E0E0E0;
}

.content-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E0E0E0;
}

.section-number {
    background: transparent;
    color: #C5A572;
    border: 2px solid #C5A572;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: 600;
}

.section-title {
    font-size: 1.5em;
    color: #1a5c4d;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Executive Summary */
.executive-summary {
    background: #F8F9FA;
    border-left: 3px solid #C5A572;
    padding: 20px;
    margin: 20px 0;
}

.executive-summary h3 {
    color: #1a5c4d;
    font-size: 1.2em;
    margin-bottom: 12px;
    font-weight: 600;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.summary-card {
    background: white;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.summary-card-title {
    font-weight: 600;
    color: #C5A572;
    margin-bottom: 8px;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.summary-card-value {
    font-size: 1.6em;
    font-weight: bold;
    color: #1a5c4d;
    margin-bottom: 4px;
}

.summary-card-description {
    font-size: 0.85em;
    color: #6c757d;
    line-height: 1.4;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
}

.problem-card {
    background: #FFFFFF;
    padding: 20px;
    border-left: 3px solid #C5A572;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.problem-card.philosophical {
    border-left-color: #1a5c4d;
    background: #F8F9FA;
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.problem-icon {
    font-size: 2em;
}

.problem-type {
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6B7280;
}

.problem-title {
    font-size: 1.15em;
    color: #1a5c4d;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.problem-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.problem-data {
    background: white;
    border: 1px solid #E0E0E0;
    padding: 14px;
    margin-top: 12px;
}

.problem-card.philosophical .problem-data {
    background: white;
}

.data-title {
    font-size: 0.75em;
    font-weight: 600;
    color: #C5A572;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.data-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.data-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4em;
    font-weight: bold;
    color: #1a5c4d;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85em;
    color: #6B7280;
    line-height: 1.3;
}

/* Transformation Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #C5A572;
    color: #C5A572;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1em;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: #F8F9FA;
    padding: 16px;
    border-left: 2px solid #E0E0E0;
}

.timeline-title {
    font-size: 1.1em;
    color: #1a5c4d;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.timeline-description {
    font-size: 0.95em;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Framework Steps */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.framework-step {
    background: white;
    border-left: 3px solid #E0E0E0;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.framework-step:hover {
    border-left-color: #C5A572;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid #C5A572;
    color: #C5A572;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1em;
    font-weight: 600;
    color: #1a5c4d;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.step-description {
    font-size: 0.85em;
    color: #4a4a4a;
    line-height: 1.5;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(135deg, #1a5c4d 0%, #267159 100%);
    color: white;
    padding: 30px;
    margin: 20px 0;
    border-top: 2px solid #C5A572;
}

.roi-title {
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.roi-metric {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid rgba(197, 165, 114, 0.3);
}

.roi-value {
    font-size: 1.8em;
    font-weight: bold;
    color: #C5A572;
    margin-bottom: 8px;
}

.roi-label {
    font-size: 0.85em;
    opacity: 0.85;
    line-height: 1.4;
}

/* Stakes Section */
.stakes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.stake-card {
    padding: 20px;
}

.stake-card.failure {
    background: white;
    border: 1px solid #D1D5DB;
    border-left: 3px solid #6B7280;
}

.stake-card.success {
    background: #FAFAFA;
    border: 1px solid #C5A572;
    border-left: 3px solid #C5A572;
}

.stake-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stake-icon {
    font-size: 1.6em;
}

.stake-title {
    font-size: 1em;
    font-weight: 600;
    color: #1a5c4d;
    letter-spacing: -0.2px;
}

.stake-list {
    list-style: none;
    padding: 0;
}

.stake-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.85em;
    line-height: 1.6;
    color: #1a1a1a;
}

.stake-card.failure .stake-list li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: #6B7280;
    font-weight: bold;
}

.stake-card.success .stake-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C5A572;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 30px;
    text-align: center;
    border-left: 3px solid #C5A572;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cta-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #1a5c4d;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.cta-subtitle {
    font-size: 0.95em;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 32px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #1a5c4d;
    color: white;
    border: 2px solid #1a5c4d;
}

.cta-button.primary:hover {
    background: #267159;
    border-color: #267159;
}

.cta-button.secondary {
    background: white;
    color: #1a5c4d;
    border: 2px solid #1a5c4d;
}

.cta-button.secondary:hover {
    background: #F8F9FA;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.8em;
    color: #6B7280;
    line-height: 1.6;
}

/* Scores Display */
.scores-section {
    margin-top: 20px;
}

.score-item {
    margin-bottom: 20px;
}

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.score-label {
    font-size: 0.9em;
    color: #4a4a4a;
    font-weight: 500;
}

.score-value {
    font-size: 1.1em;
    font-weight: 600;
    color: #1a5c4d;
}

.score-bar-container {
    height: 6px;
    background: #E5E7EB;
    overflow: hidden;
    position: relative;
}

.score-bar {
    height: 100%;
    background: linear-gradient(90deg, #C5A572 0%, #8B7355 100%);
    transition: width 1s ease;
}

/* Report Responsive Overrides */
@media (max-width: 768px) {
    .fixed-header-content {
        flex-direction: column;
        gap: 10px;
    }

    .fixed-header-logo img {
        height: 30px;
    }

    .fixed-header-ctas {
        width: 100%;
        justify-content: center;
    }

    .fixed-header-cta {
        padding: 6px 12px;
        font-size: 0.75em;
    }

    .early-cta-section {
        padding: 20px 16px;
    }

    .early-cta-buttons {
        flex-direction: column;
    }

    .early-cta-button {
        width: 100%;
    }

    .cover-page {
        padding: 30px 20px;
    }

    .cover-page h1 {
        font-size: 1.5em;
    }

    .content-section {
        padding: 20px 16px;
    }

    .section-title {
        font-size: 1.2em;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .stakes-container {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}
