/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #1e40af;
    --primary-dark: #1e293b;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-orange: #f59e0b;
    --accent-purple: #8b5cf6;
    --accent-teal: #14b8a6;
    --accent-yellow: #fbbf24;
    
    /* Backgrounds */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    overflow: hidden;
    line-height: 1.6;
}

/* ==================== NAVIGATION ==================== */
.nav-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
}

.nav-controls button {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-controls button:hover {
    background: #1e3a8a;
    transform: scale(1.1);
}

.nav-controls button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: scale(1);
}

#slideCounter {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 60px;
    text-align: center;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0,0,0,0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e40af, #2563eb);
    transition: width 0.3s ease;
}

/* ==================== SLIDES CONTAINER ==================== */
.slides-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== COVER SLIDE - WHITE PROFESSIONAL ==================== */
.cover-slide-white {
    text-align: center;
    background: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    position: relative;
}

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

.trukkr-logo {
    font-size: 38px;
    font-weight: 900;
    color: #1e40af;
    letter-spacing: 2px;
}

.partnership-text {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 300;
}

.bank-logo-white {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-title-white {
    font-size: 68px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle-white {
    font-size: 32px;
    font-weight: 400;
    color: #1e40af;
    margin-bottom: 30px;
}

.divider-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e40af, transparent);
    margin: 30px 0;
}

.trial-period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stats-clean {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin-bottom: 40px;
}

.stat-clean {
    text-align: center;
    padding: 20px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-width: 200px;
    border-top: 4px solid #1e40af;
}

.stat-icon-clean {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-number-clean {
    font-size: 42px;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 8px;
}

.stat-label-clean {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-date {
    font-size: 16px;
    color: var(--text-light);
}

.footer-date p {
    margin: 0;
}

/* ==================== OLD COVER SLIDE (KEPT FOR COMPATIBILITY) ==================== */
.cover-slide {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cover-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    z-index: 1;
}

.company-logo, .bank-logo {
    font-size: 36px;
    font-weight: 900;
    background: white;
    color: var(--primary-blue);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.plus-sign {
    font-size: 48px;
    font-weight: 300;
}

.main-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1;
}

.subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 60px;
    opacity: 0.9;
    z-index: 1;
}

.cover-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    z-index: 1;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date {
    font-size: 18px;
    opacity: 0.7;
    z-index: 1;
}

/* ==================== CONTENT SLIDES ==================== */
.content-slide {
    max-width: 1400px;
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 30px 45px;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    max-height: 90vh;
}

.slide-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 5px;
    margin-top: 0;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 400;
}

/* ==================== CHALLENGE SLIDE ==================== */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.challenge-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 18px;
    border-radius: 12px;
    border-left: 5px solid #1e40af;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.challenge-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.challenge-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 13px;
}

.impact-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #1e40af;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    font-size: 18px;
    color: var(--text-primary);
}

/* ==================== SOLUTION SLIDE ==================== */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.solution-diagram {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.power-flow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
}

.power-source {
    text-align: center;
}

.power-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.arrow {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: bold;
}

.monitoring-arrow {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: bold;
    margin: 20px 0;
}

.monitoring-system, .dashboard-preview {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: var(--shadow-md);
}

.monitor-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.solution-features h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.solution-features ul {
    list-style: none;
}

.solution-features li {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
    line-height: 1.8;
}

.solution-features li:last-child {
    border-bottom: none;
}

