/* ===========================================
   PLAIT & PATTERN SLIDE DECK STYLES
   Shared styles for HTML presentation decks
   =========================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors from Plait & Pattern */
    --teal-700: #136B6F;
    --teal-600: #1A8A8F;
    --teal-500: #2A9DA2;
    --teal-100: #D4F0EC;
    --teal-50: #EAF8F6;

    --burgundy-700: #5E2436;
    --burgundy-600: #722F42;
    --burgundy-500: #8B3A4E;
    --burgundy-400: #A84D63;
    --burgundy-100: #F2E0E4;

    --gold-700: #996F20;
    --gold-600: #B8892B;
    --gold-500: #D4A84B;
    --gold-100: #FBF5E6;

    --sage-700: #4F7460;
    --sage-600: #5E8A70;
    --sage-100: #E5F0E8;

    --coral-700: #A84D43;
    --coral-600: #C46A5E;

    /* Neutrals */
    --ink: #1C2426;
    --charcoal: #374144;
    --slate: #566064;
    --gray: #6E787C;
    --silver: #8A9499;
    --mist: #D6DADB;
    --cloud: #F0F2F2;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ==================== BASE RESET & BODY STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--charcoal);
    min-height: 100vh;
    padding: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    body {
        padding: 40px;
    }
}

.slides-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .slides-container {
        gap: 30px;
    }
}

@media (min-width: 1440px) {
    .slides-container {
        align-items: center;
    }
}

/* ==================== SLIDE CONTAINER & COMMON COMPONENTS ==================== */
.slide {
    width: 1400px;
    height: 788px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Subtle background texture for standard slides */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(19, 107, 111, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(94, 36, 54, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ==================== BADGES, FOOTERS, COMMON ELEMENTS ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--teal-700);
    color: var(--white);
}

.badge.critical {
    background: var(--burgundy-500);
}

.badge.warning {
    background: var(--gold-600);
}

.slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 58px;
    border-top: 1px solid var(--mist);
    margin-top: auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-700);
    letter-spacing: 0.02em;
}

.footer-meta {
    font-size: 10px;
    color: var(--silver);
}

.slide-number {
    position: absolute;
    bottom: 15px;
    right: 58px;
    font-size: 10px;
    color: var(--silver);
    z-index: 2;
}

/* ==================== TITLE SLIDE STYLES (SHARED) ==================== */
.slide-title {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
}

.slide-title::before {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(19, 107, 111, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 77, 99, 0.08) 0%, transparent 50%);
}

.slide-title .slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.title-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.title-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 65px;
    color: var(--white);
}

.title-date-badge {
    display: inline-flex;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-100);
    margin-bottom: 24px;
    width: fit-content;
}

.title-main {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.title-subtitle {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--silver);
    line-height: 1.3;
    margin-bottom: 40px;
}

.title-client {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.title-client-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
}

.title-footer {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.title-footer-brand {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-100);
}

/* ==================== STANDARD SLIDE STYLES (SHARED) ==================== */
.standard-slide {
    padding: 48px 58px;
}

.slide-header {
    margin-bottom: 24px;
}

.slide-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.slide-header p {
    font-size: 13px;
    color: var(--slate);
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.col-section h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 14px;
}

.col-section h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 10px;
    margin-top: 16px;
}

.col-section h3:first-of-type {
    margin-top: 0;
}

.col-section p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--charcoal);
}

.system-list {
    list-style: none;
    font-size: 12px;
    line-height: 1.9;
    color: var(--charcoal);
}

.system-list li {
    padding-left: 16px;
    position: relative;
}

.system-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--teal-600);
    border-radius: 50%;
}

/* Common Card Styles */
.risk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.risk-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 22px;
    border: 1px solid var(--mist);
    position: relative;
}

.risk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 10px 10px 0 0;
    background: var(--burgundy-500);
}

.risk-card-number {
    font-size: 10px;
    font-weight: 700;
    color: var(--burgundy-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.risk-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.risk-card p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--slate);
}

/* Callout Boxes */
.core-finding-box {
    background: var(--burgundy-100);
    border-left: 4px solid var(--burgundy-500);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}

.core-finding-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
}

.core-finding-box strong {
    color: var(--burgundy-700);
}

.bottom-line-box {
    background: var(--teal-50);
    border-left: 4px solid var(--teal-700);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.bottom-line-box h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-700);
    margin-bottom: 6px;
}

.bottom-line-box p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--charcoal);
}

.bottom-line-box strong {
    color: var(--teal-700);
}

.why-matters-box {
    background: var(--burgundy-100);
    border-left: 4px solid var(--burgundy-500);
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 16px;
}

.why-matters-box h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--burgundy-700);
    margin-bottom: 8px;
}

.why-matters-box p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
}

.root-cause-callout {
    background: var(--teal-50);
    border-left: 4px solid var(--teal-700);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.root-cause-callout h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 8px;
}

.root-cause-callout p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--charcoal);
}

/* Evidence Lists */
.evidence-list {
    background: var(--cloud);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
}

.evidence-list h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 10px;
}

.evidence-list ul {
    list-style: none;
    font-size: 12px;
    color: var(--charcoal);
}

.evidence-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid var(--mist);
}

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

.evidence-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--burgundy-400);
    border-radius: 50%;
}

.evidence-list strong {
    color: var(--burgundy-600);
}

/* ==================== REVENUE IMPACT TABLE (SHARED) ==================== */
.revenue-table-container {
    margin-bottom: 20px;
}

.revenue-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.revenue-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.revenue-table th:first-child {
    border-radius: 8px 0 0 0;
}

.revenue-table th:last-child {
    border-radius: 0 8px 0 0;
    text-align: right;
}

.revenue-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--mist);
}

.revenue-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--burgundy-600);
}

.revenue-table tr:nth-child(even) {
    background: var(--cloud);
}

.revenue-table tr.total {
    background: var(--burgundy-100);
}

.revenue-table tr.total td {
    font-weight: 700;
    color: var(--burgundy-700);
    border-bottom: none;
}

