/* ==========================================================================
   Invincible Company Microsite - Shared Styles
   ========================================================================== */

/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */

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

body {
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
    color: #2d2d2d;
    line-height: 1.7;
}

/* ==========================================================================
   Navigation (Shared across all pages)
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1rem;
    color: #492D5E;
}

.nav-brand span {
    color: #F26422;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #F26422;
}

/* Hamburger Menu Button - Hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #492D5E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .nav-brand {
        font-size: 0.85rem;
        flex: 1;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 10px 0;
    }

    .nav-links a {
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.95rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: #faf8f5;
    }
}

/* ==========================================================================
   Page Layout & Structure
   ========================================================================== */

.page {
    min-height: 100vh;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* ==========================================================================
   Headers
   ========================================================================== */

.header {
    background: linear-gradient(135deg, #492D5E 0%, #5d3d73 100%);
    padding: 140px 40px 80px;
    text-align: center;
}

.header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
}

.header h1 span {
    color: #F26422;
    font-weight: 600;
}

.header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.header .subtitle {
    font-size: 1.3rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Cover Page (index.html) */
.cover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #492D5E 0%, #5d3d73 100%);
}

.cover h1 {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cover h1 span {
    font-weight: 700;
    color: #F26422;
}

.cover .subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 60px;
}

.cover .credit {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 100px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section-header {
    margin-bottom: 60px;
}

.section-number {
    font-size: 0.9rem;
    color: #492D5E;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-desc,
.shift-subtitle,
.risk-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    color: #888;
    max-width: 700px;
}

/* ==========================================================================
   Canvas Components
   ========================================================================== */

.canvas-container {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.canvas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 0.8fr;
    gap: 3px;
    background: #444444;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

.canvas-block {
    background: #f8f6fa;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.canvas-block:hover {
    background: #e8e8e8;
}

.canvas-block h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
}

.canvas-block p {
    font-size: 0.85rem;
    color: #999;
}

/* Canvas Block Positions */
.block-kp { grid-column: 1; grid-row: 1 / 3; }
.block-ka { grid-column: 2; grid-row: 1; }
.block-kr { grid-column: 2; grid-row: 2; }
.block-vp { grid-column: 3; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.block-cr { grid-column: 4; grid-row: 1; }
.block-ch { grid-column: 4; grid-row: 2; }
.block-cs { grid-column: 5; grid-row: 1 / 3; }
.block-cost { grid-column: 1 / 3; grid-row: 3; }
.block-rev { grid-column: 4 / 6; grid-row: 3; }

.block-vp h3 {
    font-size: 1rem;
}

/* Zone Labels */
.zone-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zone-backstage { background: #f5faf8; color: #8CB84D; }
.zone-frontstage { background: #faf8f5; color: #F26422; }
.zone-profit { background: #f8f5fa; color: #E37E9B; }

/* ==========================================================================
   Three Zones Diagram
   ========================================================================== */

.zones-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.zone-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.zone-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-card .zone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.zone-card.backstage .zone-dot { background: #8CB84D; }
.zone-card.frontstage .zone-dot { background: #F26422; }
.zone-card.profit .zone-dot { background: #E37E9B; }

.zone-card ul {
    list-style: none;
    margin-top: 20px;
}

.zone-card li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #888;
}

.zone-card li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Shift Cards (Index + 12 Shifts page)
   ========================================================================== */

.shifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.shift-card {
    box-shadow: 0 2px 8px rgba(73, 45, 94, 0.08);
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.shift-card:hover {
    border-color: #F26422;
    transform: translateY(-2px);
}

.shift-card .shift-number {
    font-size: 0.7rem;
    color: #F26422;
    margin-bottom: 10px;
}

.shift-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.shift-card .shift-arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 0.85rem;
}

.shift-card .from {
    color: #666;
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 6px;
}

.shift-card .arrow {
    color: #F26422;
}

.shift-card .to {
    color: #2d2d2d;
    padding: 6px 12px;
    background: #ffffff;
    border-radius: 6px;
}

.shift-card .affected {
    font-size: 0.75rem;
    color: #555;
    margin-top: 15px;
}

.shift-card .affected span {
    display: inline-block;
    padding: 3px 8px;
    background: #ffffff;
    border-radius: 4px;
    margin: 2px;
}

/* ==========================================================================
   Design-Test Loop
   ========================================================================== */

.loop-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

.loop-diagram {
    position: relative;
    width: 500px;
    height: 500px;
}

.loop-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loop-outer {
    width: 100%;
    height: 100%;
    border: 3px solid #e8e8e8;
}

.loop-design {
    width: 200px;
    height: 200px;
    background: #f5f8f5;
    border: 2px solid #8CB84D;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.loop-test {
    width: 200px;
    height: 200px;
    background: #f8f5f2;
    border: 2px solid #F26422;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.loop-circle h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.loop-circle p {
    font-size: 0.75rem;
    color: #888;
    max-width: 120px;
}

.loop-design h4 { color: #8CB84D; }
.loop-test h4 { color: #F26422; }

.loop-arrow {
    position: absolute;
    font-size: 2rem;
    color: #444444;
}

.arrow-down { right: 60px; top: 50%; transform: translateY(-50%); }
.arrow-up { left: 60px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Risk Cards
   ========================================================================== */

.risks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.risk-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.risk-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.risk-card:nth-child(1) .risk-icon { background: #f5f7fa; }
.risk-card:nth-child(2) .risk-icon { background: #f5faf8; }
.risk-card:nth-child(3) .risk-icon { background: #faf8f5; }
.risk-card:nth-child(4) .risk-icon { background: #f8f5fa; }

.risk-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.risk-card p {
    font-size: 0.85rem;
    color: #666;
}

/* ==========================================================================
   Flow Diagram
   ========================================================================== */

.flow-container {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.flow-step::after {
    content: '\2192';
    position: absolute;
    right: -10px;
    top: 30px;
    color: #444444;
    font-size: 1.5rem;
}

.flow-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F26422;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.flow-step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================================================
   Mini Canvas Transformations
   ========================================================================== */

.transform-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.mini-canvas {
    width: 300px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.mini-canvas h5 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 30px);
    gap: 2px;
}

.mini-block {
    background: #f5f5f5;
    border-radius: 2px;
}

.mini-block.highlight {
    background: #F26422;
}

.mini-block.highlight-green {
    background: #8CB84D;
}

.mini-block.highlight-purple {
    background: #E37E9B;
}

.transform-arrow {
    font-size: 3rem;
    color: #444444;
}

/* ==========================================================================
   Page Break
   ========================================================================== */

.page-break {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-break span {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #444444, transparent);
}

/* ==========================================================================
   Summary Grid
   ========================================================================== */

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.summary-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    border-left: 3px solid #F26422;
}

.summary-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.summary-card p {
    color: #888;
    font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    text-align: center;
    padding: 60px 0;
    color: #444;
    font-size: 0.85rem;
}

.footer a {
    color: #F26422;
    text-decoration: none;
}

/* ==========================================================================
   12 Transformation Shifts Page Specific
   ========================================================================== */

/* Category Headers */
.category {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 20px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.category-dot.vp { background: #F26422; }
.category-dot.front { background: #F26422; }
.category-dot.back { background: #8CB84D; }
.category-dot.profit { background: #E37E9B; }

.category h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.category > p {
    color: #666;
    font-size: 1rem;
    margin-left: 27px;
}

/* Shift Detail Cards */
.shift {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.shift > .shift-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.shift-header {
    padding: 40px;
    border-bottom: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.shift-number {
    font-size: 0.8rem;
    color: #F26422;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.shift-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.shift-arrow-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.shift-from {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #888;
    font-size: 0.95rem;
}

.shift-to {
    padding: 10px 20px;
    background: #f8f5f2;
    border-radius: 8px;
    color: #F26422;
    font-size: 0.95rem;
    border: 1px solid #F26422;
}

.arrow-icon {
    color: #444;
    font-size: 1.5rem;
}

.shift-desc {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
}

/* Mini Canvas Container */
.mini-canvas-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
}

.mini-canvas-label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

/* Block positions for mini canvas */
.b-kp { grid-column: 1; grid-row: 1 / 3; }
.b-ka { grid-column: 2; grid-row: 1; }
.b-kr { grid-column: 2; grid-row: 2; }
.b-vp { grid-column: 3; grid-row: 1 / 3; }
.b-cr { grid-column: 4; grid-row: 1; }
.b-ch { grid-column: 4; grid-row: 2; }
.b-cs { grid-column: 5; grid-row: 1 / 3; }
.b-cost { grid-column: 1 / 3; grid-row: 3; }
.b-rev { grid-column: 4 / 6; grid-row: 3; }

.mini-block.active {
    background: #F26422;
}

.mini-block.active-green {
    background: #8CB84D;
}

.mini-block.active-orange {
    background: #F26422;
}

.mini-block.active-purple {
    background: #E37E9B;
}

.canvas-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.legend-item {
    font-size: 0.7rem;
    color: #555;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 4px;
}

.legend-item.highlighted {
    color: #F26422;
    background: #f8f5f2;
}

/* Shift Body */
.shift-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e8e8e8;
}

.shift-section {
    padding: 35px 40px;
    background: #f8f8f8;
}

.shift-section h4 {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.shift-section p {
    color: #999;
    font-size: 0.95rem;
}

.shift-section ul {
    list-style: none;
}

.shift-section li {
    color: #999;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 20px;
    position: relative;
}

.shift-section li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #F26422;
}

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

/* Example Section */
.example {
    grid-column: 1 / -1;
    background: #fafafa;
    padding: 40px;
    border-top: 1px solid #e8e8e8;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.example-badge {
    background: #F26422;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.example-company {
    font-size: 1.5rem;
    font-weight: 400;
}

.example-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.example-story {
    color: #888;
    font-size: 0.95rem;
}

.example-story p {
    margin-bottom: 15px;
}

.example-story strong {
    color: #ccc;
}

.example-stats {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.stat {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.stat:last-child {
    border-bottom: none;
}

.stat-value {
    font-size: 2rem;
    font-weight: 300;
    color: #F26422;
}

.stat-label {
    font-size: 0.8rem;
    color: #555;
    margin-top: 5px;
}

/* Questions Section */
.questions {
    padding: 35px 40px;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
}

.questions h4 {
    font-size: 0.8rem;
    color: #F26422;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.question-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.question {
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 8px;
    color: #888;
    font-size: 0.9rem;
    border-left: 3px solid #444444;
}

.question:hover {
    border-left-color: #F26422;
}

/* Table of Contents */
.toc {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.toc-item {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #2d2d2d;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.toc-item:hover {
    border-color: #F26422;
    transform: translateY(-2px);
}

.toc-number {
    font-size: 0.7rem;
    color: #F26422;
    margin-bottom: 8px;
}

.toc-name {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.toc-category {
    font-size: 0.75rem;
    color: #555;
}

.back-to-top {
    display: inline-block;
    margin-top: 20px;
    color: #F26422;
    text-decoration: none;
    font-size: 0.9rem;
}

/* ==========================================================================
   Four Risks Page Specific
   ========================================================================== */

.risk-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.risk-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.risk-badge.desirability { background: #faf8f5; }
.risk-badge.feasibility { background: #f5faf8; }
.risk-badge.viability { background: #f8f5fa; }
.risk-badge.adaptability { background: #f5f8fa; }

.risk-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    border-bottom: 1px solid #e8e8e8;
}

.risk-section:last-of-type {
    border-bottom: none;
}

.risk-title {
    font-size: 2rem;
    font-weight: 300;
}

.risk-title.desirability { color: #F26422; }
.risk-title.feasibility { color: #8CB84D; }
.risk-title.viability { color: #E37E9B; }
.risk-title.adaptability { color: #3C87B8; }

.risk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.risk-questions {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
}

.risk-questions h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 20px;
}

.risk-questions ul {
    list-style: none;
}

.risk-questions li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.95rem;
}

.risk-questions li:last-child {
    border-bottom: none;
}

.testing-methods h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 20px;
}

.method-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.method-card h5 {
    font-size: 0.95rem;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.method-card p {
    font-size: 0.85rem;
    color: #888;
}

.method-card .strength {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.7rem;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #555;
}

/* ==========================================================================
   Canvas Transformations Page Specific
   ========================================================================== */

.transformation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    border-bottom: 1px solid #e8e8e8;
}

.transformation:last-of-type {
    border-bottom: none;
}

.transformation-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
}

.transformation-number {
    font-size: 0.75rem;
    color: #F26422;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.transformation-title {
    font-size: 1.8rem;
    font-weight: 300;
}

.canvas-comparison {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
}

.comparison-arrow {
    text-align: center;
    font-size: 2rem;
    color: #F26422;
}

.mini-canvas-wrapper {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
}

.mini-canvas-title {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.mini-canvas-title.after {
    color: #F26422;
}

/* Block positions for case study canvas */
.mb-kp { grid-column: 1; grid-row: 1 / 3; }
.mb-ka { grid-column: 2; grid-row: 1; }
.mb-kr { grid-column: 2; grid-row: 2; }
.mb-vp { grid-column: 3; grid-row: 1 / 3; }
.mb-cr { grid-column: 4; grid-row: 1; }
.mb-ch { grid-column: 4; grid-row: 2; }
.mb-cs { grid-column: 5; grid-row: 1 / 3; }
.mb-cost { grid-column: 1 / 3; grid-row: 3; }
.mb-rev { grid-column: 4 / 6; grid-row: 3; }

.mini-block.changed {
    background: #F26422;
    color: #ffffff;
    font-weight: 600;
}

.changes-list {
    margin-top: 30px;
}

.changes-list h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 15px;
}

.change-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.change-item:last-child {
    border-bottom: none;
}

.change-block {
    font-size: 0.85rem;
    color: #F26422;
    font-weight: 500;
}

.change-desc {
    font-size: 0.9rem;
    color: #888;
}

/* ==========================================================================
   Method in Practice Page Specific
   ========================================================================== */

.phase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    border-bottom: 1px solid #e8e8e8;
}

.phase:last-of-type {
    border-bottom: none;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.phase-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F26422;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.phase-title {
    font-size: 1.8rem;
    font-weight: 300;
}

.phase-duration {
    font-size: 0.8rem;
    color: #555;
    margin-left: auto;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
}

.phase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.phase-activities {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
}

.phase-activities h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 20px;
}

.phase-activities ul {
    list-style: none;
}

.phase-activities li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
}

.phase-activities li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #8CB84D;
}

.phase-activities li:last-child {
    border-bottom: none;
}

.phase-outputs h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 20px;
}

.output-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid #F26422;
}

.output-card h5 {
    font-size: 0.95rem;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.output-card p {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   Process & Costs Page Specific
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.pricing-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #F26422;
}

.pricing-card.featured {
    border-color: #F26422;
    background: linear-gradient(135deg, #fafafa, #f8f5f2);
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 300;
    color: #F26422;
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #888;
}

.pricing-card .description {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.9rem;
    padding-left: 25px;
    position: relative;
}

.pricing-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #8CB84D;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #F26422;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #d85515;
}

.process-timeline {
    margin: 60px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-week {
    font-size: 0.8rem;
    color: #F26422;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #888;
    font-size: 0.9rem;
}

/* ==========================================================================
   Cordstrap Case Study Page Specific
   ========================================================================== */

.company-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f5f8fa, #f5f7fa);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #3C87B8;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

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

.header-stat .value {
    font-size: 2rem;
    font-weight: 300;
    color: #F26422;
}

.header-stat .label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #492D5E, #F26422, #8CB84D, #E37E9B, #3C87B8);
}

/* Stage */
.stage {
    position: relative;
    margin-bottom: 80px;
}

.stage-marker {
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F26422;
    border: 3px solid #ffffff;
}

.stage-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 25px;
}

.stage-number {
    font-size: 0.75rem;
    color: #F26422;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stage-title {
    font-size: 1.8rem;
    font-weight: 300;
}

.stage-duration {
    font-size: 0.8rem;
    color: #555;
    margin-left: auto;
}

.stage-intro {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #e8e8e8;
}

/* Content Blocks */
.content-block {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.content-block h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.content-block p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Canvas for case study */
.canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.canvas-title {
    font-size: 1.1rem;
    font-weight: 400;
}

.canvas-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.canvas-label.before {
    background: #f5f5f5;
    color: #666;
}

.canvas-label.after {
    background: #faf8f5;
    color: #F26422;
}

/* Case study canvas grid */
.cb-kp { grid-column: 1 / 3; grid-row: 1 / 3; }
.cb-ka { grid-column: 3 / 5; grid-row: 1; }
.cb-kr { grid-column: 3 / 5; grid-row: 2; }
.cb-vp { grid-column: 5 / 7; grid-row: 1 / 3; }
.cb-cr { grid-column: 7 / 9; grid-row: 1; }
.cb-ch { grid-column: 7 / 9; grid-row: 2; }
.cb-cs { grid-column: 9 / 11; grid-row: 1 / 3; }
.cb-cost { grid-column: 1 / 5; grid-row: 3; }
.cb-rev { grid-column: 7 / 11; grid-row: 3; }

.canvas-block.changed {
    background: #f8f6fa;
    border: 1px solid #F26422;
}

.canvas-block.changed h5 {
    color: #F26422;
}

.canvas-block.changed ul {
    color: #999;
}

.canvas-block h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 10px;
}

.canvas-block ul {
    list-style: none;
    font-size: 0.8rem;
    color: #888;
}

.canvas-block li {
    padding: 3px 0;
}

/* Hypothesis Cards */
.hypothesis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hypothesis-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border-left: 3px solid #444444;
}

.hypothesis-card.desirability { border-left-color: #F26422; }
.hypothesis-card.feasibility { border-left-color: #8CB84D; }
.hypothesis-card.viability { border-left-color: #E37E9B; }
.hypothesis-card.adaptability { border-left-color: #3C87B8; }

.hypothesis-card .risk-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hypothesis-card.desirability .risk-type { color: #F26422; }
.hypothesis-card.feasibility .risk-type { color: #8CB84D; }
.hypothesis-card.viability .risk-type { color: #E37E9B; }
.hypothesis-card.adaptability .risk-type { color: #3C87B8; }

.hypothesis-card .hypothesis-text {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.hypothesis-card .result {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hypothesis-card .result-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-badge.validated {
    background: #f5f8f5;
    color: #8CB84D;
}

.result-badge.invalidated {
    background: #f8f5f2;
    color: #F26422;
}

.result-badge.partial {
    background: #f8f8f5;
    color: #B390F1;
}

.hypothesis-card .result-detail {
    font-size: 0.75rem;
    color: #555;
}

/* Evidence Table */
.evidence-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.evidence-table th {
    text-align: left;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    padding: 10px;
}

.evidence-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
    color: #888;
    border-bottom: 1px solid #e0e0e0;
}

.evidence-table td:last-child {
    text-align: right;
}

.evidence-table .metric {
    color: #F26422;
    font-weight: 500;
}

/* Milestone */
.milestone {
    background: linear-gradient(135deg, #fafafa, #fafafa);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.milestone h4 {
    font-size: 0.85rem;
    color: #F26422;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone h4::before {
    content: '\25C6';
}

.milestone p {
    color: #888;
    font-size: 0.95rem;
}

/* Pilot Stats */
.pilot-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.pilot-stat {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.pilot-stat .value {
    font-size: 1.8rem;
    font-weight: 300;
    color: #F26422;
    margin-bottom: 5px;
}

.pilot-stat .label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote */
.quote {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    border-left: 3px solid #3C87B8;
}

.quote p {
    font-size: 1.1rem;
    color: #999;
    font-style: italic;
    margin-bottom: 15px;
}

.quote .attribution {
    font-size: 0.85rem;
    color: #555;
}

/* Shift Badges */
.shifts-applied {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.shift-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    background: #f5f5f5;
    color: #888;
}

.shift-badge.primary {
    background: #F26422;
    color: #ffffff;
    font-weight: 600;
}

.shift-badge.secondary {
    background: #f5f5f5;
    color: #ccc;
}

/* Outcome Section */
.outcome-section {
    background: linear-gradient(135deg, #f5f5f5, #fafafa);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #f5f8fa;
}

.outcome-section h3 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.outcome-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.outcome-card .metric {
    font-size: 2.5rem;
    font-weight: 300;
    color: #F26422;
    margin-bottom: 10px;
}

.outcome-card .label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.outcome-card .context {
    font-size: 0.75rem;
    color: #555;
}

/* Lessons */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.lesson {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.lesson h5 {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
}

.lesson p {
    font-size: 0.85rem;
    color: #666;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #444444, transparent);
    margin: 60px 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 900px) {
    .shifts-grid,
    .zones-diagram,
    .risks-grid {
        grid-template-columns: 1fr;
    }

    .canvas-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .canvas-block {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .flow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .flow-step::after {
        display: none;
    }

    .shift-header {
        grid-template-columns: 1fr;
    }

    .shift-body {
        grid-template-columns: 1fr;
    }

    .example-content {
        grid-template-columns: 1fr;
    }

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

    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        padding: 15px 20px;
    }

    .header, .category, .shift {
        padding-left: 20px;
        padding-right: 20px;
    }

    .risk-content {
        grid-template-columns: 1fr;
    }

    .canvas-comparison {
        grid-template-columns: 1fr;
    }

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

    .phase-content {
        grid-template-columns: 1fr;
    }

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

    .hypothesis-grid,
    .outcome-grid,
    .lessons-grid {
        grid-template-columns: 1fr;
    }

    .pilot-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-stats {
        flex-direction: column;
        gap: 20px;
    }

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

@media (max-width: 600px) {
    .toc-grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    .header {
        padding: 100px 20px 50px;
    }

    .cover h1 {
        font-size: 2rem;
    }

    .content {
        padding: 30px 15px;
    }

    .page {
        padding: 40px 15px;
    }

    /* Canvas blocks on mobile */
    .canvas-container {
        padding: 20px;
        margin: 20px 0;
    }

    .canvas-block h3 {
        font-size: 0.9rem;
    }

    .canvas-block ul {
        font-size: 0.8rem;
    }

    /* Mini canvas adjustments */
    .mini-canvas {
        width: 100%;
        min-width: 200px;
    }

    .mini-grid {
        grid-template-rows: repeat(3, 25px);
    }

    /* Intro canvas adjustments */
    .canvas-full {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .canvas-full .canvas-block {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* Transformation sections */
    .transformation-title {
        font-size: 1.3rem;
    }

    .transformation-subtitle {
        font-size: 0.95rem;
    }

    /* Block changes */
    .block-changes {
        grid-template-columns: 1fr;
    }

    .block-change {
        padding: 15px;
    }

    /* Example sections */
    .example-section {
        padding: 20px;
    }

    .example-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .example-industry {
        margin-left: 0;
    }

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

    /* Risk sections */
    .risk-header h2 {
        font-size: 1.5rem;
    }

    .evidence-bars {
        flex-direction: column;
        gap: 15px;
    }

    .evidence-bar {
        width: 100%;
    }

    /* Shift cards */
    .shift {
        padding: 20px;
    }

    .shift-number {
        font-size: 2rem;
    }

    .shift-title {
        font-size: 1.1rem;
    }

    /* Pricing and process */
    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .phase {
        padding: 25px 20px;
    }

    /* Stats */
    .pilot-stats {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 2rem;
    }

    /* Footer */
    .footer {
        padding: 40px 20px;
    }

    /* Intro section */
    .intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-canvas {
        padding: 20px;
    }

    /* Canvas comparison */
    .canvas-state {
        padding: 15px;
    }

    .canvas-comparison {
        gap: 15px;
    }

    /* Key insight */
    .key-insight {
        padding: 20px;
    }

    /* TOC */
    .toc {
        padding: 20px;
    }

    .toc-item {
        padding: 12px 15px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .nav-brand {
        font-size: 0.75rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .canvas-full {
        grid-template-columns: 1fr;
    }

    .transformation-title {
        font-size: 1.2rem;
    }
}

/* ============================================
   METHOD IN PRACTICE PAGE STYLES
   ============================================ */

/* Process Overview */
.process-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 16px;
    position: relative;
}

.process-overview::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(to right, #F26422, #F26422, #F26422, #444444, #444444);
    z-index: 0;
}

.process-step-mini {
    text-align: center;
    z-index: 1;
    background: #f8f8f8;
    padding: 0 15px;
}

.process-step-mini .step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-step-mini.brief .step-num {
    background: #f5f5f5;
    border: 2px solid #444444;
    color: #666;
}

.process-step-mini.detailed .step-num {
    background: #F26422;
    color: #ffffff;
}

.process-step-mini .step-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step-mini.detailed .step-label {
    color: #F26422;
}

/* Stage Sections */
.stage {
    margin-bottom: 80px;
    scroll-margin-top: 80px;
}

.stage-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.stage-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.stage-subtitle {
    color: #888;
    font-size: 1rem;
}

.stage-duration {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
}

.stage.detailed .stage-duration {
    background: #faf8f5;
    color: #F26422;
}

.stage.brief .stage-number {
    background: #f5f5f5;
    border: 2px solid #444444;
    color: #555;
}

.stage.detailed .stage-number {
    background: #F26422;
    color: #ffffff;
}

/* Brief Stage Content */
.brief-content {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    border-left: 3px solid #444444;
}

.brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.brief-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 12px;
}

.brief-section ul {
    list-style: none;
}

.brief-section li {
    padding: 8px 0;
    color: #888;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
}

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

/* Detailed Stage Content */
.detailed-content {
    background: #fafafa;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.phase {
    margin-bottom: 50px;
}

.phase:last-child {
    margin-bottom: 0;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.phase-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F26422;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.phase-title {
    font-size: 1.2rem;
    font-weight: 400;
}

.phase-duration {
    margin-left: auto;
    font-size: 0.75rem;
    color: #666;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 10px;
}

/* Work Items */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.work-item {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
}

.work-item h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #333;
}

.work-item p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.work-item .output {
    font-size: 0.75rem;
    color: #F26422;
    background: #fafafa;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.work-item .output::before {
    content: '→ ';
}

.work-item.full {
    grid-column: 1 / -1;
}

/* Outcome Box */
.outcome-box {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
    border-left: 3px solid #8CB84D;
}

.outcome-box h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8CB84D;
    margin-bottom: 15px;
}

.outcome-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #888;
}

.outcome-item::before {
    content: '✓';
    color: #8CB84D;
    font-weight: bold;
}

/* Decision Gate */
.decision-gate {
    background: linear-gradient(135deg, #fafafa, #fafafa);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid #e0e0e0;
}

.decision-gate h4 {
    font-size: 0.85rem;
    color: #F26422;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.decision-gate h4::before {
    content: '⬥';
}

.decision-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.decision-option {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.decision-option .label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.decision-option .action {
    font-size: 0.9rem;
    color: #333;
}

.decision-option.go .action { color: #8CB84D; }
.decision-option.pivot .action { color: #F26422; }
.decision-option.stop .action { color: #E37E9B; }

/* Example Box */
.example-box {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.example-box h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E37E9B;
    margin-bottom: 15px;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.example-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
}

.example-item .context {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 8px;
}

.example-item .hypothesis {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Template Section */
.template {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
}

.template-label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.template-content {
    font-size: 0.9rem;
    color: #888;
    line-height: 2;
}

.template-content .blank {
    background: #f5f5f5;
    padding: 2px 15px;
    border-radius: 4px;
    color: #F26422;
    margin: 0 3px;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #444444, transparent);
    margin: 60px 0;
}

/* Context Box */
.context-box {
    background: linear-gradient(135deg, #f5f5f5, #fafafa);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
}

.context-box h3 {
    font-size: 1rem;
    color: #3C87B8;
    margin-bottom: 20px;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.context-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.context-item .label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.context-item .value {
    font-size: 0.95rem;
    color: #888;
}

/* ============================================
   PROCESS & COSTS PAGE STYLES
   ============================================ */

/* Process Flow Section */
.process-section {
    margin-bottom: 80px;
}

/* Process Flow Visual */
.process-flow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.process-stage {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.process-stage::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #F26422;
}

.process-stage:last-child::after {
    display: none;
}

.stage-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #F26422;
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.stage-name {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

.stage-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.stage-activities {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.stage-activities h5 {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.activity-list {
    list-style: none;
}

.activity-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.activity-list li::before {
    content: '•';
    color: #F26422;
    font-weight: bold;
}

.stage-outputs {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    border-left: 3px solid #8CB84D;
}

.stage-outputs h5 {
    font-size: 0.7rem;
    color: #8CB84D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.output-list {
    list-style: none;
}

.output-list li {
    padding: 4px 0;
    font-size: 0.8rem;
    color: #888;
}

.output-list li::before {
    content: '✓ ';
    color: #8CB84D;
}

/* Later Stages */
.later-stages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.later-stage {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.later-stage .stage-badge {
    background: #888;
}

.later-stage .stage-name {
    font-size: 1.2rem;
}

/* Costs Section */
.costs-section {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
}

.costs-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-align: center;
}

.costs-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 1rem;
}

.costs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cost-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.cost-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cost-block-title {
    font-size: 1.2rem;
    font-weight: 400;
}

.cost-block-total {
    text-align: right;
}

.cost-block-total .amount {
    font-size: 1.8rem;
    font-weight: 300;
    color: #F26422;
}

.cost-block-total .label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cost-line-items {
    margin-bottom: 20px;
}

.cost-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cost-line:last-child {
    border-bottom: none;
}

.cost-line .item {
    display: flex;
    flex-direction: column;
}

.cost-line .item-name {
    font-size: 0.95rem;
    color: #333;
}

.cost-line .item-desc {
    font-size: 0.8rem;
    color: #888;
}

.cost-line .item-cost {
    font-size: 1rem;
    color: #F26422;
    font-weight: 500;
}

.cost-note {
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    border-left: 3px solid #F26422;
}

/* Total Summary */
.total-summary {
    background: linear-gradient(135deg, #492D5E, #5d3d73);
    border-radius: 16px;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    margin-top: 40px;
}

.total-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 10px;
}

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

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

.total-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: #F26422;
}

.total-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Process Visual Diagram */
.process-diagram {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid #e0e0e0;
}

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

.diagram-header h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
}

.diagram-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
}

.diagram-flow::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(to right, #F26422, #F26422, #F26422, #888, #888);
}

.diagram-step {
    text-align: center;
    width: 18%;
    position: relative;
}

.diagram-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.diagram-step.active .diagram-icon {
    background: #F26422;
    color: #ffffff;
}

.diagram-step.future .diagram-icon {
    background: #f5f5f5;
    border: 2px solid #888;
    color: #888;
}

.diagram-step-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.diagram-step.active .diagram-step-name {
    color: #F26422;
}

.diagram-step.future .diagram-step-name {
    color: #888;
}

.diagram-step-timing {
    font-size: 0.75rem;
    color: #888;
}

/* Deliverables Section */
.deliverables-section {
    margin: 60px 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.deliverable-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.deliverable-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #faf8f5, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.deliverable-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.deliverable-desc {
    font-size: 0.9rem;
    color: #888;
}

.deliverable-count {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #F26422;
}

.deliverable-count span {
    font-size: 0.8rem;
    color: #888;
}

/* Responsive for Method in Practice */
@media (max-width: 900px) {
    .process-overview {
        flex-direction: column;
        gap: 20px;
    }

    .process-overview::after {
        display: none;
    }

    .brief-grid,
    .work-grid,
    .outcome-list,
    .decision-options,
    .example-content,
    .context-grid {
        grid-template-columns: 1fr;
    }

    .stage-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive for Process & Costs */
@media (max-width: 1000px) {
    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-stage::after {
        display: none;
    }

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

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

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

    .diagram-flow {
        flex-direction: column;
        gap: 30px;
    }

    .diagram-flow::before {
        display: none;
    }

    .diagram-step {
        width: 100%;
    }

    .later-stages {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CANVAS TRANSFORMATIONS PAGE STYLES
   ============================================ */

/* Intro Section */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.intro-text p {
    color: #888;
    font-size: 1rem;
    margin-bottom: 15px;
}

.intro-canvas {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
}

.intro-canvas-label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

/* Full Canvas Grid */
.canvas-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 50px);
    gap: 4px;
}

/* Canvas block styles for canvas-full (intro canvas with abbreviated labels) */
.canvas-full .canvas-block {
    background: #f8f6fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 0;
    min-height: auto;
}

/* Zone colors */
.zone-back { border-left: 3px solid #8CB84D; }
.zone-front { border-left: 3px solid #F26422; }
.zone-value { border-left: 3px solid #F26422; }
.zone-profit { border-left: 3px solid #E37E9B; }

.canvas-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #666;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.legend-dot.back { background: #8CB84D; }
.legend-dot.front { background: #F26422; }
.legend-dot.value { background: #F26422; }
.legend-dot.profit { background: #E37E9B; }

/* Transformation Section */
.transformation {
    margin-bottom: 100px;
    scroll-margin-top: 80px;
}

.transformation-header {
    margin-bottom: 40px;
}

.transformation-number {
    font-size: 0.75rem;
    color: #F26422;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.transformation-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.transformation-subtitle {
    color: #888;
    font-size: 1.1rem;
}

/* Canvas Comparison */
.canvas-comparison {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.canvas-state {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 25px;
}

.canvas-state-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.canvas-state.before .canvas-state-label { color: #666; }
.canvas-state.after .canvas-state-label { color: #F26422; }

.comparison-arrow {
    text-align: center;
    font-size: 2rem;
    color: #444444;
}

/* Mini canvas for comparison (canvas-comparison pages only) */
.canvas-comparison .mini-canvas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 35px);
    gap: 3px;
}

/* Mini canvas for shift headers (12 Shifts page) */
.mini-canvas-container .mini-canvas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 35px);
    gap: 3px;
}

/* Mini canvas for risk cards (Four Risks page) */
.canvas-highlight .mini-canvas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 35px);
    gap: 3px;
}

.mini-block {
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #444;
    transition: all 0.3s;
}

.mini-block.highlight {
    background: #F26422;
    color: #ffffff;
    font-weight: 600;
}

.mini-block.highlight-green {
    background: #8CB84D;
    color: #ffffff;
    font-weight: 600;
}

.mini-block.highlight-purple {
    background: #E37E9B;
    color: #ffffff;
    font-weight: 600;
}

.mini-block.highlight-orange {
    background: #F26422;
    color: #ffffff;
    font-weight: 600;
}

.mini-block.changed {
    box-shadow: 0 0 0 2px #F26422;
}

/* Block positions for mini canvas mb- prefix */
.mb-kp { grid-column: 1; grid-row: 1 / 3; }
.mb-ka { grid-column: 2; grid-row: 1; }
.mb-kr { grid-column: 2; grid-row: 2; }
.mb-vp { grid-column: 3; grid-row: 1 / 3; }
.mb-cr { grid-column: 4; grid-row: 1; }
.mb-ch { grid-column: 4; grid-row: 2; }
.mb-cs { grid-column: 5; grid-row: 1 / 3; }
.mb-cost { grid-column: 1 / 3; grid-row: 3; }
.mb-rev { grid-column: 4 / 6; grid-row: 3; }

/* Block Changes Detail */
.block-changes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.block-change {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    border-left: 3px solid #444444;
}

.block-change.primary {
    border-left-color: #F26422;
    background: #fafafa;
}

.block-change h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
}

.block-change.primary h5 {
    color: #F26422;
}

.block-change-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.change-before {
    color: #555;
    font-size: 0.85rem;
}

.change-arrow {
    color: #444444;
}

.change-after {
    color: #ccc;
    font-size: 0.85rem;
}

/* Example Section (canvas transformations) */
.example-section {
    background: #fafafa;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.example-badge {
    background: #F26422;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.example-company {
    font-size: 1.5rem;
    font-weight: 400;
}

.example-industry {
    color: #666;
    font-size: 0.9rem;
    margin-left: auto;
}

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.example-before, .example-after {
    padding: 25px;
    border-radius: 12px;
}

.example-before {
    background: #f8f8f8;
}

.example-after {
    background: #fafafa;
    border: 1px solid #faf8f5;
}

.example-before h5, .example-after h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.example-before h5 { color: #666; }
.example-after h5 { color: #F26422; }

.example-list {
    list-style: none;
}

.example-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #888;
}

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

.example-list li strong {
    color: #aaa;
    display: block;
    font-size: 0.75rem;
    margin-bottom: 3px;
}

.example-after .example-list li {
    color: #999;
}

.example-outcome {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 12px;
    border-left: 3px solid #8CB84D;
}

.example-outcome h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8CB84D;
    margin-bottom: 10px;
}

.example-outcome p {
    color: #888;
    font-size: 0.95rem;
}

/* TOC */
.toc {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 60px;
}

.toc h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #888;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.toc-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
}

.toc-item:hover {
    transform: translateY(-2px);
    border-color: #F26422;
}

.toc-item span {
    font-size: 0.9rem;
    color: #666;
}

.key-insight {
    background: #faf8f5;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border-left: 3px solid #F26422;
}

.key-insight h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F26422;
    margin-bottom: 10px;
}

.key-insight p {
    color: #888;
    font-size: 0.9rem;
}

/* ============================================
   FOUR RISKS TESTING PAGE STYLES
   ============================================ */

/* Overview Section */
.overview {
    background: #f8f8f8;
    padding: 60px 40px;
    margin-bottom: 60px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.overview-card:hover {
    transform: translateY(-3px);
    border-color: #444444;
}

.overview-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.overview-card.desirability .overview-icon { background: linear-gradient(135deg, #faf8f5, #faf8f5); }
.overview-card.feasibility .overview-icon { background: linear-gradient(135deg, #f5faf8, #f5faf7); }
.overview-card.viability .overview-icon { background: linear-gradient(135deg, #f8f5fa, #f8f5fa); }
.overview-card.adaptability .overview-icon { background: linear-gradient(135deg, #f5f7fa, #f5f7fa); }

.overview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.overview-card.desirability h3 { color: #F26422; }
.overview-card.feasibility h3 { color: #8CB84D; }
.overview-card.viability h3 { color: #E37E9B; }
.overview-card.adaptability h3 { color: #3C87B8; }

.overview-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Risk Section */
.risk-section {
    margin-bottom: 100px;
    scroll-margin-top: 80px;
}

.risk-header {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.risk-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.risk-section.desirability .risk-label { color: #F26422; }
.risk-section.feasibility .risk-label { color: #8CB84D; }
.risk-section.viability .risk-label { color: #E37E9B; }
.risk-section.adaptability .risk-label { color: #3C87B8; }

.risk-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.risk-question {
    font-size: 1.3rem;
    color: #888;
    font-style: italic;
    margin-bottom: 25px;
}

.risk-description {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Canvas Highlight */
.canvas-highlight {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 25px;
}

.canvas-highlight-label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

/* Block positions for b- prefix */
.b-kp { grid-column: 1; grid-row: 1 / 3; }
.b-ka { grid-column: 2; grid-row: 1; }
.b-kr { grid-column: 2; grid-row: 2; }
.b-vp { grid-column: 3; grid-row: 1 / 3; }
.b-cr { grid-column: 4; grid-row: 1; }
.b-ch { grid-column: 4; grid-row: 2; }
.b-cs { grid-column: 5; grid-row: 1 / 3; }
.b-cost { grid-column: 1 / 3; grid-row: 3; }
.b-rev { grid-column: 4 / 6; grid-row: 3; }

.mini-block.active-orange { background: #F26422; }
.mini-block.active-green { background: #8CB84D; }
.mini-block.active-purple { background: #E37E9B; }
.mini-block.active-blue { background: #3C87B8; }

.legend-item.highlighted {
    background: #f5f5f5;
}

.desirability .legend-item.highlighted { color: #F26422; }
.feasibility .legend-item.highlighted { color: #8CB84D; }
.viability .legend-item.highlighted { color: #E37E9B; }
.adaptability .legend-item.highlighted { color: #3C87B8; }

/* Key Questions */
.key-questions {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 40px;
}

.key-questions h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.risk-section.desirability .key-questions h4 { color: #F26422; }
.risk-section.feasibility .key-questions h4 { color: #8CB84D; }
.risk-section.viability .key-questions h4 { color: #E37E9B; }
.risk-section.adaptability .key-questions h4 { color: #3C87B8; }

.questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.question-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #444444;
    color: #888;
    font-size: 0.95rem;
}

.risk-section.desirability .question-item { border-left-color: #F26422; }
.risk-section.feasibility .question-item { border-left-color: #8CB84D; }
.risk-section.viability .question-item { border-left-color: #E37E9B; }
.risk-section.adaptability .question-item { border-left-color: #3C87B8; }

/* Testing Methods */
.testing-methods {
    margin-bottom: 40px;
}

.testing-methods h4 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 25px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.method-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.method-card h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ccc;
}

.method-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.method-strength {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.method-strength span {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #555;
}

.method-strength span.pro {
    background: #f5f8f5;
    color: #8CB84D;
}

.method-strength span.con {
    background: #f8f5f2;
    color: #F26422;
}

.method-evidence {
    font-size: 0.75rem;
    color: #555;
}

.method-evidence strong {
    color: #888;
}

/* Example section risk-specific badges */
.risk-section.desirability .example-badge { background: #F26422; color: #ffffff; }
.risk-section.feasibility .example-badge { background: #8CB84D; color: #ffffff; }
.risk-section.viability .example-badge { background: #E37E9B; color: #ffffff; }
.risk-section.adaptability .example-badge { background: #3C87B8; color: #ffffff; }

.example-story {
    color: #888;
    font-size: 0.95rem;
}

.example-story p {
    margin-bottom: 15px;
}

.example-story strong {
    color: #ccc;
}

.example-evidence {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.example-evidence h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.risk-section.desirability .example-evidence h5 { color: #F26422; }
.risk-section.feasibility .example-evidence h5 { color: #8CB84D; }
.risk-section.viability .example-evidence h5 { color: #E37E9B; }
.risk-section.adaptability .example-evidence h5 { color: #3C87B8; }

.evidence-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.evidence-item:last-child {
    border-bottom: none;
}

.evidence-label {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 5px;
}

.evidence-value {
    font-size: 1.3rem;
    font-weight: 300;
}

.risk-section.desirability .evidence-value { color: #F26422; }
.risk-section.feasibility .evidence-value { color: #8CB84D; }
.risk-section.viability .evidence-value { color: #E37E9B; }
.risk-section.adaptability .evidence-value { color: #3C87B8; }

/* Hypothesis Template */
.hypothesis-template {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 40px;
}

.hypothesis-template h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 25px;
}

.hypothesis-format {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #888;
    line-height: 2;
}

.hypothesis-format .placeholder {
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 5px;
}

.risk-section.desirability .hypothesis-format .placeholder { background: #faf8f5; color: #F26422; }
.risk-section.feasibility .hypothesis-format .placeholder { background: #f5faf8; color: #8CB84D; }
.risk-section.viability .hypothesis-format .placeholder { background: #faf5fc; color: #E37E9B; }
.risk-section.adaptability .hypothesis-format .placeholder { background: #f5f8fa; color: #3C87B8; }

.hypothesis-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hypothesis-example {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Evidence Strength Scale */
.evidence-scale {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
}

.evidence-scale h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.scale-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding: 0 20px;
}

.scale-item {
    text-align: center;
    flex: 1;
}

.scale-bar {
    width: 100%;
    margin: 0 5px 15px;
    border-radius: 4px;
}

.scale-item:nth-child(1) .scale-bar { height: 30px; background: linear-gradient(to top, #f8f5f2, #f8f5f5); }
.scale-item:nth-child(2) .scale-bar { height: 50px; background: linear-gradient(to top, #f8f8f5, #f8f8f5); }
.scale-item:nth-child(3) .scale-bar { height: 70px; background: linear-gradient(to top, #f5f8f8, #f5f8f8); }
.scale-item:nth-child(4) .scale-bar { height: 90px; background: linear-gradient(to top, #f5f8f5, #f5f8f5); }
.scale-item:nth-child(5) .scale-bar { height: 110px; background: linear-gradient(to top, #f5faf5, #f5faf5); }

.scale-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.scale-desc {
    font-size: 0.7rem;
    color: #444;
}

.scale-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.scale-arrow span {
    font-size: 0.8rem;
    color: #555;
}

.scale-arrow .arrow {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #F26422, #8CB84D);
}

.summary-section {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px;
}

/* ============================================
   CORDSTRAP CASE STUDY PAGE STYLES
   ============================================ */

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #492D5E, #F26422, #8CB84D, #E37E9B, #3C87B8);
}

/* Stage for case study */
.stage {
    position: relative;
    margin-bottom: 80px;
}

.stage-marker {
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F26422;
    border: 3px solid #ffffff;
}

.stage-intro {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #e8e8e8;
}

/* Content Blocks */
.content-block {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.content-block h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.content-block p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Full Canvas for case study */
.canvas-container {
    background: #fafafa;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

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

.canvas-title {
    font-size: 1.1rem;
    font-weight: 400;
}

.canvas-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.canvas-label.before {
    background: #f5f5f5;
    color: #666;
}

.canvas-label.after {
    background: #faf8f5;
    color: #F26422;
}

/* Case study specific canvas grid - only when preceded by .canvas-header */
.canvas-header + .canvas-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 8px;
}

.canvas-header + .canvas-grid .canvas-block {
    background: #f8f6fa;
    border-radius: 8px;
    padding: 15px;
    min-height: 120px;
}

.canvas-header + .canvas-grid .canvas-block.changed {
    background: #f8f6fa;
    border: 1px solid #F26422;
}

.canvas-header + .canvas-grid .canvas-block h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 10px;
}

.canvas-header + .canvas-grid .canvas-block.changed h5 {
    color: #F26422;
}

.canvas-header + .canvas-grid .canvas-block ul {
    list-style: none;
    font-size: 0.8rem;
    color: #888;
}

.canvas-header + .canvas-grid .canvas-block.changed ul {
    color: #999;
}

.canvas-header + .canvas-grid .canvas-block li {
    padding: 3px 0;
}

/* Mini canvas wrapper */
.mini-canvas-wrapper {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
}

.mini-canvas-title {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.mini-canvas-title.after {
    color: #F26422;
}

/* Hypothesis Cards */
.hypothesis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hypothesis-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border-left: 3px solid #444444;
}

.hypothesis-card.desirability { border-left-color: #F26422; }
.hypothesis-card.feasibility { border-left-color: #8CB84D; }
.hypothesis-card.viability { border-left-color: #E37E9B; }
.hypothesis-card.adaptability { border-left-color: #3C87B8; }

.hypothesis-card .risk-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hypothesis-card.desirability .risk-type { color: #F26422; }
.hypothesis-card.feasibility .risk-type { color: #8CB84D; }
.hypothesis-card.viability .risk-type { color: #E37E9B; }
.hypothesis-card.adaptability .risk-type { color: #3C87B8; }

.hypothesis-card .hypothesis-text {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.hypothesis-card .result {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hypothesis-card .result-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-badge.validated {
    background: #f5f8f5;
    color: #8CB84D;
}

.result-badge.invalidated {
    background: #f8f5f2;
    color: #F26422;
}

.result-badge.partial {
    background: #f8f8f5;
    color: #B390F1;
}

.hypothesis-card .result-detail {
    font-size: 0.75rem;
    color: #555;
}

/* Evidence Table */
.evidence-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.evidence-table th {
    text-align: left;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    padding: 10px;
}

.evidence-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
    color: #888;
    border-bottom: 1px solid #e0e0e0;
}

.evidence-table td:last-child {
    text-align: right;
}

.evidence-table .metric {
    color: #F26422;
    font-weight: 500;
}

/* Milestone */
.milestone {
    background: linear-gradient(135deg, #fafafa, #fafafa);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.milestone h4 {
    font-size: 0.85rem;
    color: #F26422;
    margin-bottom: 15px;
}

/* Pilot Stats */
.pilot-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.pilot-stat {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.pilot-stat .value {
    font-size: 1.5rem;
    font-weight: 300;
    color: #F26422;
    margin-bottom: 5px;
}

.pilot-stat .label {
    font-size: 0.75rem;
    color: #555;
}

/* Shifts Applied */
.shifts-applied {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.shift-badge {
    background: #faf8f5;
    color: #F26422;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Quote */
.quote {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    border-left: 3px solid #F26422;
    font-style: italic;
    color: #888;
}

.quote .attribution {
    margin-top: 15px;
    font-style: normal;
    font-size: 0.85rem;
    color: #555;
}

/* Lessons Section */
.lessons-section {
    margin-top: 60px;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lesson {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.lesson h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #F26422;
}

.lesson p {
    font-size: 0.9rem;
    color: #888;
}

/* Outcome Section */
.outcome-section {
    margin-top: 60px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.outcome-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.outcome-card h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.outcome-card p {
    font-size: 0.9rem;
    color: #888;
}

/* Intro Section for case study */
.intro-section {
    margin-bottom: 60px;
}

/* Responsive for canvas transformations */
@media (max-width: 900px) {
    .intro {
        grid-template-columns: 1fr;
    }

    .canvas-comparison {
        grid-template-columns: 1fr;
    }

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

    .block-changes {
        grid-template-columns: 1fr;
    }

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

    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Responsive for four risks */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .risk-header {
        grid-template-columns: 1fr;
    }

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

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

    .hypothesis-examples {
        grid-template-columns: 1fr;
    }

    .scale-visual {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive for case study */
@media (max-width: 900px) {
    .canvas-grid {
        grid-template-columns: 1fr;
    }

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

    .pilot-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    /* Case study canvas on mobile */
    .canvas-header + .canvas-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .canvas-header + .canvas-grid .canvas-block {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: auto;
        padding: 15px;
    }
}

/* Small mobile for case study */
@media (max-width: 600px) {
    .canvas-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .canvas-title {
        font-size: 0.9rem;
    }

    .pilot-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR UPDATED PAGES
   ============================================ */

/* Team Indicator Badge (Process & Costs page) */
.team-indicator {
    display: inline-block;
    background: #492D5E;
    color: #ffffff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Badge (Method in Practice page) */
.team-badge {
    display: inline-block;
    background: #492D5E;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Purpose Box (Method in Practice page) */
.purpose-box {
    background: linear-gradient(135deg, #492D5E10, #492D5E05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 3px solid #492D5E;
}

.purpose-box p {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

/* Brief Item Cards (Pilot & Scale stages) */
.brief-item {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
}

.brief-item h5 {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
}

.brief-item p {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive for brief-item grid */
@media (max-width: 900px) {
    .brief-grid {
        grid-template-columns: 1fr;
    }
}
