/* Angel Connect Presentation Styles */
/* Based on the Angel Connect website branding */

/* Expenses Breakdown Styles - Slide 6A */
.expenses-breakdown {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.total-investment {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8faff, #e6f2ff);
    border-radius: 16px;
    border: 2px solid #0066FF;
}

.total-investment .investment-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #0066FF;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.total-investment .investment-label {
    font-size: 1.2rem;
    color: #6B7280;
    font-weight: 500;
}

.expenses-chart {
    margin-bottom: 40px;
}

.expense-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    border: 1px solid #f0f4f8;
}

.expense-bar {
    min-width: 80px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    position: relative;
    overflow: hidden;
}

.expense-percent {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.expense-details {
    flex: 1;
}

.expense-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.expense-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.expense-details p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.4;
}

.runway-info {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, #0066FF, #0080FF);
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
}

.runway-stat {
    text-align: center;
    color: white;
}

.runway-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.runway-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Valuation Note Styles */
.valuation-note {
    background: linear-gradient(135deg, #f8faff, #e6f2ff);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #0066FF;
    margin-bottom: 30px;
    text-align: center;
}

.valuation-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #1A1A1A;
    line-height: 1.5;
}

.valuation-note strong {
    color: #0066FF;
    font-weight: 600;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #1A1A1A;
    overflow: hidden;
    height: 100vh;
}

/* Presentation Container */
.presentation-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation - Optimized for MacBook 13" */
.presentation-nav {
    background: #FFFFFF;
    border-bottom: 3px solid #0066FF;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.15);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 60px;
}

.nav-logo {
    height: 36px;
    width: auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 24px;
}

.slide-counter {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 16px;
    background: #F8FAFF;
    padding: 8px 16px;
    border-radius: 24px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    min-width: 60px;
    text-align: center;
}

.current-slide {
    color: #0066FF;
    font-weight: 600;
}

.progress-bar {
    width: 240px;
    height: 8px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    width: 5.56%; /* 1/18 slides */
    transition: width 0.4s ease;
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.4);
}

.nav-btn {
    background: #F8FAFF;
    border: 2px solid #0066FF;
    color: #0066FF;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
}

.nav-btn:hover {
    background: #0066FF;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

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

.nav-btn:disabled:hover {
    background: none;
    color: #1A1A1A;
    border-color: rgba(26, 26, 26, 0.2);
}

/* Slides Container - Optimized for MacBook 13" */
.slides-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-top: 64px; /* Account for fixed nav */
    height: calc(100vh - 64px);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.slide.prev {
    transform: translateX(-100px);
}

/* Slide Content - Optimized for MacBook 13" landscape */
.slide-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.slide-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
}

/* Title Slide Specific */
.title-slide {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
}

.logo-section {
    margin-bottom: 32px;
}

.main-logo {
    height: 90px;
    width: auto;
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #0066FF;
    margin-bottom: 24px;
}