.revenue-table tr.total td:last-child {
    font-size: 14px;
}

.estimate-note {
    font-size: 11px;
    color: var(--slate);
    font-style: italic;
    margin-top: 12px;
    padding-left: 16px;
    border-left: 2px solid var(--mist);
}

/* ==================== FINDABILITY HEATMAP VISUALIZATION (SHARED) ==================== */
.heatmap-container {
    background: var(--cloud);
    border-radius: 10px;
    padding: 20px;
    margin-top: 16px;
}

.heatmap-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 14px;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: 120px repeat(5, 1fr);
    gap: 4px;
    font-size: 10px;
}

.heatmap-header {
    font-weight: 600;
    color: var(--charcoal);
    padding: 8px 6px;
    text-align: center;
    background: var(--white);
    border-radius: 4px;
}

.heatmap-row-label {
    font-weight: 500;
    color: var(--slate);
    padding: 8px 10px;
    background: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.heatmap-cell {
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.heatmap-cell.good {
    background: var(--sage-100);
    color: var(--sage-700);
}

.heatmap-cell.warning {
    background: var(--gold-100);
    color: var(--gold-700);
}

.heatmap-cell.critical {
    background: var(--burgundy-100);
    color: var(--burgundy-600);
}

.heatmap-legend {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    justify-content: flex-end;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--slate);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-dot.good { background: var(--sage-100); }
.legend-dot.warning { background: var(--gold-100); }
.legend-dot.critical { background: var(--burgundy-100); }

/* ==================== KPI CONFLICT TABLE (SHARED) ==================== */
.conflict-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.conflict-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.conflict-table th:first-child {
    border-radius: 6px 0 0 0;
}

.conflict-table th:last-child {
    border-radius: 0 6px 0 0;
}

.conflict-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--mist);
    vertical-align: top;
}

.conflict-table tr:nth-child(even) {
    background: var(--cloud);
}

.conflict-table .team-name {
    font-weight: 600;
    color: var(--ink);
}

.conflict-table .kpi-value {
    color: var(--gold-700);
    font-weight: 500;
}

.conflict-table .outcome-value {
    color: var(--burgundy-600);
}

/* ==================== WATERFALL CHART (SHARED) ==================== */
.waterfall-container {
    background: var(--cloud);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.waterfall-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 20px;
}

.waterfall-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    padding: 0 20px;
    position: relative;
}

.waterfall-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--mist);
}

.waterfall-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.waterfall-bar-value {
    font-size: 14px;
    font-weight: 700;
}

.waterfall-bar-visual {
    width: 60px;
    border-radius: 4px 4px 0 0;
}

.waterfall-bar.total .waterfall-bar-value { color: var(--teal-700); }
.waterfall-bar.total .waterfall-bar-visual { background: var(--teal-600); height: 180px; }

.waterfall-bar.deduct .waterfall-bar-value { color: var(--burgundy-600); }
.waterfall-bar.deduct .waterfall-bar-visual { background: var(--burgundy-400); }

.waterfall-bar.result .waterfall-bar-value { color: var(--gold-700); }
.waterfall-bar.result .waterfall-bar-visual { background: var(--gold-500); }

.waterfall-bar-label {
    font-size: 10px;
    color: var(--slate);
    text-align: center;
    line-height: 1.3;
    padding-top: 8px;
}

/* ==================== NOT RECOMMENDED CARDS (SHARED) ==================== */
.not-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.not-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.not-card::before {
    content: '✕';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: var(--mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate);
}

.not-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    padding-right: 30px;
}

.not-card p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--slate);
}

.after-integrity-note {
    text-align: center;
    font-size: 14px;
    color: var(--charcoal);
    padding: 16px 0;
    border-top: 1px dashed var(--mist);
}

.after-integrity-note strong {
    color: var(--teal-700);
}

/* ==================== NEXT STEP / CTA SLIDE (SHARED) ==================== */
.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.cta-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--cloud);
    border-radius: 8px;
}

.cta-benefit-icon {
    width: 28px;
    height: 28px;
    background: var(--teal-100);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-benefit-icon svg {
    width: 14px;
    height: 14px;
    color: var(--teal-700);
}

.cta-benefit-text h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.cta-benefit-text p {
    font-size: 11px;
    color: var(--slate);
    margin: 0;
    line-height: 1.5;
}

.cta-panel {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
    border-radius: 12px;
    padding: 28px;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.cta-panel-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-100);
    margin-bottom: 12px;
}

.cta-panel-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-panel-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--silver);
    margin-bottom: 24px;
}

.cta-outcome-box {
    background: rgba(19, 107, 111, 0.2);
    border-left: 3px solid var(--teal-500);
    padding: 16px 18px;
    border-radius: 0 8px 8px 0;
    margin-top: auto;
}

.cta-outcome-box h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-100);
    margin-bottom: 6px;
}

.cta-outcome-box p {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== CLOSING SLIDE STYLES (SHARED) ==================== */
.slide-closing {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
}

.slide-closing::before {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(19, 107, 111, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(168, 77, 99, 0.06) 0%, transparent 50%);
}

.closing-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--white);
}

.closing-content h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
}

.closing-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 950px;
    margin-bottom: 24px;
}

.closing-content p strong {
    color: var(--white);
}

.closing-content p.highlight {
    color: var(--teal-100);
}

.closing-purpose {
    background: rgba(19, 107, 111, 0.2);
    border-left: 4px solid var(--teal-500);
    padding: 24px 28px;
    border-radius: 0 10px 10px 0;
    margin-top: 20px;
    max-width: 800px;
}

.closing-purpose p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.closing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.closing-client img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.closing-brand {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--teal-100);
}

/* ==================== RAPID DIAGNOSTIC SPECIFIC STYLES ==================== */
/* Title Slide - Hero Image */
.title-hero-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.title-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 107, 111, 0.2) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.title-client-logo img {
    height: 36px;
    width: auto;
}

