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

:root {
    --primary-color: #0f172a;      /* Deep navy for professional look */
    --secondary-color: #3b82f6;    /* Volt X blue for accents */
    --bg-color: #f8fafc;           /* Light gray background */
    --text-color: #334155;         /* Dark gray for readability */
    --text-light: #64748b;         /* Lighter gray for secondary text */
    --accent-bg: #e0f2fe;          /* Light blue for highlights */
    --white: #ffffff;
}

/* Utility */
.text-blue-bold { color: #1e40af; font-weight: 700; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-color);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
}

.presentation-container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    overflow-x: hidden;
}

.slide-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.slide {
    position: relative;
    width: 1200px;
    height: 703px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 60px;
    overflow: hidden;
    flex-shrink: 0;
    transform-origin: top center;
}

.slide-cover {
    padding: 0; /* Remove padding to let custom cover stretch fully */
    align-items: stretch;
    justify-content: flex-start;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

.title-slide {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Cover Slide Custom Styles */
.cover-geometric-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: #F4F7FB;
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.cover-corner-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 8rem;
    height: 8rem;
    background-color: #eff6ff; /* blue-50 */
    opacity: 0.5;
    z-index: 1;
}

.cover-content {
    padding: 0 3.5rem;
    width: 100%;
    max-width: 58rem; /* max-w-5xl scaled */
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cover-logo-area {
    margin-bottom: 2.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cover-logo-mark {
    width: 2rem;
    height: 2rem;
    background-color: #1d4ed8; /* blue-700 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.15rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.cover-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #1e293b; /* slate-800 */
    margin: 0;
}

.cover-title-section {
    margin-bottom: 1.4rem;
}

.cover-accent-bar {
    width: 4.7rem;
    height: 0.3rem;
    background-color: #2563eb; /* blue-600 */
    margin-bottom: 1.4rem;
}

.cover-title-section h1 {
    font-size: 3.25rem; /* scaled */
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
}

.cover-title-section .text-blue {
    color: #1d4ed8; /* blue-700 */
}

.cover-title-section h2 {
    font-size: 1.5625rem; /* scaled */
    font-weight: 300;
    color: #475569; /* slate-600 */
    margin-top: 0.6rem;
}

.cover-tagline {
    margin-top: 1.4rem;
    max-width: 42rem;
    border-left: 4px solid #e5e7eb; /* gray-200 */
    padding-left: 1.4rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cover-tagline p {
    font-size: 1.125rem; /* xl scaled */
    color: #64748b; /* slate-500 */
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.cover-footer-left {
    position: absolute;
    bottom: 1.75rem;
    left: 3.5rem;
}

.cover-footer-left p {
    font-size: 0.75rem; /* xs */
    color: #9ca3af; /* gray-400 */
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin: 0;
}

.cover-footer-right {
    position: absolute;
    bottom: 1.75rem;
    right: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1.17rem;
}

.cover-footer-right p {
    font-size: 0.875rem; /* sm */
    color: #94a3b8; /* slate-400 */
    font-weight: 500;
    margin: 0;
}

.cover-footer-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #cbd5e1; /* slate-300 */
    border-radius: 9999px;
}

/* Custom Slide Shared Styles */
.slide-custom {
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
}

.custom-slide-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 2.3rem 3.5rem; /* scaled */
    position: relative;
    background-color: #ffffff;
}

.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.4rem;
    width: 100%;
}

.header-bar {
    height: 4px;
    width: 70px;
    background-color: #1d4ed8; /* blue-700 */
    margin-bottom: 0.9rem;
}

.slide-section-title {
    font-size: 1.125rem; /* scaled down */
    font-weight: 600;
    color: #64748b; /* slate-500 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.slide-logo-small {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark-small {
    width: 1.3rem;
    height: 1.3rem;
    background-color: #1d4ed8; /* blue-700 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.15rem;
    color: white;
    font-weight: 700;
    font-size: 0.75rem; /* text-xs */
}

.logo-text-small {
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    color: #1e293b; /* slate-800 */
}

.slide-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-headline {
    margin-bottom: 1.4rem;
    max-width: 58rem; /* max-w-4xl scaled */
}

.main-headline h1 {
    font-size: 2.1rem; /* scaled */
    font-weight: 300;
    color: #0f172a; /* slate-900 */
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.main-headline .text-blue-bold {
    font-weight: 700;
    color: #1e40af; /* blue-800 */
}

.main-headline p {
    margin-top: 0.5rem;
    color: #64748b; /* slate-500 */
    font-size: 1.125rem; /* text-lg scaled */
    margin-bottom: 0;
}

.features-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.slide[data-slide="5"] .features-grid-5 {
    grid-template-columns: repeat(4, 1fr);
}

.velocity-card {
    width: 100%;
    background-color: #1d4ed8; /* blue-700 */
    color: #ffffff;
    border-radius: 1rem;
    padding: 1.7rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 0;
}

.velocity-card-left {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}

.velocity-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.velocity-card-icon i {
    font-size: 1.5rem;
    color: #bfdbfe; /* blue-200 */
}

.velocity-card-copy h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.6rem 0;
    line-height: 1.1;
}

.velocity-card-copy p {
    margin: 0;
    color: #dbeafe; /* blue-100 */
    font-size: 14px;
    line-height: 1.5;
}

.velocity-card-stats {
    flex: 0 0 24.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-content: center;
}

.velocity-stat h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bfdbfe; /* blue-200 */
    margin: 0 0 0.35rem 0;
    font-weight: 500;
}

.velocity-stat-value {
    margin: 0;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.05;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-circle {
    width: 2.9rem; /* scaled */
    height: 2.9rem; /* scaled */
    border-radius: 50%;
    background-color: #eff6ff; /* blue-50 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8; /* blue-700 */
    margin-bottom: 0.7rem;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 1.125rem; /* text-xl scaled */
}

.feature-item h3 {
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    font-size: 1.125rem; /* text-lg scaled */
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem; /* text-sm scaled */
    color: #64748b; /* slate-500 */
    line-height: 1.4;
    margin: 0;
}

.consulting-box {
    background-color: #f8fafc; /* slate-50 */
    border-left: 4px solid #ef4444; /* red-500 */
    padding: 1rem;
    margin-top: auto;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    width: 100%;
    max-width: 52rem; /* max-w-3xl scaled */
}

.slide[data-slide="2"] .consulting-box {
    margin-bottom: 40px;
}

.box-content {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.box-icon {
    margin-top: 0.2rem;
    color: #ef4444; /* red-500 */
}

.box-icon i {
    font-size: 1.125rem; /* text-lg */
}

.consulting-box h4 {
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    font-size: 1.125rem; /* text-lg scaled */
    margin-bottom: 0.2rem;
}

.consulting-box p {
    color: #475569; /* slate-600 */
    font-size: 0.875rem; /* text-sm */
    margin: 0;
}

.consulting-box p span {
    font-weight: 600;
    color: #0f172a; /* slate-900 */
}

.slide-footer {
    margin-top: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #e2e8f0; /* slate-200 */
    padding-top: 0.6rem;
    width: 100%;
}

.footer-left {
    font-size: 0.75rem; /* text-xs */
    color: #9ca3af; /* gray-400 */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
}

.footer-right {
    font-size: 0.75rem; /* text-xs */
    color: #9ca3af; /* gray-400 */
    margin: 0;
}

.header-bar-red {
    background-color: #ef4444; /* red-500 */
}

.header-bar-green {
    background-color: #10b981; /* emerald-500 */
}

.header-bar-blue {
    background-color: #1d4ed8; /* blue-700 */
}

/* Full Bleed Layout for Slide 5 */
.slide-full-bleed {
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
}

.slide-full-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
    background-color: #ffffff;
}

.slide-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.3rem 3.5rem 0 3.5rem; /* 40px 60px 20px 60px scaled */
    margin-bottom: 1.4rem;
    width: 100%;
}

.slide-full-content {
    display: flex;
    flex: 1;
    height: 100%;
}

.slide-full-left {
    flex: 1;
    padding: 0 3.5rem 2.3rem 3.5rem; /* 0 40px 40px 60px scaled */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide[data-slide="5"] .slide-full-left {
    justify-content: flex-start;
    padding-bottom: 0;
}

.mb-override {
    margin-bottom: 0.5rem !important; /* mb-8 scaled */
}

.mb-override-lg {
    margin-top: 0.5rem !important;
    margin-bottom: 1.4rem !important; /* mb-10 scaled */
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 roughly scaled */
}

.slide[data-slide="5"] .feature-list {
    gap: 22px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
}

.feature-list-icon {
    width: 2.9rem; /* 40px scaled */
    height: 2.9rem; /* 40px scaled */
    border-radius: 0.5rem;
    background-color: #eff6ff; /* blue-50 */
    color: #1d4ed8; /* blue-700 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem; /* 16px scaled */
    flex-shrink: 0;
}

.feature-list-icon i {
    font-size: 1.125rem; /* scaled */
}

.feature-list-text h3 {
    font-size: 1.125rem; /* text-lg scaled */
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    margin-bottom: 0.25rem;
}

.feature-list-text p {
    font-size: 0.875rem; /* text-sm scaled */
    color: #64748b; /* slate-500 */
    line-height: 1.5;
    margin: 0;
}

.slide-full-right {
    width: 45%;
    background-color: #f8fafc; /* slate-50 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-full-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e293b; /* slate-800 dark overlay base */
    z-index: 1;
}

.slide[data-slide="5"] .slide-full-right::before {
    display: none;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://page.gensparksite.com/slides_images/52c6fff8e8edab3cd2cbfdeb19706ea6.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: multiply;
    z-index: 2;
}

.slide[data-slide="5"] .image-overlay {
    display: none;
}

.highlight-box {
    background-color: #1d4ed8; /* blue-700 */
    color: white;
    padding: 2.9rem; /* 40px scaled */
    width: 80%;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.slide[data-slide="5"] .highlight-box {
    border-radius: 1rem;
}

.geometric-accent {
    position: absolute;
    top: -1.45rem; /* -20px scaled */
    right: -1.45rem; /* -20px scaled */
    width: 7.3rem; /* 100px scaled */
    height: 7.3rem; /* 100px scaled */
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.highlight-icon {
    margin-bottom: 1rem;
    color: #bfdbfe; /* blue-200 */
}

.highlight-icon i {
    font-size: 2.5rem; /* text-4xl scaled */
}

.highlight-box h3 {
    font-size: 1.75rem; /* text-2xl scaled */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
    color: white;
}

.highlight-box p {
    color: #dbeafe; /* blue-100 */
    line-height: 1.6;
    font-size: 0.875rem; /* text-sm scaled */
    margin: 0;
}

.highlight-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(96, 165, 250, 0.3); /* blue-400/30 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.highlight-stats h4 {
    font-size: 0.75rem; /* text-xs scaled */
    color: #bfdbfe; /* blue-200 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.stat-value {
    font-size: 1.75rem !important; /* text-2xl scaled */
    font-weight: 700;
    color: white !important;
}

.slide-full-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.6rem 3.5rem 1rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #e2e8f0; /* slate-200 */
    z-index: 20;
}

/* Grid Layout for Slide 4 */
.slide-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem; /* scaled down from 40px */
    align-items: center;
}

.grid-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.grid-headline {
    font-size: 2.1rem; /* 4xl scaled */
    font-weight: 300;
    color: #0f172a; /* slate-900 */
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.text-green-bold {
    font-weight: 700;
    color: #15803d; /* green-700 */
}

.grid-context-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.4rem;
}

.grid-context-text {
    font-size: 1.125rem; /* lg scaled */
    color: #475569; /* slate-600 */
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.shift-box {
    background-color: #f8fafc; /* slate-50 */
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0; /* slate-200 */
}

.shift-title {
    color: #1e293b; /* slate-800 */
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.slide[data-slide="4"] .shift-header h3 {
    color: #15803d; /* green-700 */
}

.slide[data-slide="4"] .shift-header i {
    color: #16a34a; /* green-600 */
}

.shift-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem; /* sm scaled */
    color: #64748b; /* slate-500 */
}

.strikethrough {
    text-decoration: line-through;
    color: #94a3b8; /* slate-400 */
}

.arrow-green {
    color: #16a34a; /* green-600 */
}

.highlight-green {
    font-weight: 700;
    color: #15803d; /* green-700 */
    background-color: #f0fdf4; /* green-50 */
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Slide 3: remap green palette to red variants */
.slide[data-slide="3"] .header-bar-green {
    background-color: #ef4444; /* red-500 */
}

.slide[data-slide="3"] .text-green-bold {
    color: #b91c1c; /* red-700 */
}

.slide[data-slide="3"] .arrow-green {
    color: #ef4444; /* red-500 */
}

.slide[data-slide="3"] .highlight-green {
    color: #b91c1c; /* red-700 */
    background-color: #fef2f2; /* red-50 */
}

.slide[data-slide="3"] .arrow-line {
    background-color: #fecaca; /* red-200 */
}

.slide[data-slide="3"] .opp-card {
    background-color: #fef2f2; /* red-50 */
    border-left-color: #ef4444; /* red-500 */
}

.slide[data-slide="3"] .advantage-item .icon-box {
    border-color: #fecaca; /* red-200 */
}

.slide[data-slide="3"] .advantage-item .icon-box i {
    color: #ef4444; /* red-500 */
}

.slide[data-slide="3"] .impact-box {
    margin-top: 0;
}

.quote-text {
    font-size: 0.875rem; /* sm scaled */
    color: #94a3b8; /* slate-400 */
    font-style: italic;
    margin-top: 0.5rem;
}

/* Right Column: Opportunities */
.grid-col-right {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.arrow-line {
    position: absolute;
    left: 2.85rem; /* Center of icon box */
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background-color: #d1fae5; /* green-100 */
    z-index: 0;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    z-index: 1;
}

.advantage-item .icon-box {
    width: 2.8rem;
    height: 2.8rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857; /* green-700 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
    margin-bottom: 0;
}

.advantage-item .icon-box i {
    font-size: 1.125rem; /* lg scaled */
}

.opp-card {
    background-color: #f0fdf4; /* green-50 */
    border-left: 4px solid #10b981; /* emerald-500 */
    padding: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.opp-card h3 {
    font-size: 1.125rem; /* lg scaled */
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    margin-bottom: 0.25rem;
}

.opp-card p {
    color: #475569; /* slate-600 */
    font-size: 0.875rem; /* sm scaled */
    margin: 0;
    line-height: 1.4;
}

/* Slide 6: Approach / Process Flow */
.slide-approach-main {
    display: flex;
    flex-direction: column;
}

.approach-headline {
    margin-bottom: 1.4rem;
}

.approach-headline h1 {
    font-size: 2.1rem;
    font-weight: 300;
    color: #0f172a; /* slate-900 */
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.approach-headline p {
    font-size: 1.125rem;
    color: #64748b; /* slate-500 */
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 12px;
    padding: 0 1.2rem;
}

.process-line-active {
    position: absolute;
    top: 2.85rem;
    left: 3.25rem;
    right: 3.25rem;
    height: 4px;
    background-color: #bfdbfe; /* blue-200 */
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 2;
    width: 11.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle {
    width: 4.7rem;
    height: 4.7rem;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 4px solid #e2e8f0; /* slate-200 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10);
}

.step-circle.active {
    border-color: #1d4ed8; /* blue-700 */
    background-color: #1d4ed8;
    color: #ffffff;
}

.step-number {
    position: absolute;
    top: -12px;
    right: 2.65rem;
    background-color: #1e293b; /* slate-800 */
    color: #ffffff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.step-icon {
    font-size: 1.8rem;
    color: #64748b; /* slate-500 */
}

.step-circle.active .step-icon {
    color: #ffffff;
}

.step-title {
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    font-size: 0.875rem;
    margin-bottom: 0;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title p,
.step-desc p {
    margin: 0;
}

.step-desc {
    font-size: 14px;
    color: #64748b; /* slate-500 */
    line-height: 1.5;
}

.slide[data-slide="6"] .step-desc p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.approach-insight {
    margin-top: auto;
    background-color: #f8fafc; /* slate-50 */
    border: 1px solid #e2e8f0; /* slate-200 */
    padding: 1.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.insight-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe; /* blue-100 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8; /* blue-700 */
    flex-shrink: 0;
}

.insight-icon i {
    font-size: 1.125rem;
}

.insight-kicker {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem 0;
}

.insight-body {
    color: #475569; /* slate-600 */
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Slide 7: Introducing Blaze */
.slide-blaze-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blaze-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.1rem;
}

.blaze-left-intro { max-width: 44rem; }
.blaze-right-summary { max-width: 24rem; text-align: right; }
.blaze-right-summary p { color: #64748b; font-size: 0.875rem; line-height: 1.6; margin-top: 0.5rem; margin-bottom: 0; }

.slide[data-slide="7"] .blaze-right-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.slide[data-slide="7"] .blaze-right-summary .framework-badge {
    margin-bottom: 0.35rem;
}

.slide[data-slide="7"] .blaze-right-summary p {
    margin-top: 0;
}

.framework-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background-color: #1e293b; /* slate-800 */
    color: #ffffff;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.framework-badge i { color: #fb923c; /* orange-400 */ }

.blaze-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem; /* gap-6 scaled */
    flex: 1;
}

.capability-card {
    background-color: #f8fafc; /* slate-50 */
    border: 1px solid #e2e8f0; /* slate-200 */
    padding: 2rem; /* 32px */
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.slide[data-slide="7"] .capability-card {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    column-gap: 1.25rem;
    align-items: start;
}

.capability-card:hover {
    border-color: #1d4ed8; /* blue-700 */
    background-color: #f0f9ff; /* sky-50 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #eff6ff; /* blue-50 */
    color: #1d4ed8; /* blue-700 */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.slide[data-slide="7"] .capability-card .card-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
}

.capability-card:hover .card-icon {
    background-color: #1d4ed8;
    color: #ffffff;
}

.accent-corner {
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 2.4rem 2.4rem 0; /* 40px */
    border-color: transparent #e2e8f0 transparent transparent;
    transition: border-color 0.2s ease;
}

.capability-card:hover .accent-corner {
    border-color: transparent #1d4ed8 transparent transparent;
}

.capability-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.35rem 0;
}

.slide[data-slide="7"] .capability-card h3 {
    grid-column: 2;
}

.capability-card p {
    color: #475569; /* slate-600 */
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
}

.slide[data-slide="7"] .capability-card p {
    grid-column: 2;
}

/* Slide 8: AI Toolchain */
.slide-ai-main { display: flex; flex-direction: column; gap: 0.5rem; height: 100%; }

.ai-headline {
    margin-bottom: 1.4rem;
}

.ai-headline h1 {
    font-size: 2.1rem;
    font-weight: 300;
    color: #0f172a; /* slate-900 */
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.ai-main-content {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex: 1;
}

.slide[data-slide="8"] .ai-main-content {
    gap: 1rem;
}

.tool-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
}

.slide[data-slide="8"] .tool-grid {
    grid-auto-rows: auto;
}

.tool-card {
    background-color: #f8fafc; /* slate-50 */
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.5rem;
    padding: 1.35rem; /* ~22px */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.2s ease;
}

.slide[data-slide="8"] .tool-card {
    padding: 1.1rem;
    padding-right: 4.5rem;
}

.slide[data-slide="8"] .tool-card.synergy-card {
    padding-right: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card:hover {
    border-color: #93c5fd; /* blue-300 */
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    background-color: #ffffff;
}

.tool-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    margin: 0 0 0.35rem 0;
}

.tool-card p {
    font-size: 0.75rem;
    color: #64748b; /* slate-500 */
    line-height: 1.55;
    margin: 0;
}

.icon-wrapper {
    width: 3rem; /* 48px */
    height: 3rem;
    border-radius: 0.5rem;
    background-color: #eff6ff; /* blue-50 */
    color: #2563eb; /* blue-600 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}

.slide[data-slide="8"] .tool-card:not(.synergy-card) .icon-wrapper {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    margin-bottom: 0;
}

/* Synergy card inside grid */
.synergy-card {
    background-color: #eff6ff; /* blue-50 */
    border-color: #dbeafe; /* blue-100 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.synergy-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.synergy-plus {
    width: 2.4rem; height: 2.4rem; border-radius: 9999px;
    background-color: #1d4ed8; color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.5rem; box-shadow: 0 8px 16px -6px rgba(29,78,216,0.35);
}
.synergy-text { font-weight: 700; color: #1e3a8a; font-size: 0.875rem; line-height: 1.2; }

.connector-arrow {
    position: absolute;
    right: -1.6rem; /* ~ -26px */
    top: 50%; transform: translateY(-50%);
    color: #cbd5e1; /* slate-300 */
    font-size: 1.125rem;
    z-index: 10;
}

/* Right: dark result panel */
.result-section {
    flex: 1;
    background-color: #0f172a; /* slate-900 */
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.result-section::before {
    content: none;
}

.result-top { margin-bottom: 1.25rem; }
.result-icon {
    width: 3rem; height: 3rem; border-radius: 0.5rem;
    background-color: rgba(59,130,246,0.2); color: #93c5fd; display: flex; align-items: center; justify-content: center; margin-bottom: 0.8rem;
    font-size: 1.4rem;
}
.result-top h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 0.35rem 0; color: #ffffff; }
.result-top p { font-size: 0.875rem; color: #94a3b8; line-height: 1.55; margin: 0; }

.result-bottom { border-top: 1px solid #334155; padding-top: 1.25rem; }
.result-kicker { font-size: 0.75rem; color: #60a5fa; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 0.4rem 0; font-weight: 600; }
.result-metric { display: flex; align-items: baseline; gap: 0.5rem; }
.metric-big {
    font-size: 3rem; font-weight: 300; line-height: 1;
    background: linear-gradient(to right, #60a5fa, #ffffff);
    background-clip: text;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.metric-label { font-size: 1.125rem; color: #ffffff; font-weight: 300; }
.result-note { font-size: 0.75rem; color: #94a3b8; margin-top: 0.25rem; }

/* Slide 9: Partnership Model */
.slide-partnership-main { display: flex; flex-direction: column; height: 100%; }

.partnership-headline {
    margin-bottom: 1.4rem;
}

.partnership-headline h1 {
    font-size: 2.1rem;
    font-weight: 300;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.partnership-subtitle {
    color: #64748b; /* slate-500 */
    font-size: 1.125rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.45;
}

.swimlane-container {
    flex: 1;
    margin-top: 0;
    position: relative;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.lane {
    display: flex;
    height: 50%;
    position: relative;
}

.lane-header {
    width: 14.5rem;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e2e8f0;
    z-index: 10;
}

.lane-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.lane-header p {
    margin: 0.35rem 0 0 0;
    font-size: 0.75rem;
    line-height: 1.25;
}

.lane-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 2rem;
    position: relative;
}

.lane-top {
    background-color: #f8fafc; /* slate-50 */
    border-bottom: 2px dashed #cbd5e1; /* slate-300 */
}

.lane-top .lane-header { background-color: #f1f5f9; /* slate-100 */ }

.lane-bottom { background-color: #eff6ff; /* blue-50 */ }
.lane-bottom .lane-header { background-color: #dbeafe; /* blue-100 */ }

.lane-badge {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lane-badge-consulting { background-color: #e2e8f0; color: #475569; }
.lane-badge-volt { background-color: #bfdbfe; color: #1d4ed8; }

.lane-bottom .lane-header h3 { color: #0c1f4a; }
.lane-bottom .lane-header p { color: rgba(37, 99, 235, 0.7); }
.lane-top .lane-header p { color: #64748b; }

.activity-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.1rem;
    width: 11.2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
}

.lane-top .activity-card { border-top: 3px solid #64748b; }
.lane-bottom .activity-card { border-top: 3px solid #2563eb; }

.card-icon {
    font-size: 1.125rem;
    margin-bottom: 0.6rem;
}

.lane-top .card-icon { color: #64748b; }
.lane-bottom .card-icon { color: #2563eb; }

.activity-card h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}

.activity-card p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

.connection-layer {
    position: absolute;
    top: 0;
    left: 14.5rem;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.vertical-line {
    position: absolute;
    top: 25%;
    height: 50%;
    border-left: 2px dashed #94a3b8;
    width: 0;
    z-index: 1;
}

.vertical-line i {
    position: absolute;
    bottom: -0.55rem;
    left: -0.35rem;
    color: #94a3b8;
    font-size: 0.75rem;
}

.pos-1 { left: 12.5%; }
.pos-2 { left: 37.5%; }
.pos-3 { left: 62.5%; }
.pos-4 { left: 87.5%; }

.collab-badge {
    position: absolute;
    top: 50%;
    left: calc(14.5rem + (100% - 14.5rem) / 2);
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.collab-badge i { color: #3b82f6; }

/* Slide 10: Example Engagement Models */
.slide-engagement-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.engagement-title {
    margin-bottom: 1.4rem;
}

.engagement-title h1 {
    font-size: 2.1rem;
    font-weight: 300;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.card-container {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
    flex: 1;
}

.engagement-card {
    flex: 1;
    background-color: #f8fafc; /* slate-50 */
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.5rem;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.engagement-card:hover {
    transform: translateY(-5px);
    border-color: #1d4ed8; /* blue-700 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    z-index: 10;
}

.card-icon-box {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.icon-style-1 { background-color: #eff6ff; color: #2563eb; }
.icon-style-2 { background-color: #f0f9ff; color: #0284c7; }
.icon-style-3 { background-color: #f5f3ff; color: #7c3aed; }
.icon-style-4 { background-color: #ecfeff; color: #0891b2; }

.slide[data-slide="10"] .card-icon-box {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.slide[data-slide="10"] .engagement-card:hover .card-icon-box {
    background-color: #1d4ed8;
    color: #ffffff;
}

.engagement-card:hover .icon-style-1 { background-color: #2563eb; color: #ffffff; }
.engagement-card:hover .icon-style-2 { background-color: #0284c7; color: #ffffff; }
.engagement-card:hover .icon-style-3 { background-color: #7c3aed; color: #ffffff; }
.engagement-card:hover .icon-style-4 { background-color: #0891b2; color: #ffffff; }

.engagement-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.35rem 0;
}

.engagement-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 1.1rem 0;
    min-height: 2.1rem;
}

.engagement-divider {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

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

.check-list li {
    margin-bottom: 0.65rem;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

.check-list li:last-child { margin-bottom: 0; }

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #2563eb; /* blue-600 */
}

.slide[data-slide="10"] .check-list li::before {
    color: #16a34a;
    font-size: 0.75rem;
}

.outcome-bar {
    margin-top: 1.1rem;
    background-color: #0f172a;
    border-radius: 0.5rem;
    padding: 1.1rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.outcome-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.outcome-icon {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.slide[data-slide="10"] .outcome-icon i {
    color: #ffffff;
}

.outcome-title {
    margin: 0 0 0.2rem 0;
    font-weight: 700;
    font-size: 0.875rem;
    color: #ffffff;
}

.outcome-subtitle {
    margin: 0;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

.outcome-metrics {
    display: flex;
    gap: 2.2rem;
    padding-right: 0.25rem;
}

.metric-box { text-align: center; }

.metric-value {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
    color: #60a5fa;
    line-height: 1.1;
}

.metric-caption {
    margin: 0.25rem 0 0 0;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    font-weight: 600;
}

/* Slide 11: Impact for Consulting Partners */
.slide-impact-main {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 2.2rem;
    height: 100%;
    align-items: center;
}

.impact-left { display: flex; flex-direction: column; justify-content: center; }

.impact-title {
    margin-bottom: 1.4rem;
}

.impact-title h1 {
    font-size: 2.1rem;
    font-weight: 300;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.impact-list { display: flex; flex-direction: column; }

.impact-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9; /* slate-100 */
    transition: all 0.2s ease;
}

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

.impact-item:hover {
    background-color: #f8fafc; /* slate-50 */
    transform: translateX(10px);
    border-radius: 0.5rem;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.icon-speed { background-color: #eff6ff; color: #2563eb; }
.icon-margin { background-color: #ecfdf5; color: #059669; }
.icon-win { background-color: #fff7ed; color: #ea580c; }
.icon-tech { background-color: #f3e8ff; color: #7c3aed; }
.icon-value { background-color: #f0f9ff; color: #0ea5e9; }

.slide[data-slide="11"] .icon-box {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.impact-copy h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.2rem 0;
}

.impact-copy p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

.impact-right { padding: 0.25rem 0; }

.accelerator-card {
    background-color: #0f172a; /* slate-900 */
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.accelerator-card::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 11rem;
    height: 11rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.accelerator-card::after {
    content: "";
    position: absolute;
    bottom: -1.6rem;
    left: -1.6rem;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 9999px;
    background-color: rgba(37, 99, 235, 0.1);
    pointer-events: none;
}

.accelerator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(30, 58, 138, 0.5);
    border: 1px solid rgba(29, 78, 216, 0.5);
    color: #93c5fd;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.1rem;
}

.accelerator-headline {
    font-size: 1.85rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.accelerator-headline-accent { font-weight: 700; color: #60a5fa; }

.accelerator-body {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0 0 14px 0;
}

.accelerator-footer-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.accelerator-footer-icon {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.accelerator-footer-title {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
}

.accelerator-footer-subtitle {
    margin: 0;
    color: #94a3b8;
    font-size: 0.75rem;
}

.stat-divider {
    height: 1px;
    background-color: #334155;
    margin: 1rem 0;
}

.accelerator-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-value {
    margin: 0;
    font-size: 1.5625rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    margin: 0.25rem 0 0 0;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    font-weight: 600;
}

/* Slide 12: Partnership Opportunity */
.slide-opportunity-main { display: flex; flex-direction: column; height: 100%; }

.opportunity-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding-bottom: 1.2rem;
}

.slide[data-slide="12"] .opportunity-center {
    align-items: flex-start;
    text-align: left;
}

.slide[data-slide="12"] .opportunity-hero-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.8rem;
}

.slide[data-slide="12"] .opportunity-hero-left {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    min-width: 0;
}

.slide[data-slide="12"] .hero-visual {
    margin-bottom: 0;
    flex-shrink: 0;
}

.slide[data-slide="12"] .opportunity-headline {
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
    width: 6.6rem;
    height: 6.6rem;
    margin-bottom: 1.6rem;
}

.main-icon-circle {
    width: 100%;
    height: 100%;
    background-color: #eff6ff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: 2.6rem;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
    border: 1px solid #dbeafe;
}

.trend-badge {
    position: absolute;
    bottom: -0.55rem;
    right: -0.55rem;
    width: 2.7rem;
    height: 2.7rem;
    background-color: #1d4ed8;
    border: 4px solid #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.opportunity-headline { max-width: 52rem; margin-bottom: 1.4rem; }

.opportunity-headline h1 {
    font-size: 2.1rem;
    font-weight: 300;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.opportunity-headline p {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 300;
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.opportunity-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 60rem;
    margin-bottom: 2.4rem;
}

.outcome-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.7rem 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.outcome-card:hover {
    transform: translateY(-5px);
    border-color: #93c5fd;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.outcome-icon {
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
    color: #475569;
}

.slide[data-slide="12"] .outcome-icon {
    color: #ffffff;
}

.outcome-card:hover .outcome-icon { color: #1d4ed8; }

.slide[data-slide="12"] .outcome-card:hover .outcome-icon { color: #ffffff; }

.outcome-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.35rem 0;
}

.outcome-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.cta-button {
    background-color: #0f172a;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.cta-button i { font-size: 0.875rem; }

/* Split Layout for Slide 3 */
.slide-main-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
    min-height: 0;
}

.split-col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.split-headline {
    font-size: 2.1rem; /* 4xl scaled */
    font-weight: 300;
    color: #0f172a; /* slate-900 */
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.text-bold-dark {
    font-weight: 700;
    color: #0f172a; /* slate-900 */
}

.split-context {
    font-size: 1.125rem; /* lg scaled */
    color: #64748b; /* slate-500 */
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-bottom: 1.4rem;
}

.impact-box {
    background-color: #fef2f2; /* red-50 */
    border: 1px solid #fecaca; /* red-200 */
    padding: 1.17rem;
    border-radius: 0.5rem;
    margin-top: 40px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.47rem;
}

.text-red-icon {
    color: #dc2626; /* red-600 */
    font-size: 1.125rem; /* xl scaled */
}

.impact-header h3 {
    font-weight: 700;
    color: #b91c1c; /* red-700 */
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem; /* sm scaled */
    margin: 0;
}

.impact-text {
    font-size: 1.125rem; /* xl scaled */
    font-weight: 600;
    color: #1e293b; /* slate-800 */
    line-height: 1.25;
    margin: 0;
}

.split-col-right {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 1.25rem;
    padding-left: 0.9rem;
}

.problem-list::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 2px;
    background-color: #fee2e2; /* red-100 */
}

.problem-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.05rem 1.1rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
}

.problem-item:last-child {
    padding-bottom: 0.7rem;
}

.problem-item:hover {
    border-color: #fecaca; /* red-200 */
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.problem-icon-wrapper {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #fee2e2; /* red-100 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon-wrapper i {
    color: #ef4444; /* red-500 */
    font-size: 1.125rem; /* lg scaled */
}

.problem-content {
    padding-left: 0;
}

.problem-content h3 {
    font-size: 1.125rem; /* xl scaled */
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    margin-bottom: 0.18rem;
}

.problem-content p {
    font-size: 0.875rem;
    color: #64748b; /* slate-500 */
    margin: 0;
    line-height: 1.4;
}

.content-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-slide h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--accent-bg);
    padding: 1.2rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.duration-text {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

ul {
    text-align: left;
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: none;
}

ul li {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5625rem;
    line-height: 1;
    top: -2px;
}

/* Specific component styles for slides */
.stage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stage-item {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-role {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.3rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide { transform: scale(0.9); margin-bottom: -70px; }
}

@media (max-width: 1080px) {
    .slide { transform: scale(0.8); margin-bottom: -140px; }
}

@media (max-width: 960px) {
    .slide { transform: scale(0.7); margin-bottom: -210px; }
}

@media (max-width: 840px) {
    .slide { transform: scale(0.6); margin-bottom: -280px; }
}

@media (max-width: 720px) {
    .slide { transform: scale(0.5); margin-bottom: -350px; }
}

@media (max-width: 600px) {
    .slide { transform: scale(0.4); margin-bottom: -420px; }
}

@media (max-width: 480px) {
    .slide { transform: scale(0.3); margin-bottom: -490px; }
}

@media (max-width: 360px) {
    .slide { transform: scale(0.25); margin-bottom: -527px; }
}

/* Fullscreen mode */
.fullscreen .presentation-container {
    max-width: 100%;
    height: 100vh;
    margin: 0;
    background: #000;
}

.fullscreen .slide-container {
    margin: 0;
    border-radius: 0;
    aspect-ratio: 16 / 9;
    width: min(100vw, calc(100vh * 16 / 9));
    height: auto;
    max-height: 100vh;
    align-self: center;
}

.fullscreen .navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fullscreen .nav-btn {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.fullscreen .nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.fullscreen .slide-counter {
    color: var(--white);
}

/* Print styles */
@media print {
    body {
        background: white;
        height: auto;
        overflow: visible;
    }
    
    .presentation-container {
        max-width: none;
        height: auto;
    }
    
    .slide-container {
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        page-break-after: always;
        height: auto;
        min-height: 100vh;
        aspect-ratio: auto;
        width: 100%;
    }
    
    .slide {
        position: relative;
        opacity: 1;
        transform: none;
        page-break-inside: avoid;
        padding: 40px;
    }
    
    .navigation,
    .thumbnails,
    .progress-bar {
        display: none;
    }
}