.tagline {
    font-size: 24px;
    color: #6B7280;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.investment-highlight {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 32px 48px;
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.investment-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.equity-offer {
    font-size: 18px;
    opacity: 0.9;
}

.team-preview {
    margin-top: 32px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.team-photos {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0066FF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.contact-info {
    color: #6B7280;
    font-size: 18px;
    font-weight: 500;
    margin-top: 8px;
    padding: 12px 0;
}

/* Split Content Layout - Optimized for landscape */
.split-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
    height: auto;
    max-height: 70vh;
}

.market-side {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.ca-market {
    border-left: 4px solid #22C55E;
}

.mena-market {
    border-left: 4px solid #0066FF;
}

.market-side h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #0066FF;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-desc {
    color: #6B7280;
    font-style: italic;
}

.bridge-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    justify-content: center;
}

.bridge-visual {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    margin-bottom: 16px;
}

.bridge-text {
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.bridge-arrow {
    font-size: 24px;
    font-weight: bold;
}

.opportunity-bottom {
    text-align: center;
    margin-top: 16px;
    grid-column: 1 / -1;
}

.solution-box {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 24px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.solution-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Problems Grid - Landscape optimized */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    max-height: 65vh;
    overflow-y: auto;
}

.problem-card {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.problem-card ul {
    list-style: none;
    space-y: 8px;
}

.problem-card li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.problem-card li::before {
    content: "•";
    color: #0066FF;
    position: absolute;
    left: 0;
}

.current-state {
    text-align: center;
    background: #F8FAFF;
    padding: 20px;
    border-radius: 16px;
    margin-top: 16px;
}

.current-state h3 {
    color: #FF6B6B;
    font-size: 24px;
    margin-bottom: 8px;
}

/* Ecosystem Flow */
.ecosystem-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    background: #0066FF;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.step-content p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.flow-arrow {
    font-size: 24px;
    color: #0066FF;
    font-weight: bold;
}

.unique-value {
    text-align: center;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 32px;
    border-radius: 16px;
}

/* Market Breakdown */
.market-breakdown {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.market-circle-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.market-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 32px;
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.3);
}

.circle-content {
    text-align: center;
}

.circle-amount {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.circle-label {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
}

.market-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.market-detail {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #F8FAFF;
    border-radius: 12px;
}

.detail-amount {
    font-size: 24px;
    font-weight: 700;
    color: #0066FF;
}

.detail-label {
    font-size: 14px;
    color: #6B7280;
}

.opportunity-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
}

.metric-card {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.metric-card h4 {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.metric-card p {
    font-size: 14px;
    color: #6B7280;
}

.growth-context {
    text-align: center;
    background: #F8FAFF;
    padding: 24px;
    border-radius: 16px;
}

/* Revenue Streams */
.revenue-streams {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.revenue-stream {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
}

.revenue-stream.primary {
    border-left: 4px solid #0066FF;
}

.revenue-stream.secondary {
    border-left: 4px solid #22C55E;
}

.revenue-stream.future {
    border-left: 4px solid #F59E0B;
}

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

.stream-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.revenue-percentage {
    background: #0066FF;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.revenue-stream h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.revenue-stream ul {
    list-style: none;
    margin-bottom: 24px;
}

.revenue-stream li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    color: #6B7280;
}

.revenue-stream li::before {
    content: "✓";
    color: #22C55E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.revenue-projection {
    background: #F8FAFF;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #0066FF;
    font-size: 18px;
}

.scalability-note {
    text-align: center;
    background: #F8FAFF;
    padding: 32px;
    border-radius: 16px;
}

.scalability-note h3 {
    color: #0066FF;
    margin-bottom: 16px;
}

/* Traction Metrics */
.traction-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.traction-stat {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.traction-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.traction-label {
    font-size: 14px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-highlights h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

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

.portfolio-card {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.portfolio-card:hover {
    transform: translateY(-2px);
}

.portfolio-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-card p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 12px;
}

.sector {
    background: #0066FF;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.sector-distribution h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.sector-bars {
    max-width: 600px;
    margin: 0 auto;
}

.sector-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sector-name {
    min-width: 100px;
    font-weight: 500;
}

.bar {
    flex: 1;
    height: 24px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.sector-percent {
    min-width: 40px;
    font-weight: 600;
    color: #0066FF;
}

/* Final Slide */
.final-slide {
    justify-content: center;
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.investment-summary {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.investment-summary h2 {
    color: #0066FF;
    margin-bottom: 24px;
}

.investment-terms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.term {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #F8FAFF;
    border-radius: 8px;
}

.term-label {
    font-weight: 500;
    color: #6B7280;
}

.term-value {
    font-weight: 700;
    color: #0066FF;
}

.next-steps h3 {
    margin-bottom: 24px;
    color: #1A1A1A;
}

.timeline {
    background: #F8FAFF;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

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

.timeline-date {
    font-weight: 600;
    color: #0066FF;
}

.timeline-desc {
    color: #6B7280;
}

.contact-section h3 {
    margin-bottom: 24px;
}

.contact-details {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.contact-label {
    font-weight: 500;
    color: #6B7280;
}

.contact-value {
    font-weight: 600;
    color: #1A1A1A;
}

.cta-section {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 32px;
    border-radius: 16px;
}

.cta-section h2 {
    margin-bottom: 8px;
}

.cta-text {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-terms-container,
    .cta-actions {
        flex-direction: column;
        gap: 24px;
    }
    
    .validation-stats,
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .actions-grid,
    .scenarios-grid,
    .returns-scenarios {
        grid-template-columns: 1fr;
    }
    
    .risk-categories {
        grid-template-columns: 1fr;
    }
    
    .timeline-visual {
        flex-direction: column;
        gap: 16px;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .success-timeline {
        flex-direction: column;
        gap: 16px;
    }
    
    .success-timeline::before {
        display: none;
    }
    .slide-content {
        padding: 40px 16px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .main-title {
        font-size: 56px;
    }
    
    .problems-grid,
    .revenue-streams {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .traction-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-breakdown {
        flex-direction: column;
        gap: 32px;
    }
    
    .opportunity-metrics {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 16px;
    }
    
    .progress-bar {
        width: 120px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bridge-section {
        order: 2;
    }
    
    .traction-metrics {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-terms {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Team Grid Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.team-member {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.team-member.founder {
    border-left: 4px solid #0066FF;
}

.team-member.advisor {
    border-left: 4px solid #22C55E;
}

.member-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.member-role {
    color: #0066FF;
    font-weight: 500;
    margin-bottom: 12px;
}

.member-experience {
    list-style: none;
}

.member-experience li {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.member-experience li::before {
    content: "•";
    color: #0066FF;
    position: absolute;
    left: 0;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    background: #F8FAFF;
    padding: 24px;
    border-radius: 16px;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0066FF;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.advantage-card {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
}

.advantage-card.primary {
    border-left: 4px solid #0066FF;
    background: linear-gradient(135deg, #F8FAFF, #FFFFFF);
}

.advantage-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.advantage-card > p {
    color: #6B7280;
    margin-bottom: 16px;
}

.advantage-details ul {
    list-style: none;
}

.advantage-details li {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.advantage-details li::before {
    content: "✓";
    color: #22C55E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.competitive-moat {
    text-align: center;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 24px;
    border-radius: 16px;
}

/* Investment Terms Styles */
.investment-terms-container {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.terms-summary {
    flex: 1;
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.terms-summary h2 {
    color: #0066FF;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.term-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

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

.term-item.large {
    padding: 16px 0;
}

.term-label {
    font-weight: 500;
    color: #6B7280;
}

.term-value {
    font-weight: 700;
    color: #1A1A1A;
}

.term-item.large .term-value {
    font-size: 24px;
    color: #0066FF;
}

.investment-highlights {
    flex: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.highlight-item {
    background: #F8FAFF;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.highlight-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.highlight-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 12px;
    color: #6B7280;
}

.comparison-table {
    margin-top: 32px;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.terms-table th,
.terms-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.terms-table th {
    background: #F8FAFF;
    font-weight: 600;
    color: #1A1A1A;
}

.terms-table td strong {
    color: #0066FF;
}

/* Market Validation Styles */
.market-validation {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.validation-section {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.validation-section h3 {
    margin-bottom: 20px;
    color: #1A1A1A;
}

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

.validation-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFF;
    padding: 16px;
    border-radius: 12px;
}

.stat-icon {
    font-size: 24px;
}

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

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #0066FF;
}

.stat-desc {
    font-size: 12px;
    color: #6B7280;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.trend-item {
    background: #F8FAFF;
    padding: 16px;
    border-radius: 12px;
}

.trend-icon {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.trend-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.trend-item p {
    font-size: 12px;
    color: #6B7280;
}

.timing-section {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.timing-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.timing-point h4 {
    margin-bottom: 8px;
}

/* Exit Strategy Styles */
.exit-strategy {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-container {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.timeline-visual {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.timeline-period {
    flex: 1;
    text-align: center;
}

.period-years {
    display: block;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.period-content {
    background: #F8FAFF;
    padding: 16px;
    border-radius: 12px;
}

.period-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.period-content ul {
    list-style: none;
    text-align: left;
}

.period-content li {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.period-content li::before {
    content: "•";
    color: #0066FF;
    position: absolute;
    left: 0;
}

.timeline-arrow {
    font-size: 24px;
    color: #0066FF;
    font-weight: bold;
}

.exit-scenarios {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.scenario-card {
    background: #F8FAFF;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.scenario-card.primary {
    border-left: 4px solid #0066FF;
}

.scenario-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.scenario-card p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 12px;
}

.scenario-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.timeline {
    color: #0066FF;
    font-weight: 600;
}

.multiple {
    color: #22C55E;
    font-weight: 600;
}

.returns-analysis {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.returns-scenarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.return-scenario {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.return-scenario.conservative {
    background: linear-gradient(135deg, #F8FAFF, #FFFFFF);
    border: 1px solid #0066FF;
}

.return-scenario.optimistic {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
}

.scenario-metrics {
    display: flex;
    justify-content: space-between;
    margin: 16px 0;
}

.scenario-metrics .metric {
    text-align: center;
}

.scenario-metrics .metric-label {
    font-size: 12px;
    opacity: 0.8;
}

.scenario-metrics .metric-value {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

/* Risk Mitigation Styles */
.risk-mitigation {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.risk-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.risk-category {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.risk-items {
    margin-top: 16px;
}

.risk-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.risk-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.risk-problem,
.risk-solution {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.risk-icon,
.solution-icon {
    font-size: 16px;
}

.risk-text {
    color: #DC2626;
    font-weight: 500;
}

.solution-text {
    color: #22C55E;
    font-weight: 500;
}

.risk-assessment {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.risk-matrix {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.matrix-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
    justify-content: center;
}

.matrix-label {
    font-weight: 600;
    margin-right: 20px;
    color: #1A1A1A;
}

.impact-labels {
    display: flex;
    gap: 60px;
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.matrix-content {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.probability-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.probability-label > span:first-child {
    font-weight: 600;
    margin-bottom: 16px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #1A1A1A;
}

.prob-levels {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 11px;
    color: #6B7280;
    font-weight: 500;
    text-align: center;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    width: 280px;
    height: 200px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.matrix-cell {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: default;
    transition: all 0.2s ease;
}

.matrix-cell.low-risk {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: #065F46;
    border-color: #34D399;
}

.matrix-cell.medium-risk {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
    color: #9A3412;
    border-color: #FB923C;
}

.matrix-cell.high-risk {
    background: linear-gradient(135deg, #FECACA, #FCA5A5);
    color: #991B1B;
    border-color: #F87171;
}

.matrix-cell:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.risk-label {
    font-size: 8px;
    line-height: 1.1;
    padding: 2px;
    max-width: 100%;
    word-wrap: break-word;
}

.matrix-legend {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    justify-content: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

.legend-color {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.legend-color.low-risk {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border-color: #34D399;
}

.legend-color.medium-risk {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
    border-color: #FB923C;
}

.legend-color.high-risk {
    background: linear-gradient(135deg, #FECACA, #FCA5A5);
    border-color: #F87171;
}

.contingency-plans {
    background: #F8FAFF;
    padding: 24px;
    border-radius: 16px;
}

.contingency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.contingency-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    text-align: center;
}

.contingency-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 8px 0;
}

.contingency-item p {
    font-size: 12px;
    color: #6B7280;
}

/* KPI Dashboard Styles */
.kpi-dashboard {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kpi-section {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.kpi-card {
    background: #F8FAFF;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    color: #0066FF;
    display: block;
    margin-bottom: 4px;
}

.kpi-label {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.kpi-target {
    font-size: 12px;
    color: #6B7280;
}

.tracking-systems {
    background: #F8FAFF;
    padding: 24px;
    border-radius: 16px;
}

.tracking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.tracking-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracking-icon {
    font-size: 20px;
}

.tracking-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tracking-item p {
    font-size: 12px;
    color: #6B7280;
}

.success-indicators {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.success-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    position: relative;
}

.success-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #0066FF;
    z-index: 1;
}

.success-year {
    text-align: center;
    position: relative;
    z-index: 2;
}

.year-marker {
    background: #0066FF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 16px;
}

.year-targets {
    background: #F8FAFF;
    padding: 12px;
    border-radius: 8px;
    min-width: 120px;
}

.target {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
}

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

/* Next Steps Styles */
.next-steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.implementation-roadmap {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.roadmap-quarter {
    background: #F8FAFF;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.quarter-header {
    text-align: center;
    margin-bottom: 16px;
}

.quarter-label {
    display: block;
    font-weight: 700;
    color: #0066FF;
    font-size: 16px;
}

.quarter-title {
    font-size: 14px;
    color: #6B7280;
}

.quarter-tasks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task {
    font-size: 12px;
    color: #1A1A1A;
    padding: 4px 0;
}

.immediate-actions {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.action-item {
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.action-item.priority-high {
    border-left: 4px solid #DC2626;
    background: #FEF2F2;
}

.action-item.priority-medium {
    border-left: 4px solid #F59E0B;
    background: #FFFBEB;
}

.action-item.priority-low {
    border-left: 4px solid #22C55E;
    background: #F0FDF4;
}

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

.action-icon {
    font-size: 20px;
}

.action-header h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.action-timeline {
    font-size: 12px;
    color: #6B7280;
    background: white;
    padding: 4px 8px;
    border-radius: 8px;
}

.action-details ul {
    list-style: none;
}

.action-details li {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.action-details li::before {
    content: "•";
    color: #0066FF;
    position: absolute;
    left: 0;
}

.contact-cta {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.cta-primary,
.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta-primary h4,
.cta-secondary h4 {
    margin-bottom: 8px;
}

.cta-contact {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: white;
    color: #0066FF;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.cta-secondary ul {
    list-style: none;
    text-align: left;
}

.cta-secondary li {
    margin-bottom: 4px;
    opacity: 0.9;
}

/* Final Slide Specific Styles */
.value-proposition {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.value-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #F8FAFF;
    border-radius: 8px;
}

.value-icon {
    font-size: 20px;
}

.value-text {
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.contact-card {
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.contact-card h4 {
    color: #0066FF;
    margin-bottom: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 16px;
    color: #0066FF;
}

.contact-value {
    font-weight: 500;
}

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

.cta-primary-btn,
.cta-secondary-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-primary-btn {
    background: white;
    color: #0066FF;
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-primary-btn:hover {
    background: #F8FAFF;
}

.cta-secondary-btn:hover {
    background: white;
    color: #0066FF;
}

/* Bridge Section Enhanced Styles */\n.bridge-subtitle {\n    font-size: 12px;\n    opacity: 0.9;\n    margin-top: 4px;\n}\n\n.angel-connect-arrow {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    background: linear-gradient(135deg, #0066FF, #0052CC);\n    color: white;\n    padding: 12px 16px;\n    border-radius: 12px;\n    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);\n}\n\n.arrow-label {\n    font-size: 14px;\n    font-weight: 600;\n    margin-bottom: 4px;\n}\n\n.arrow-line {\n    font-size: 16px;\n    font-weight: bold;\n    letter-spacing: 2px;\n}\n\n/* Chart Size Fixes */
.sector-distribution {
    text-align: center;
}

.sector-distribution canvas {
    max-width: 400px !important;
    max-height: 200px !important;
    margin: 0 auto;
}

.projection-chart canvas {
    max-width: 500px !important;
    max-height: 250px !important;
}

.funds-visual canvas {
    max-width: 280px !important;
    max-height: 280px !important;
}

.ecosystem-chart-container {
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
}

.ecosystem-chart-container svg {
    max-width: 700px !important;
    max-height: 300px !important;
}

/* Performance Optimizations */
.slide {
    will-change: transform, opacity;
}

.nav-btn {
    will-change: transform;
}

.progress-fill {
    will-change: width;
}

/* Enhanced Landscape Layout Optimizations */

/* Improved bridge visual styling */
.bridge-section .angel-connect-arrow {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
    margin-top: 12px;
    position: relative;
}

.bridge-section .arrow-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bridge-section .arrow-line {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #FFD700;
}

/* Enhanced bridge visual with connection indicator */
.bridge-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid rgba(255, 107, 107, 0.8);
}

.bridge-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid rgba(255, 107, 107, 0.8);
}

/* Landscape-optimized grid layouts */
.ecosystem-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Compact slide content for landscape */
.slide-content > .split-content + .opportunity-bottom {
    margin-top: 20px;
}

/* Enhanced risk matrix layout for landscape */
.risk-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contingency-plans {
    margin-top: 0;
}

/* A4 Landscape Format (297mm x 210mm ≈ 1123px x 794px) */
@media print, (max-width: 1123px) {
    .presentation-container {
        width: 1123px;
        height: 794px;
    }
    
    .slides-container {
        height: 744px; /* 794 - 50px nav */
    }
    
    .slide-content {
        max-width: 1000px;
        padding: 20px;
        font-size: 14px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

/* Enhanced styles for simplified presentation */

/* Problem & Opportunity Layout */
.opportunity-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.problem-section, .solution-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.problem-icon, .solution-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.problem-section ul {
    list-style: none;
    margin: 16px 0;
}

.problem-section li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #6B7280;
}

.problem-section li::before {
    content: "•";
    color: #FF6B6B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-text {
    font-size: 18px;
    font-weight: 500;
    color: #0066FF;
    margin: 16px 0;
}

/* Business Model Flow */
.model-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    background: #F8FAFF;
    padding: 24px;
    border-radius: 16px;
}

.model-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.model-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.model-step p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}

.step-metric {
    background: #0066FF;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.arrow-right {
    font-size: 24px;
    color: #0066FF;
    font-weight: bold;
    margin: 0 16px;
}

.revenue-streams h3 {
    text-align: center;
    margin-bottom: 16px;
    color: #1A1A1A;
}

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

.revenue-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.revenue-percent {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.revenue-label {
    font-size: 14px;
    color: #6B7280;
}

/* Results Dashboard */
.results-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

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

.metric-big .metric-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 8px;
}

.metric-big .metric-label {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.2;
}

.portfolio-highlights h3 {
    margin-bottom: 16px;
    text-align: center;
}

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

.portfolio-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-logo {
    font-size: 24px;
    margin-bottom: 8px;
}

.portfolio-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1A1A1A;
}

.portfolio-item p {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 8px;
}

.valuation {
    background: #22C55E;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

/* Team Showcase */
.founders-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.founder-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid #0066FF;
}

.founder-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1A1A1A;
}

.founder-card h4 {
    font-size: 14px;
    color: #0066FF;
    margin-bottom: 8px;
    font-weight: 500;
}

.founder-card p {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    background: #F8FAFF;
    border-radius: 16px;
    padding: 20px;
}

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

.team-stat .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 4px;
}

.team-stat .stat-label {
    font-size: 12px;
    color: #6B7280;
}

/* Investment Offer */
.offer-highlight {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.offer-amount, .offer-equity, .offer-valuation {
    text-align: center;
}

.amount-number, .equity-number, .valuation-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.amount-label, .equity-label, .valuation-label {
    font-size: 14px;
    opacity: 0.9;
}

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

.term-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.term-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.term-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.term-item p {
    font-size: 14px;
    color: #6B7280;
}

.roi-stats {
    display: flex;
    justify-content: space-around;
    background: #F8FAFF;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

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

.roi-multiple {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #22C55E;
    margin-bottom: 4px;
}

.roi-timeframe {
    font-size: 12px;
    color: #6B7280;
}

/* Final Slide */
.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.investment-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.investment-label {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
}

.investment-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #0066FF;
}

.contact-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 16px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 16px;
    color: #0066FF;
}

.contact-value {
    font-weight: 500;
    color: #1A1A1A;
}

.steps-timeline {
    display: flex;
    justify-content: space-around;
    margin: 16px 0;
}

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

.step-number {
    display: block;
    width: 32px;
    height: 32px;
    background: #0066FF;
    color: white;
    border-radius: 50%;
    line-height: 32px;
    font-weight: 600;
    margin: 0 auto 8px;
}

.step-text {
    font-size: 14px;
    color: #6B7280;
}

.cta-section {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.cta-section h2 {
    margin-bottom: 8px;
    font-size: 20px;
}

.cta-section p {
    opacity: 0.9;
    font-size: 14px;
}

/* Data Notes for placeholders */
.data-note {
    background: #FFF3CD;
    border: 1px solid #FFEAA7;
    border-left: 4px solid #F39C12;
    color: #856404;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    font-style: italic;
}\n\n/* Print Styles */
@media print {
    .presentation-nav {
        display: none;
    }
    
    .slide {
        position: static;
        opacity: 1;
        transform: none;
        page-break-after: always;
        height: auto;
        min-height: 100vh;
    }
}