/* Executive Summary - Rapid Diagnostic */
.summary-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    max-width: 900px;
    margin-bottom: 20px;
}

.summary-intro strong {
    color: var(--burgundy-600);
}

.summary-intro em {
    color: var(--ink);
    font-style: normal;
    font-weight: 600;
}

/* Red Flag Detail Slide */
.redflag-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
}

.redflag-content h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
}

.redflag-content p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 14px;
}

/* Search as Crutch Visualization */
.crutch-visual {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crutch-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}

.data-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.data-block {
    background: rgba(139, 58, 78, 0.5);
    border: 2px solid var(--burgundy-400);
    border-radius: 6px;
    padding: 12px 24px;
    text-align: center;
    position: relative;
    transform: rotate(-2deg);
}

.data-block:nth-child(2) {
    transform: rotate(1deg);
}

.data-block:nth-child(3) {
    transform: rotate(-1deg);
}

.data-block span {
    font-size: 10px;
    font-weight: 600;
    color: var(--burgundy-100);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-block;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-decoration-thickness: 2px;
}

.search-support {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.search-label {
    background: var(--teal-600);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    box-shadow: 0 4px 12px rgba(19, 107, 111, 0.4);
}

.search-label::before {
    content: '⚠';
    margin-right: 8px;
}

.support-lines {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.support-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--teal-500));
}

.crutch-caption {
    text-align: center;
    font-size: 11px;
    color: var(--silver);
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.crutch-risks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.crutch-risk {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.crutch-risk-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto 8px;
    background: rgba(168, 77, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crutch-risk-icon svg {
    width: 14px;
    height: 14px;
    color: var(--burgundy-100);
}

.crutch-risk span {
    font-size: 10px;
    color: var(--silver);
    line-height: 1.4;
    display: block;
}

/* Incentive Collision Map */
.collision-map {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collision-center {
    width: 160px;
    height: 100px;
    background: var(--cloud);
    border: 3px solid var(--burgundy-400);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.collision-center::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed var(--burgundy-200);
    border-radius: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.collision-center-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--burgundy-600);
    margin-bottom: 4px;
}

.collision-center-sublabel {
    font-size: 10px;
    color: var(--slate);
}

.collision-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.collision-team {
    background: var(--cloud);
    border-radius: 8px;
    padding: 12px 14px;
    position: relative;
}

.collision-team::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--gold-500);
}

.collision-team-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.collision-team-kpi {
    font-size: 10px;
    color: var(--gold-700);
    font-weight: 500;
}

.collision-team-outcome {
    font-size: 10px;
    color: var(--burgundy-600);
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid var(--mist);
}

/* ==================== ROOT CAUSE DIAGNOSTIC SPECIFIC STYLES ==================== */
/* Title Slide - Warehouse Visual Grid */
.title-hero-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 107, 111, 0.2) 0%, rgba(19, 107, 111, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.title-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(19, 107, 111, 0.1) 40px,
            rgba(19, 107, 111, 0.1) 41px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(19, 107, 111, 0.1) 40px,
            rgba(19, 107, 111, 0.1) 41px
        );
}

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    width: 80%;
    height: 60%;
    position: relative;
    z-index: 1;
}

.warehouse-cell {
    background: rgba(19, 107, 111, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-cell.highlight {
    background: var(--teal-600);
}

.warehouse-cell.warning {
    background: var(--gold-600);
}

.warehouse-cell.critical {
    background: var(--burgundy-500);
}

.title-client-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.bolt-icon {
    width: 32px;
    height: 32px;
    background: var(--teal-600);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Engagement Context Slide */
.slide-context {
    padding: 47px 58px;
}

.slide-context .slide-content {
    padding: 0;
}

.context-header {
    margin-bottom: 26px;
}

.context-header h1 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    flex: 1;
}

.context-section h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 13px;
}

.context-section p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 13px;
}

.red-flag-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.red-flag-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: var(--burgundy-100);
    border-radius: 6px;
    border-left: 3px solid var(--burgundy-500);
}

.red-flag-icon {
    width: 24px;
    height: 24px;
    background: var(--burgundy-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.red-flag-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.red-flag-text {
    font-size: 12px;
    color: var(--charcoal);
    line-height: 1.5;
}

.red-flag-text strong {
    color: var(--burgundy-600);
}

.context-note {
    font-size: 12px;
    line-height: 1.7;
    color: var(--slate);
    padding-top: 9px;
    border-top: 1px solid var(--mist);
    font-style: italic;
}

.scope-section h3 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
    margin-bottom: 7px;
    margin-top: 13px;
}

.scope-section h3:first-child {
    margin-top: 0;
}

.scope-list {
    list-style: none;
    font-size: 11px;
    line-height: 1.8;
    color: var(--charcoal);
}

.scope-list li {
    padding-left: 11px;
    position: relative;
}

.scope-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--teal-600);
    border-radius: 50%;
}

/* Executive Summary - Root Cause Diagnostic */
.slide-executive {
    padding: 47px 58px;
}

.executive-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 17px;
}

.executive-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.executive-intro {
    font-size: 13px;
    line-height: 1.7;
    color: var(--charcoal);
    max-width: 875px;
    margin-bottom: 21px;
}

.executive-intro strong {
    color: var(--ink);
}

.root-cause-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 17px;
}

.root-cause-card {
    background: var(--white);
    border-radius: 9px;
    padding: 28px;
    border: 1px solid var(--mist);
    position: relative;
}

.root-cause-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 12px 12px 0 0;
}

.root-cause-card.critical::before {
    background: var(--burgundy-500);
}

.root-cause-card.warning::before {
    background: var(--gold-500);
}

.root-cause-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 9px;
}

.root-cause-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.root-cause-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--cloud);
    color: var(--slate);
}

.root-cause-card p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--slate);
}

.core-problem-box {
    background: var(--teal-50);
    border-left: 3px solid var(--teal-700);
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
}

.core-problem-box h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 7px;
}

.core-problem-box p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--charcoal);
}