/* ==================== HOW IT WORKS ==================== */
.tech-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-step {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.tech-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.tech-detail {
    background: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 15px;
}

.tech-label {
    font-weight: 600;
    color: var(--primary-blue);
}

/* ==================== SIMPLE SCREENSHOT ==================== */
.simple-screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.simple-screenshot img {
    max-width: 90%;
    max-height: 70vh;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

/* ==================== BRANCHES GRID ==================== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.branch-card {
    background: white;
    border-radius: 15px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    border: 3px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.branch-card.excellent {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.branch-card.warning {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

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

.branch-header h3 {
    font-size: 24px;
    color: var(--primary-dark);
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.online {
    background: var(--accent-green);
    color: white;
}

.big-stat {
    text-align: center;
    margin: 20px 0;
}

.big-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-blue);
}

.warning-text {
    color: var(--accent-orange) !important;
}

.big-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.power-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.power-indicator {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.grid-on {
    background: #d1fae5;
    color: #065f46;
}

.grid-off {
    background: #fee2e2;
    color: #991b1b;
}

.gen-on {
    background: #fef3c7;
    color: #92400e;
}

.gen-off {
    background: #f3f4f6;
    color: #6b7280;
}

.ups-standby {
    background: #dbeafe;
    color: #1e40af;
}

.branch-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e2e8f0;
}

.branch-details p {
    margin: 6px 0;
    font-size: 13px;
}

.insight-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 18px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
}

.insight-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* ==================== COMPACT SLIDE ==================== */
.compact-slide {
    padding: 25px 40px !important;
}

/* ==================== KPI GRID COMPACT ==================== */
.kpi-grid-compact {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.kpi-card-mini {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    border-top: 3px solid;
    text-align: center;
    transition: transform 0.2s ease;
}

.kpi-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.kpi-card-mini.green { border-color: var(--accent-green); background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%); }
.kpi-card-mini.red { border-color: var(--accent-red); background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%); }
.kpi-card-mini.blue { border-color: var(--primary-blue); background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%); }
.kpi-card-mini.orange { border-color: var(--accent-orange); background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%); }
.kpi-card-mini.purple { border-color: #2563eb; background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%); }
.kpi-card-mini.yellow { border-color: var(--accent-yellow); background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%); }
.kpi-card-mini.teal { border-color: var(--accent-teal); background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%); }

.kpi-mini-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.kpi-mini-label {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ==================== CHART CONTAINER LARGE ==================== */
.chart-container-large {
    margin-top: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-container-large h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--primary-dark);
}

.chart-placeholder-large {
    background: white;
    padding: 15px;
    border-radius: 12px;
    height: 450px;
    box-shadow: var(--shadow-sm);
}

/* ==================== KPI DASHBOARD (OLD) ==================== */
.kpi-dashboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 0;
}

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

.kpi-card {
    background: white;
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid;
    transition: transform 0.3s ease;
    text-align: center;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.kpi-card.green { border-color: var(--accent-green); background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%); }
.kpi-card.red { border-color: var(--accent-red); background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%); }
.kpi-card.blue { border-color: var(--primary-blue); background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%); }
.kpi-card.orange { border-color: var(--accent-orange); background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%); }
.kpi-card.purple { border-color: #2563eb; background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%); }
.kpi-card.yellow { border-color: var(--accent-yellow); background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%); }
.kpi-card.teal { border-color: var(--accent-teal); background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%); }

.kpi-icon {
    font-size: 26px;
    margin-bottom: 4px;
}

.kpi-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 4px 0;
}

.kpi-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.kpi-trend {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px;
}

.kpi-trend.up::before {
    content: '↑ ';
    color: var(--accent-green);
}

.kpi-trend.down::before {
    content: '↓ ';
    color: var(--accent-red);
}

/* ==================== CHARTS ==================== */
.chart-container {
    margin-top: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 18px;
    border-radius: 12px;
}

.chart-container h4 {
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--primary-dark);
}

.chart-placeholder {
    background: white;
    padding: 12px;
    border-radius: 12px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.chart-placeholder.large {
    min-height: 400px;
}

.chart-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

/* ==================== TRENDS ==================== */
.trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.trend-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px;
    border-radius: 15px;
}

.trend-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.trend-insight {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.weekly-summary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.weekly-summary h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

.summary-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.summary-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.summary-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
}

/* ==================== MONTHLY ==================== */
.monthly-stats {
    margin-bottom: 20px;
}