/* Diagnostic Roadmap */
.slide-roadmap {
    padding: 47px 58px;
}

.roadmap-header {
    margin-bottom: 26px;
}

.roadmap-header h1 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
}

.roadmap-header p {
    font-size: 13px;
    color: var(--slate);
}

.roadmap-sections {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 23px;
    padding: 28px 0;
    border-bottom: 1px solid var(--mist);
}

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

.roadmap-number {
    font-family: var(--font-display);
    font-size: 41px;
    font-weight: 600;
    color: var(--teal-700);
    line-height: 1;
}

.roadmap-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.roadmap-content p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--slate);
}

/* Scorecard Overview */
.slide-scorecard {
    padding: 47px 58px;
}

.scorecard-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 26px;
}

.scorecard-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
}

.scorecard-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 47px;
}

.donut-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut-chart {
    width: 320px;
    height: 320px;
    position: relative;
    margin-bottom: 17px;
}

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

.donut-segment {
    fill: none;
    stroke-width: 40;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-score {
    font-family: var(--font-display);
    font-size: 47px;
    font-weight: 700;
    color: var(--gold-700);
    line-height: 1;
}

.donut-max {
    font-size: 13px;
    color: var(--silver);
}

.donut-label {
    font-size: 10px;
    color: var(--slate);
    margin-top: 4px;
}

.overall-status {
    background: var(--gold-100);
    padding: 12px 18px;
    border-radius: 6px;
    text-align: center;
}

.overall-status-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-700);
    margin-bottom: 2px;
}

.overall-status-text {
    font-size: 12px;
    color: var(--charcoal);
}

.health-states {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.health-state-card {
    padding: 24px;
    border-radius: 9px;
    border: 1px solid var(--mist);
    position: relative;
    padding-left: 17px;
}

.health-state-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 12px 0 0 12px;
}

.health-state-card.prime::before {
    background: var(--teal-600);
}

.health-state-card.at-risk::before {
    background: var(--gold-500);
}

.health-state-card.dead-stock::before {
    background: var(--burgundy-500);
}

.health-state-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 7px;
}

.health-state-title {
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.health-state-title h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.health-state-pct {
    font-size: 20px;
    font-weight: 700;
}

.prime .health-state-pct { color: var(--teal-600); }
.at-risk .health-state-pct { color: var(--gold-600); }
.dead-stock .health-state-pct { color: var(--burgundy-500); }

.health-state-meta {
    text-align: right;
}

.health-state-score {
    font-size: 10px;
    color: var(--slate);
    margin-bottom: 1px;
}

.health-state-skus {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.health-state-desc {
    font-size: 11px;
    line-height: 1.5;
    color: var(--slate);
}

.revenue-callout {
    margin-top: 13px;
    padding: 15px 18px;
    background: var(--cloud);
    border-radius: 6px;
}

.revenue-callout h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 4px;
}

.revenue-callout p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--charcoal);
}

.revenue-callout strong {
    color: var(--burgundy-600);
}

/* Four Lenses Slide */
.slide-lenses {
    padding: 47px 58px;
}

.lenses-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 21px;
}

.lenses-header-left h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.lenses-header-left p {
    font-size: 12px;
    color: var(--slate);
}

.aggregate-panel {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
    border-radius: 9px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
}

.aggregate-score-value {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 700;
    color: var(--coral-600);
    line-height: 1;
}

.aggregate-score-max {
    font-size: 10px;
    color: var(--silver);
}

.aggregate-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.aggregate-summary {
    font-size: 12px;
}

.status-critical { color: #E08477; }
.status-at-risk { color: #E0BC6E; }
.status-healthy { color: #7AA38C; }

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

.lens-card {
    background: var(--white);
    border-radius: 9px;
    padding: 18px 20px;
    border: 1px solid var(--mist);
    position: relative;
}

.lens-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 12px 12px 0 0;
}

.lens-card.critical::before { background: var(--burgundy-500); }
.lens-card.at-risk::before { background: var(--gold-500); }
.lens-card.healthy::before { background: var(--sage-600); }

.lens-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 9px;
}

.lens-priority {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-right: 7px;
    flex-shrink: 0;
}

.lens-card.critical .lens-priority {
    background: var(--burgundy-100);
    color: var(--burgundy-600);
}

.lens-card.at-risk .lens-priority {
    background: var(--gold-100);
    color: var(--gold-700);
}

.lens-name {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate);
    margin-bottom: 2px;
}

.lens-question {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lens-card.critical .status-badge {
    background: var(--burgundy-100);
    color: var(--burgundy-600);
}

.lens-card.at-risk .status-badge {
    background: var(--gold-100);
    color: var(--gold-700);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.lens-card.critical .status-dot { background: var(--burgundy-500); }
.lens-card.at-risk .status-dot { background: var(--gold-500); }

.lens-score-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 9px;
}

.lens-score-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.lens-score-value {
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}

.lens-card.critical .lens-score-value { color: var(--burgundy-600); }
.lens-card.at-risk .lens-score-value { color: var(--gold-700); }

.lens-score-max {
    font-size: 12px;
    color: var(--silver);
}

.lens-bar-container {
    flex: 1;
}

.lens-bar-track {
    height: 8px;
    background: var(--cloud);
    border-radius: 4px;
    overflow: hidden;
}

.lens-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.lens-card.critical .lens-bar-fill { background: linear-gradient(90deg, var(--burgundy-600), var(--burgundy-500)); }
.lens-card.at-risk .lens-bar-fill { background: linear-gradient(90deg, var(--gold-700), var(--gold-500)); }

.lens-dimensions {
    display: flex;
    gap: 18px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.lens-dimension {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lens-dimension-label {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lens-dimension-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--charcoal);
}

.lens-insight {
    padding-top: 7px;
    border-top: 1px solid var(--mist);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.lens-insight-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.6;
}

.lens-insight-text {
    font-size: 10px;
    color: var(--slate);
    line-height: 1.5;
    font-style: italic;
}

/* Dimension Detail Table */
.slide-dimensions {
    padding: 47px 58px;
}

.dimensions-header {
    margin-bottom: 21px;
}

.dimensions-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.dimensions-header p {
    font-size: 12px;
    color: var(--slate);
}

.dimensions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
}

.dimensions-table th {
    text-align: left;
    padding: 12px 15px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dimensions-table th:first-child {
    border-radius: 8px 0 0 0;
}

.dimensions-table th:last-child {
    border-radius: 0 8px 0 0;
}

.dimensions-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--mist);
    vertical-align: top;
}

.dimensions-table tr:last-child td {
    border-bottom: none;
}

.dimensions-table tr:nth-child(even) {
    background: var(--cloud);
}

.dimension-name {
    font-weight: 600;
    color: var(--ink);
}

.dimension-lens {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate);
    background: var(--cloud);
    padding: 2px 6px;
    border-radius: 4px;
}

.dimension-score-cell {
    font-weight: 600;
}

.score-critical { color: var(--burgundy-600); }
.score-at-risk { color: var(--gold-700); }
.score-healthy { color: var(--sage-700); }

.score-dots {
    display: flex;
    gap: 3px;
}

.score-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mist);
}

.score-dot.filled { background: var(--teal-600); }
.score-dot.partial { background: var(--gold-500); }

.dimension-finding {
    font-size: 10px;
    color: var(--slate);
    line-height: 1.4;
}

.dimension-callout {
    margin-top: 17px;
    padding: 15px 18px;
    background: var(--teal-50);
    border-left: 3px solid var(--teal-700);
    border-radius: 0 8px 8px 0;
}

.dimension-callout h4 {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-700);
    margin-bottom: 4px;
}

.dimension-callout p {
    font-size: 10px;
    line-height: 1.6;
    color: var(--charcoal);
}

/* Dead Stock Concentration */
.slide-deadstock {
    padding: 47px 58px;
}

.deadstock-header {
    margin-bottom: 21px;
}

.deadstock-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.deadstock-header p {
    font-size: 12px;
    color: var(--slate);
}

.deadstock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.deadstock-section h2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 11px;
}

.deadstock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
}

.deadstock-table th {
    text-align: left;
    padding: 9px 12px;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.deadstock-table th:first-child {
    border-radius: 6px 0 0 0;
}

.deadstock-table th:last-child {
    border-radius: 0 6px 0 0;
}

.deadstock-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--mist);
}

.deadstock-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.deadstock-pct {
    font-weight: 600;
}

.deadstock-pct.high { color: var(--burgundy-600); }
.deadstock-pct.medium { color: var(--gold-700); }
.deadstock-pct.low { color: var(--sage-700); }

.deadstock-pattern {
    font-size: 10px;
    font-style: italic;
    color: var(--slate);
    padding: 12px 0;
    border-top: 1px solid var(--mist);
    margin-top: 4px;
}

.integration-gap-callout {
    margin-top: 17px;
    padding: 24px;
    background: var(--burgundy-100);
    border-left: 3px solid var(--burgundy-500);
    border-radius: 0 8px 8px 0;
}

.integration-gap-callout h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--burgundy-700);
    margin-bottom: 4px;
}

.integration-gap-callout p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--charcoal);
}

/* Findability Metrics */
.slide-findability {
    padding: 47px 58px;
}

.findability-header {
    margin-bottom: 21px;
}

.findability-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.findability-header p {
    font-size: 12px;
    color: var(--slate);
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 17px;
}

.metric-card {
    background: var(--white);
    border-radius: 9px;
    padding: 28px;
    border: 1px solid var(--mist);
    position: relative;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 12px 12px 0 0;
    background: var(--burgundy-500);
}

.metric-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate);
    margin-bottom: 7px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 41px;
    font-weight: 700;
    color: var(--burgundy-600);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-benchmark {
    font-size: 10px;
    color: var(--slate);
    padding: 4px 7px;
    background: var(--cloud);
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 9px;
}

.metric-detail {
    font-size: 10px;
    line-height: 1.5;
    color: var(--charcoal);
}

.metric-examples {
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid var(--mist);
    font-size: 10px;
    color: var(--slate);
    font-family: monospace;
}

.findability-bottom-callout {
    padding: 18px 23px;
    background: var(--teal-50);
    border-left: 3px solid var(--teal-700);
    border-radius: 0 8px 8px 0;
}

.findability-bottom-callout h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 4px;
}

.findability-bottom-callout p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--charcoal);
}

.findability-bottom-callout strong {
    color: var(--burgundy-600);
}

/* Revenue at Risk */
.slide-revenue {
    padding: 47px 58px;
}

.revenue-header {
    margin-bottom: 21px;
}

.revenue-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.revenue-header p {
    font-size: 12px;
    color: var(--slate);
}

.revenue-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-bottom: 13px;
}

.revenue-table th {
    text-align: left;
    padding: 12px 18px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.revenue-table th:first-child { border-radius: 8px 0 0 0; }
.revenue-table th:last-child { border-radius: 0 8px 0 0; }

.revenue-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--mist);
}

.revenue-table tr.dead-stock td { background: rgba(168, 77, 99, 0.06); }
.revenue-table tr.at-risk td { background: rgba(184, 137, 43, 0.06); }
.revenue-table tr.prime td { background: rgba(19, 107, 111, 0.06); }
.revenue-table tr.total td {
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
}

.health-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.health-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.health-indicator.dead-stock .dot { background: var(--burgundy-500); }
.health-indicator.at-risk .dot { background: var(--gold-500); }
.health-indicator.prime .dot { background: var(--teal-600); }

.gmv-at-risk {
    font-weight: 600;
    color: var(--burgundy-600);
}