.month-card {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.month-card h4 {
    font-size: 28px;
    margin-bottom: 30px;
}

.month-highlight {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.highlight-number {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 10px;
}

.highlight-label {
    font-size: 18px;
    opacity: 0.9;
}

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

.insight-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.insight-card ul {
    list-style: none;
}

.insight-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.insight-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* ==================== FUEL MONITORING ==================== */
.fuel-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.fuel-feature {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--accent-orange);
    transition: transform 0.3s ease;
}

.fuel-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fuel-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fuel-feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.fuel-feature p {
    font-size: 14px;
    color: var(--text-secondary);
}

.fuel-integration {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.fuel-integration h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.integration-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.integration-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.integration-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.flow-arrow {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 0 10px;
}

.fuel-benefits {
    margin-bottom: 30px;
}

.fuel-benefits h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.benefit-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
}

.benefit-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.implementation-note {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
    text-align: center;
}

.implementation-note strong {
    font-size: 18px;
}

/* ==================== VALUE GRID ==================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 22px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-blue);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.value-details {
    text-align: left;
}

.value-details p {
    font-size: 14px;
    margin: 10px 0;
    color: var(--text-secondary);
}

.value-details strong {
    color: var(--primary-blue);
}

.value-metric {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

/* ==================== INSIGHTS COMPACT ==================== */
.insights-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.insight-mini {
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid;
    font-size: 13px;
    line-height: 1.5;
}

.insight-mini strong {
    font-weight: 700;
}

.insight-mini.critical {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: var(--accent-red);
    color: #7f1d1d;
}

.insight-mini.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--accent-green);
    color: #14532d;
}

.insight-mini.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: var(--primary-blue);
    color: #1e3a8a;
}

.insight-mini.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: var(--accent-orange);
    color: #78350f;
}

/* ==================== INSIGHTS (OLD) ==================== */
.insights-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.insight-block {
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid;
}

.insight-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.insight-block p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.insight-block.critical {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: var(--accent-red);
}

.insight-block.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--accent-green);
}

.insight-block.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: var(--primary-blue);
}

.insight-block.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: var(--accent-orange);
}

.recommendation {
    background: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.recommendation strong {
    color: var(--primary-blue);
}

.pattern-analysis {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 18px;
    border-radius: 12px;
    margin-top: 12px;
}

.pattern-analysis h4 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
    color: var(--primary-dark);
}

.insights-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.insights-table thead {
    background: var(--primary-blue);
    color: white;
}

.insights-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.insights-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

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

.insights-table .good {
    color: var(--accent-green);
    font-weight: 600;
}

.insights-table .poor {
    color: var(--accent-red);
    font-weight: 600;
}

.insights-table .critical {
    background: #fef2f2;
    color: var(--accent-red);
    font-weight: 700;
}

/* ==================== THANK YOU SLIDE ==================== */
.thankyou-slide {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 50px 80px;
    text-align: center;
}

.thankyou-content {
    margin-bottom: 30px;
}

.thankyou-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.thankyou-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.thankyou-subtitle {
    font-size: 42px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 25px;
}

.thankyou-divider {
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e40af, transparent);
    margin: 25px auto;
}

.thankyou-message {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.next-steps-compact {
    width: 100%;
    margin-bottom: 30px;
}

.next-steps-compact h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 30px 25px;
    border-radius: 15px;
    border-top: 5px solid #1e40af;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step-box h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.partnership-message {
    margin-bottom: 25px;
}

.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.partner-logo {
    font-size: 32px;
    font-weight: 900;
    padding: 15px 35px;
    border-radius: 12px;
    letter-spacing: 2px;
}

.partner-logo.trukkr {
    background: #1e40af;
    color: white;
}

.partner-logo.bank {
    background: var(--primary-dark);
    color: white;
}

.partnership-plus {
    font-size: 36px;
    font-weight: 300;
    color: #1e40af;
}

.partnership-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-footer {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    width: 100%;
    max-width: 900px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 700;
}

/* ==================== OLD ROADMAP (KEPT FOR COMPATIBILITY) ==================== */
.roadmap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.roadmap-phase {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.phase-label {
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
}

.phase-content {
    padding: 20px;
}

.phase-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

.phase-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.phase-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 18px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section > p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-box {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.3);
}

.cta-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

.contact-info {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
}

.contact-info p {
    margin: 5px 0;
    color: var(--text-secondary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1400px) {
    .content-slide {
        padding: 40px;
    }
    
    .slide-title {
        font-size: 42px;
    }
}

@media (max-width: 1200px) {
    .kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .challenge-grid,
    .trends-grid,
    .monthly-insights,
    .insights-container {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 20px;
    }
    
    .content-slide {
        padding: 30px;
        max-height: 85vh;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .branches-grid,
    .solution-content,
    .tech-flow,
    .fuel-overview,
    .benefit-grid,
    .summary-grid,
    .cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .nav-controls {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .nav-controls,
    .progress-bar {
        display: none;
    }
    
    .slide {
        page-break-after: always;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
}