.recovery-potential {
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.recovery-high {
    background: var(--burgundy-100);
    color: var(--burgundy-600);
}

.recovery-medium {
    background: var(--gold-100);
    color: var(--gold-700);
}

.recovery-low {
    background: var(--teal-100);
    color: var(--teal-700);
}

.methodology-note {
    font-size: 10px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 13px;
}

.methodology-note h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.business-case-callout {
    padding: 18px 23px;
    background: var(--teal-50);
    border-left: 3px solid var(--teal-700);
    border-radius: 0 8px 8px 0;
}

.business-case-callout h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 4px;
}

.business-case-callout p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--charcoal);
}

.business-case-callout strong {
    color: var(--teal-700);
}

/* Root Cause Overview */
.slide-rc-overview {
    padding: 47px 58px;
}

.rc-overview-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 21px;
}

.rc-overview-header h1 {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.rc-overview-header p {
    font-size: 12px;
    color: var(--slate);
}

.rc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    margin-bottom: 13px;
}

.rc-table th {
    text-align: left;
    padding: 10px 15px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rc-table th:first-child { border-radius: 8px 0 0 0; }
.rc-table th:last-child { border-radius: 0 8px 0 0; }

.rc-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--mist);
    vertical-align: middle;
}

.rc-table tr:nth-child(even) {
    background: var(--cloud);
}

.rc-id {
    font-weight: 700;
    color: var(--teal-700);
}

.rc-name {
    font-weight: 600;
    color: var(--ink);
}

.rc-type-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--cloud);
    color: var(--slate);
}

.severity-critical {
    color: var(--burgundy-600);
    font-weight: 600;
}

.severity-high {
    color: var(--gold-700);
    font-weight: 600;
}

.complexity-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
}

.complexity-high {
    background: var(--burgundy-100);
    color: var(--burgundy-600);
}

.complexity-medium {
    background: var(--gold-100);
    color: var(--gold-700);
}

.type-key {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 17px;
    padding: 15px 18px;
    background: var(--cloud);
    border-radius: 6px;
}

.type-key-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.type-key-code {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-700);
    background: var(--white);
    padding: 3px 6px;
    border-radius: 4px;
}

.type-key-label {
    font-size: 10px;
    color: var(--charcoal);
}

.not-root-cause-callout {
    padding: 15px 18px;
    background: var(--teal-50);
    border-left: 3px solid var(--teal-700);
    border-radius: 0 8px 8px 0;
}

.not-root-cause-callout h4 {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-700);
    margin-bottom: 4px;
}

.not-root-cause-callout p {
    font-size: 10px;
    line-height: 1.6;
    color: var(--charcoal);
}

/* Root Cause Detail Slides */
.slide-rc-detail {
    padding: 47px 58px;
}

.rc-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 17px;
}

.rc-detail-header h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.rc-type-line {
    font-size: 11px;
    color: var(--slate);
    margin-top: 4px;
}

.rc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 35px;
}

.rc-detail-main h2 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 7px;
}

.rc-detail-main p {
    font-size: 11px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 13px;
}

.evidence-section {
    margin-bottom: 13px;
}

.evidence-tier {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
    margin-bottom: 7px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--mist);
}

.evidence-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px dashed var(--mist);
}

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

.evidence-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--teal-600);
    border-radius: 2px;
}

.anchor-example {
    background: var(--cloud);
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--charcoal);
    font-style: italic;
    margin: 12px 0;
}

.rc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.commercial-impact-box {
    background: var(--burgundy-100);
    border-left: 3px solid var(--burgundy-500);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.commercial-impact-box h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--burgundy-700);
    margin-bottom: 7px;
}

.commercial-impact-box p {
    font-size: 10px;
    line-height: 1.6;
    color: var(--charcoal);
}

.confidence-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
}

.confidence-table th {
    text-align: left;
    padding: 7px 9px;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.confidence-table td {
    padding: 7px 9px;
    border-bottom: 1px solid var(--mist);
}

.confidence-table tr:nth-child(even) {
    background: var(--cloud);
}

.confidence-high {
    color: var(--teal-700);
    font-weight: 600;
}

.confidence-medium {
    color: var(--gold-700);
    font-weight: 600;
}

/* ==================== UTILITY CLASSES ==================== */
.text-teal { color: var(--teal-700); }
.text-burgundy { color: var(--burgundy-600); }
.text-gold { color: var(--gold-700); }

.bg-teal { background-color: var(--teal-50); }
.bg-burgundy { background-color: var(--burgundy-100); }
.bg-gold { background-color: var(--gold-100); }

/* ===========================================
   STRATEGIC PARTNERSHIP SPECIFIC STYLES
   =========================================== */

/* Quarterly Review Components */
.quarter-badge {
    background: var(--teal-600);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quarter-badge-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: 4px;
}

.quarter-badge-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.quarter-badge-sub {
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.9;
}

.title-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 107, 111, 0.2) 0%, rgba(19, 107, 111, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.title-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(19, 107, 111, 0.1) 40px, rgba(19, 107, 111, 0.1) 41px),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(19, 107, 111, 0.1) 40px, rgba(19, 107, 111, 0.1) 41px);
}

/* Engagement Context */
.context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.context-box {
    background: var(--cloud);
    border-radius: 10px;
    padding: 24px;
}

.context-box.dark {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
    color: var(--white);
}

.context-box h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 16px;
}

.context-box.dark h2 {
    color: var(--teal-100);
}

.context-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mist);
}

.context-box.dark .context-metric {
    border-bottom-color: rgba(255,255,255,0.1);
}

.context-metric:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.context-metric-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--burgundy-600);
}

.context-box.dark .context-metric-value {
    color: var(--coral-600);
}

.context-metric-label {
    font-size: 12px;
    color: var(--slate);
}

.context-box.dark .context-metric-label {
    color: var(--silver);
}

.context-list {
    list-style: none;
    font-size: 13px;
    line-height: 1.8;
}

.context-list li {
    padding-left: 20px;
    position: relative;
    color: var(--charcoal);
}

.context-box.dark .context-list li {
    color: rgba(255,255,255,0.85);
}

.context-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--teal-600);
    border-radius: 50%;
}

/* Roadmap Timeline */
.roadmap-container {
    margin-bottom: 20px;
}

.roadmap-timeline {
    display: flex;
    position: relative;
    padding-top: 40px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mist);
    border-radius: 2px;
}

.roadmap-phase {
    flex: 1;
    position: relative;
    padding: 0 12px;
}

.roadmap-phase:first-child {
    padding-left: 0;
}

.roadmap-phase:last-child {
    padding-right: 0;
}

.phase-marker {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mist);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.roadmap-phase.completed .phase-marker {
    background: var(--teal-600);
}

.roadmap-phase.current .phase-marker {
    background: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.3);
}

.phase-progress {
    position: absolute;
    top: 55px;
    left: 0;
    height: 4px;
    background: var(--teal-600);
    border-radius: 2px;
    z-index: 1;
}

.roadmap-phase:nth-child(1) .phase-progress { width: 100%; }
.roadmap-phase:nth-child(2) .phase-progress { width: 100%; }

.phase-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    text-align: center;
    margin-bottom: 8px;
}

.phase-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 8px;
    padding: 16px;
    margin-top: 40px;
}

.roadmap-phase.completed .phase-card {
    border-color: var(--teal-100);
    background: var(--teal-50);
}

.roadmap-phase.current .phase-card {
    border-color: var(--gold-500);
    background: var(--gold-100);
}

.phase-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.phase-dates {
    font-size: 10px;
    color: var(--slate);
    margin-bottom: 10px;
}

.phase-items {
    list-style: none;
    font-size: 11px;
    color: var(--charcoal);
}

.phase-items li {
    padding: 4px 0 4px 16px;
    position: relative;
}

.phase-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-600);
    font-weight: 700;
    font-size: 10px;
}

.roadmap-phase.upcoming .phase-items li::before {
    content: '○';
    color: var(--silver);
}

.you-are-here {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-600);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Phase Summary Cards */
.phase-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.phase-summary-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.phase-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 10px 10px 0 0;
    background: var(--teal-600);
}

.phase-summary-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 18px;
}

.phase-summary-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.phase-summary-card p {
    font-size: 11px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 12px;
}

.phase-summary-highlight {
    background: var(--teal-50);
    border-left: 3px solid var(--teal-600);
    padding: 10px 12px;
    border-radius: 0 6px 6px 0;
    font-size: 11px;
    color: var(--teal-700);
    font-weight: 500;
}

/* Dashboard Metrics */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.dashboard-card.positive::before { background: var(--teal-600); }
.dashboard-card.negative::before { background: var(--burgundy-500); }
.dashboard-card.neutral::before { background: var(--gold-500); }

.dashboard-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 8px;
}

.dashboard-value-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.dashboard-old {
    font-size: 18px;
    color: var(--silver);
    text-decoration: line-through;
}

.dashboard-arrow {
    color: var(--slate);
    font-size: 14px;
}

.dashboard-new {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.dashboard-card.positive .dashboard-new { color: var(--teal-700); }
.dashboard-card.negative .dashboard-new { color: var(--burgundy-600); }
.dashboard-card.neutral .dashboard-new { color: var(--gold-700); }

.dashboard-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.dashboard-card.positive .dashboard-change {
    background: var(--teal-100);
    color: var(--teal-700);
}

.dashboard-card.negative .dashboard-change {
    background: var(--sage-100);
    color: var(--sage-700);
}

/* Revenue Impact Table */
.impact-table-container {
    margin-bottom: 20px;
}

.impact-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.impact-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.impact-table th:first-child { border-radius: 8px 0 0 0; }
.impact-table th:last-child { border-radius: 0 8px 0 0; text-align: right; }

.impact-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--mist);
}

.impact-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--teal-700);
}

.impact-table tr:nth-child(even) { background: var(--cloud); }

.impact-table tr.total {
    background: var(--teal-50);
}

.impact-table tr.total td {
    font-weight: 700;
    color: var(--teal-700);
    border-bottom: none;
}

.impact-table tr.total td:last-child {
    font-size: 16px;
}

.impact-methodology {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.methodology-note {
    background: var(--cloud);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 11px;
    color: var(--slate);
    line-height: 1.6;
}

.roi-callout {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.roi-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-100);
    margin-bottom: 4px;
}

.roi-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--teal-100);
}

/* Category Performance Table */
.category-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.category-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.category-table th:first-child { border-radius: 6px 0 0 0; }
.category-table th:last-child { border-radius: 0 6px 0 0; }

.category-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--mist);
}

.category-table tr:nth-child(even) { background: var(--cloud); }

.category-name { font-weight: 600; color: var(--ink); }

.health-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.health-bar-track {
    flex: 1;
    height: 8px;
    background: var(--mist);
    border-radius: 4px;
    overflow: hidden;
}

.health-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.health-bar-fill.critical { background: var(--burgundy-500); }
.health-bar-fill.at-risk { background: var(--gold-500); }
.health-bar-fill.healthy { background: var(--teal-600); }

.health-value {
    font-weight: 600;
    min-width: 35px;
}

.delta-positive { color: var(--teal-700); }
.delta-negative { color: var(--burgundy-600); }

.gmv-value { color: var(--teal-700); font-weight: 600; }

/* Supplier Scorecard */
.scorecard-header-panel {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3538 100%);
    border-radius: 10px;
    padding: 20px 24px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scorecard-supplier-info h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.scorecard-supplier-meta {
    font-size: 11px;
    color: var(--silver);
}

.scorecard-overall {
    text-align: center;
}

.scorecard-overall-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-100);
    margin-bottom: 4px;
}

.scorecard-overall-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.scorecard-overall-value.compliant { color: var(--teal-100); }
.scorecard-overall-value.at-risk { color: var(--gold-300); }
.scorecard-overall-value.non-compliant { color: var(--coral-500); }

.scorecard-overall-status {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.scorecard-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 8px;
    padding: 16px;
}

.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.pillar-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
}

.pillar-score {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.pillar-score.good { color: var(--teal-600); }
.pillar-score.fair { color: var(--gold-600); }
.pillar-score.poor { color: var(--burgundy-500); }

.pillar-bar {
    height: 6px;
    background: var(--mist);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pillar-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.pillar-bar-fill.good { background: var(--teal-600); }
.pillar-bar-fill.fair { background: var(--gold-500); }
.pillar-bar-fill.poor { background: var(--burgundy-500); }

.pillar-note {
    font-size: 10px;
    color: var(--slate);
    line-height: 1.5;
    font-style: italic;
}

/* Supplier Distribution Chart */
.distribution-chart {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.distribution-visual {
    flex: 1;
}

.distribution-bar {
    display: flex;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.distribution-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.distribution-segment.preferred { background: var(--teal-600); }
.distribution-segment.compliant { background: var(--teal-500); }
.distribution-segment.at-risk { background: var(--gold-500); }
.distribution-segment.non-compliant { background: var(--burgundy-500); }

.distribution-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legend-dot.preferred { background: var(--teal-600); }
.legend-dot.compliant { background: var(--teal-500); }
.legend-dot.at-risk { background: var(--gold-500); }
.legend-dot.non-compliant { background: var(--burgundy-500); }

.distribution-stats {
    width: 280px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--mist);
    font-size: 12px;
}

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

.stat-label { color: var(--slate); }
.stat-value { font-weight: 600; color: var(--ink); }
.stat-value.positive { color: var(--teal-700); }

/* Playbook Excerpts */
.playbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.playbook-section {
    background: var(--cloud);
    border-radius: 10px;
    padding: 20px;
}

.playbook-section h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--teal-600);
}

.tier-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
}

.tier-table th {
    text-align: left;
    padding: 8px 10px;
    background: var(--charcoal);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-table th:first-child { border-radius: 4px 0 0 0; }
.tier-table th:last-child { border-radius: 0 4px 0 0; }

.tier-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--mist);
    background: var(--white);
}

.tier-required {
    color: var(--teal-700);
    font-weight: 600;
}

.tier-optional {
    color: var(--slate);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 12px;
    border-radius: 6px;
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--teal-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.step-content p {
    font-size: 10px;
    color: var(--slate);
    line-height: 1.5;
}

/* Risks Table */
.risks-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.risks-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.risks-table th:first-child { border-radius: 6px 0 0 0; }
.risks-table th:last-child { border-radius: 0 6px 0 0; }

.risks-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--mist);
    vertical-align: top;
}

.risks-table tr:nth-child(even) { background: var(--cloud); }

.risk-level {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.risk-level.high {
    background: var(--burgundy-100);
    color: var(--burgundy-600);
}

.risk-level.medium {
    background: var(--gold-100);
    color: var(--gold-700);
}

.risk-level.low {
    background: var(--sage-100);
    color: var(--sage-700);
}

/* Value Summary */
.value-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.value-card {
    background: var(--cloud);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
}

.value-card.highlight {
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 100%);
    color: var(--white);
}

.value-card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
    margin-bottom: 8px;
}

.value-card.highlight .value-card-label {
    color: var(--teal-100);
}

.value-card-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.value-card.highlight .value-card-amount {
    color: var(--white);
}

.value-card-note {
    font-size: 11px;
    color: var(--slate);
}

.value-card.highlight .value-card-note {
    color: rgba(255,255,255,0.8);
}

.closing-statement {
    background: var(--teal-50);
    border-left: 4px solid var(--teal-700);
    padding: 20px 24px;
    border-radius: 0 10px 10px 0;
}

.closing-statement p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
}

.closing-statement strong {
    color: var(--teal-700);
}

/* Q3 Priorities */
.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.priority-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 10px 10px 0 0;
}

.priority-card:nth-child(1)::before { background: var(--teal-600); }
.priority-card:nth-child(2)::before { background: var(--gold-500); }
.priority-card:nth-child(3)::before { background: var(--sage-600); }

.priority-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.priority-card:nth-child(1) .priority-number {
    background: var(--teal-100);
    color: var(--teal-700);
}

.priority-card:nth-child(2) .priority-number {
    background: var(--gold-100);
    color: var(--gold-700);
}

.priority-card:nth-child(3) .priority-number {
    background: var(--sage-100);
    color: var(--sage-700);
}

.priority-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.priority-card p {
    font-size: 11px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 12px;
}

.priority-target {
    background: var(--cloud);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 11px;
}

.priority-target-label {
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 9px;
    margin-bottom: 2px;
}

.priority-target-value {
    color: var(--teal-700);
    font-weight: 600;
}

/* Leading/Lagging Indicators */
.indicators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.indicator-section {
    background: var(--cloud);
    border-radius: 10px;
    padding: 20px;
}

.indicator-section.leading {
    background: var(--teal-50);
}

.indicator-section h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.indicator-section .subtitle {
    font-size: 11px;
    color: var(--slate);
    margin-bottom: 14px;
}

.indicator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--mist);
    font-size: 12px;
}

.indicator-section.leading .indicator-item {
    border-bottom-color: var(--teal-100);
}

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

.indicator-name {
    color: var(--charcoal);
}

.indicator-value {
    font-weight: 600;
}

.indicator-value.positive { color: var(--teal-700); }
.indicator-value.neutral { color: var(--gold-700); }

.trend-arrow {
    margin-left: 6px;
}

.trend-arrow.up { color: var(--teal-600); }
.trend-arrow.down { color: var(--burgundy-500); }

/* Strategic Partnership Badge Variants */
.badge.progress { background: var(--sage-600); }
.badge.impact { background: var(--gold-600); }
.badge.supplier { background: var(--teal-600); }
.badge.playbook { background: var(--charcoal); }

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 0 20px;
    padding-top: 20px;
}

.section-divider-line {
    flex: 1;
    height: 1px;
    background: var(--mist);
}

.section-divider-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--silver);
}

/* Title Slide Client Icon */
.client-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-600);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.title-client-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Closing CTA Button */
.closing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-600);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    width: fit-content;
}
