* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

/* Prevent text selection on navigation buttons */
.nav-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    height: 100vh;
}

@media (max-width: 768px) {
    body {
        overflow: auto;
        -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustment */
        -webkit-font-smoothing: antialiased; /* Smooth fonts on mobile */
    }
    
    /* Improve touch targets */
    button, .nav-btn, .cta-button {
        min-height: 44px; /* iOS recommended touch target */
        min-width: 44px;
    }
    
    /* Better scrolling */
    .slide {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

.presentation-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .presentation-container {
        overflow: visible;
        height: auto;
        min-height: 100vh;
    }
}

/* Navigation Controls */
.nav-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
}

.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.nav-contact-item:hover {
    color: #667eea;
}

.nav-contact-item:visited {
    color: #333;
}

.nav-contact-item:visited:hover {
    color: #667eea;
}

.nav-contact-item i {
    color: #667eea;
    font-size: 14px;
    flex-shrink: 0;
}

.nav-contact-founder {
    color: #667eea;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .nav-contact-info {
        display: none;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .nav-contact-info {
        gap: 15px;
        margin-left: 15px;
        padding-left: 15px;
    }
    
    .nav-contact-item {
        font-size: 12px;
    }
    
    .nav-contact-item span {
        display: none;
    }
    
    .nav-contact-item i {
        font-size: 16px;
    }
    
    .nav-contact-founder span {
        display: inline;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .nav-controls {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 20px;
        gap: 15px;
        width: calc(100% - 30px);
        max-width: 400px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        margin: 0 auto;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .slide-indicator {
        font-size: 14px;
        min-width: 50px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .nav-contact-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-controls {
        width: calc(100% - 20px);
        max-width: 100%;
        padding: 10px 15px;
        gap: 12px;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .slide-indicator {
        font-size: 12px;
        min-width: 45px;
        text-align: center;
        flex-shrink: 0;
    }
}

.nav-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
}

.nav-btn:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.slide-indicator {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    min-width: 60px;
    text-align: center;
}

/* Slides */
.slide {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-in;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.slide.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .slide {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }
    
    .slide.active {
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 100px; /* Space for navigation */
    }
}

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

.slide-content {
    width: 100%;
    min-height: 100%;
    background: white;
    border-radius: 0;
    padding: 60px;
    box-shadow: none;
    animation: slideIn 0.5s ease-out;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .slide-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 20px;
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 15px 10px;
    }
    
    /* Extra small screens - further reduce font sizes */
    h1 {
        font-size: 1.5em !important;
    }
    
    h2 {
        font-size: 1.3em !important;
    }
    
    h3 {
        font-size: 1.1em !important;
    }
    
    .cover-main-title,
    .problem-main-title,
    .market-main-title,
    .solution-main-title,
    .workflow-main-title,
    .ecosystem-main-title,
    .slab-main-title,
    .mlm-main-title,
    .crm-main-title,
    .platform-main-title,
    .automation-main-title,
    .results-main-title,
    .benefits-main-title,
    .competitive-main-title,
    .revenue-main-title,
    .scalability-main-title,
    .cta-hero-title,
    .contact-main-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    /* Reduce padding further */
    .cover-content-wrapper,
    .problem-content-wrapper,
    .market-content-wrapper,
    .solution-content-wrapper,
    .workflow-content-wrapper,
    .ecosystem-content-wrapper,
    .slab-content-wrapper,
    .mlm-content-wrapper,
    .crm-content-wrapper,
    .platform-content-wrapper,
    .automation-content-wrapper,
    .results-content-wrapper,
    .benefits-content-wrapper,
    .competitive-content-wrapper,
    .revenue-content-wrapper,
    .scalability-content-wrapper,
    .cta-content-wrapper,
    .contact-content-wrapper {
        padding: 15px 10px !important;
        padding-bottom: 100px !important;
    }
    
    /* Smaller cards and buttons */
    .problem-card,
    .workflow-step-card,
    .ecosystem-checklist-item,
    .crm-feature-item,
    .contact-card {
        padding: 15px !important;
    }
    
    .nav-controls {
        bottom: 10px;
        padding: 10px 15px;
        width: calc(100% - 20px);
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .slide-indicator {
        font-size: 12px;
        min-width: 45px;
    }
}
    flex-direction: column;
    justify-content: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-title {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slide-title i {
    color: #764ba2;
}

/* Cover Slide */
.cover-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: white;
    background: #0f172a; /* Deep corporate blue */
}

.cover-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.92); /* Deep blue overlay */
}

/* Decorative Geometric Shapes */
.geo-shape {
    position: absolute;
    background-color: white;
    opacity: 0.05;
}

.geo-shape-1 {
    width: 33%;
    height: 100%;
    right: 0;
    top: 0;
    transform: skewX(-12deg) translateX(100px);
}

.geo-shape-2 {
    width: 20%;
    height: 60%;
    left: -5%;
    top: 20%;
    transform: skewY(15deg);
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 4px solid white;
    opacity: 0.05;
}

.geo-circle-1 {
    width: 128px;
    height: 128px;
    top: 96px;
    right: 96px;
}

.geo-circle-2 {
    width: 64px;
    height: 64px;
    top: 128px;
    right: 64px;
    background-color: #10b981;
    opacity: 0.2;
    filter: blur(20px);
    border: none;
}

.cover-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px;
}

/* Top Section */
.cover-top-section {
    display: flex;
    align-items: center;
}

.cover-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cover-logo-box {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-logo-box i {
    font-size: 32px;
    color: #1e293b;
}

.cover-company-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-company-name {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1;
    margin: 0;
    color: white;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

.cover-company-tag {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: #94a3b8;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Hero Section */
.cover-hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin-top: 32px;
}

.cover-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cover-accent-line {
    width: 48px;
    height: 2px;
    background-color: #f97316; /* Orange accent */
}

.cover-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #10b981; /* Green accent */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.cover-main-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
    color: white;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

.cover-title-accent {
    color: #f97316; /* Orange accent */
}

.cover-description {
    font-size: 24px;
    color: #cbd5e1;
    font-weight: 300;
    line-height: 1.6;
    max-width: 900px;
    margin-top: 16px;
    font-family: 'Roboto', sans-serif;
}

/* Bottom Section */
.cover-bottom-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-top: 16px;
}

.cover-founder-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cover-founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f97316;
    position: relative;
    overflow: hidden;
}

.cover-founder-avatar i {
    font-size: 32px;
    color: #64748b;
    position: absolute;
    bottom: 0;
}

.cover-founder-info {
    display: flex;
    flex-direction: column;
}

.cover-founder-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px 0;
}

.cover-founder-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.cover-footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cover-platform-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-badge i {
    font-size: 14px;
    color: #10b981;
}

.platform-badge span {
    font-size: 12px;
    color: #cbd5e1;
}

.cover-confidential {
    font-size: 12px;
    color: #64748b;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

/* Bottom Accent Bar */
.cover-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    display: flex;
}

.accent-bar-left {
    width: 50%;
    height: 100%;
    background-color: #f97316; /* Orange */
}

.accent-bar-right {
    width: 50%;
    height: 100%;
    background-color: #10b981; /* Green */
}

/* Legacy logo styles - kept for compatibility */
.logo-placeholder {
    margin-bottom: 40px;
}

.logo-placeholder i {
    color: white;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 5px;
}

.main-title {
    font-size: 4em;
    margin: 40px 0;
    line-height: 1.2;
    font-weight: 700;
    max-width: 100%;
}

.subtitle {
    font-size: 2em;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 100%;
}

/* Legacy founder styles - kept for compatibility */
.founder-info {
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.founder-name {
    font-size: 1.5em;
    font-weight: 600;
}

.cover-footer {
    margin-top: 60px;
}

.tagline {
    font-size: 1.8em;
    font-style: italic;
    opacity: 0.9;
    max-width: 100%;
}

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

.problem-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    transition: transform 0.3s;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3em;
    color: #e74c3c;
    margin-bottom: 15px;
}

.problem-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* Market Stats */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

.opportunity-content {
    margin-top: 40px;
}

.opportunity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 1.2em;
}

.opportunity-item i {
    color: #27ae60;
    font-size: 1.5em;
}

/* Solution Architecture */
.solution-architecture {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.solution-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #667eea;
    transition: transform 0.3s;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 15px;
}

.solution-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.solution-item p {
    color: #666;
    line-height: 1.6;
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 95%;
    border-left: 5px solid #667eea;
    transition: transform 0.3s;
}

.flow-step:hover {
    transform: translateX(10px);
}

.flow-number {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
}

.flow-content {
    flex: 1;
}

.flow-content i {
    font-size: 2em;
    color: #667eea;
    margin-bottom: 10px;
}

.flow-content h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.3em;
}

.flow-content p {
    color: #666;
    font-size: 1em;
}

.flow-arrow {
    color: #667eea;
    font-size: 2em;
}

/* Ecosystem Features */
.ecosystem-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #27ae60;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    color: #27ae60;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Slab Model */
.slab-model {
    margin-top: 30px;
}

.slab-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.slab-tier {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 60px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 90%;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.tier-1 { background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%); }
.tier-2 { background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%); }
.tier-3 { background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); color: #333; }
.tier-4 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

.tier-name {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
}

.tier-details {
    font-size: 1.1em;
    opacity: 0.9;
}

.slab-arrow {
    color: #667eea;
    font-size: 2em;
}

.slab-benefits {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.slab-benefits h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    font-size: 1.2em;
}

.benefit-item i {
    color: #667eea;
    font-size: 1.5em;
}

/* MLM Structure */
.mlm-structure {
    margin-top: 30px;
}

.mlm-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.mlm-level {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 80px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 90%;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.level-badge {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.level-label {
    font-size: 1.2em;
    opacity: 0.9;
}

.mlm-connector {
    color: #667eea;
    font-size: 2em;
}

.mlm-earnings {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.mlm-earnings h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5em;
    text-align: center;
}

.earning-type {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.earning-type i {
    font-size: 2.5em;
    color: #27ae60;
}

.earning-type strong {
    display: block;
    color: #333;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.earning-type p {
    color: #666;
    margin: 0;
}

/* Funnel */
.funnel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.funnel-stage {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 95%;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.stage-1 { width: 100%; }
.stage-2 { width: 90%; }
.stage-3 { width: 80%; }
.stage-4 { width: 70%; }
.stage-5 { width: 60%; }

.stage-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.funnel-stage h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.funnel-stage p {
    font-size: 1.1em;
    opacity: 0.9;
}

.funnel-arrow {
    color: #667eea;
    font-size: 2em;
}

/* CRM Features */
.crm-features {
    margin-top: 30px;
}

.crm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.crm-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s;
}

.crm-item:hover {
    transform: translateY(-5px);
}

.crm-item i {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 15px;
}

.crm-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.crm-item p {
    color: #666;
    line-height: 1.6;
}

.dashboard-placeholder {
    background: #e9ecef;
    border: 2px dashed #667eea;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    margin-top: 30px;
}

.placeholder-content {
    color: #667eea;
}

.placeholder-content i {
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.placeholder-content small {
    color: #666;
    font-size: 0.9em;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.platform-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid #667eea;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.platform-icon.android { color: #3ddc84; }
.platform-icon.ios { color: #000; }
.platform-icon.web { color: #667eea; }
.platform-icon.admin { color: #764ba2; }
.platform-icon.crm { color: #27ae60; }

.platform-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.platform-card > p {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.platform-features span {
    background: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 0.9em;
    color: #666;
}

.screenshot-placeholder {
    background: #e9ecef;
    border: 2px dashed #667eea;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    color: #667eea;
    font-size: 1.2em;
}

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.strategy-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #27ae60;
    transition: transform 0.3s;
}

.strategy-item:hover {
    transform: translateY(-5px);
}

.strategy-item i {
    font-size: 2.5em;
    color: #27ae60;
    margin-bottom: 15px;
}

.strategy-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.strategy-item p {
    color: #666;
    line-height: 1.6;
}

.result-claim {
    margin-top: 40px;
    text-align: center;
}

.claim-box {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.claim-box i {
    font-size: 3em;
}

.claim-box h2 {
    font-size: 2em;
    margin-bottom: 5px;
}

.claim-box p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.case-study {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #667eea;
}

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

.case-header h3 {
    color: #333;
    font-size: 1.5em;
}

.case-badge {
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.metric {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.metric-value {
    font-size: 1.8em;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.metric-label {
    color: #666;
    font-size: 0.9em;
}

.case-description {
    color: #666;
    line-height: 1.6;
}

.growth-chart-placeholder {
    background: #e9ecef;
    border: 2px dashed #667eea;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    color: #667eea;
    font-size: 1.2em;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #27ae60;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3em;
    color: #27ae60;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    margin-top: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.comparison-table::-webkit-scrollbar {
    height: 8px;
}

.comparison-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.comparison-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 1.1em;
    font-weight: bold;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

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

.advantage-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    color: #333;
}

.highlight-item i {
    color: #27ae60;
    font-size: 1.5em;
}

/* Efficiency */
.efficiency-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.efficiency-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #27ae60;
}

.efficiency-icon {
    font-size: 3em;
    color: #27ae60;
    margin-bottom: 15px;
}

.efficiency-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.efficiency-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.savings-badge {
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1em;
}

.roi-chart-placeholder {
    background: #e9ecef;
    border: 2px dashed #667eea;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    color: #667eea;
    font-size: 1.2em;
}

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

.roadmap-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #667eea;
    transition: transform 0.3s;
}

.roadmap-item:hover {
    transform: translateY(-5px);
}

.roadmap-icon {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 15px;
}

.roadmap-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.roadmap-item p {
    color: #666;
    line-height: 1.6;
}

.vision-statement {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.vision-text {
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.8;
}

.vision-text i {
    opacity: 0.7;
    margin: 0 10px;
}

/* CTA Slide */
.cta-slide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-title {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
}

.cta-subtitle {
    font-size: 2em;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 100%;
}

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

.cta-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

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

.cta-button i {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta-button strong {
    display: block;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.cta-button small {
    display: block;
    opacity: 0.8;
    font-size: 0.9em;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
}

.cta-benefit i {
    color: #2ecc71;
}

/* Contact Slide */
.contact-slide {
    text-align: center;
}

.contact-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.company-logo {
    margin-bottom: 40px;
}

.company-logo i {
    color: #667eea;
    margin-bottom: 15px;
}

.company-logo h2 {
    color: #333;
    font-size: 2.5em;
}

.founder-section {
    margin: 40px 0;
}

.founder-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
}

.founder-card i {
    font-size: 3em;
    margin-bottom: 15px;
}

.founder-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.founder-name-large {
    font-size: 2em;
    font-weight: bold;
}

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

.contact-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-left: 4px solid #667eea;
}

.contact-item i {
    font-size: 2em;
    color: #667eea;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.placeholder-text {
    color: #666;
    font-size: 1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-item {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s;
}

.social-item:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.footer-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.footer-note p {
    color: #666;
    font-size: 1.2em;
    margin: 10px 0;
}

.tagline-small {
    color: #667eea;
    font-weight: bold;
    font-style: italic;
}

/* Slide 2: Problem Slide Styles */
.problem-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.problem-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #f1f5f9;
    transform: skewX(12deg) translateX(100px);
    z-index: 0;
}

.problem-decorative-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: linear-gradient(135deg, #f97316 0%, transparent 100%);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    pointer-events: none;
    z-index: 0;
}

.problem-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px 64px;
    padding-bottom: 80px;
}

.problem-header {
    margin-bottom: 40px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.problem-header-label {
    margin-bottom: 4px;
}

.problem-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.problem-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.problem-title-light {
    color: #64748b;
    font-weight: 300;
}

.problem-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    flex: 1;
}

.problem-card {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    border-left: 4px solid transparent;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left-color: #f97316;
}

.problem-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0f172a;
    font-size: 24px;
}

.problem-icon-gray {
    color: #64748b;
}

.problem-icon-orange {
    color: #f97316;
}

.problem-icon-red {
    color: #ef4444;
}

.problem-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.problem-card-text {
    color: #64748b;
    line-height: 1.6;
    font-size: 18px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Slide 3: Market Slide Styles */
.market-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.market-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #f1f5f9;
    transform: skewX(12deg) translateX(100px);
    z-index: 0;
}

.market-decorative-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background-color: #f97316;
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    pointer-events: none;
    z-index: 0;
}

.market-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.market-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.market-header-label {
    margin-bottom: 4px;
}

.market-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.market-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.market-title-light {
    color: #64748b;
    font-weight: 300;
}

.market-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    height: 100%;
    flex: 1;
}

.market-left-column {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.market-stat-card {
    background: white;
    border-left: 5px solid #10b981;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.market-stat-orange {
    border-left-color: #f97316;
}

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

.stat-header i {
    font-size: 20px;
    color: #10b981;
}

.market-stat-orange .stat-header i {
    color: #f97316;
}

.stat-title {
    font-weight: 700;
    color: #475569;
    font-size: 18px;
    margin: 0;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.market-gap-card {
    background: #0f172a;
    color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.gap-label {
    font-weight: 300;
    color: #cbd5e1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 8px 0;
}

.gap-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.gap-highlight {
    color: #f97316;
    font-weight: 700;
}

.market-right-column {
    width: 66.666%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.market-chart-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 24px;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.chart-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0;
}

.chart-badge {
    font-size: 12px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    color: #64748b;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    flex: 1;
}

.market-bottom-row {
    display: flex;
    gap: 24px;
    height: 50%;
}

.market-chart-small {
    width: 50%;
}

.chart-title-small {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.chart-container-small {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-potential-card {
    width: 50%;
    background: #eff6ff;
    border: none;
    padding: 24px;
}

.potential-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0 0 16px 0;
}

.potential-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.potential-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.potential-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.potential-icon-city {
    color: #10b981;
}

.potential-icon-mobile {
    color: #f97316;
}

.potential-icon-network {
    color: #3b82f6;
}

.potential-item-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 14px;
    margin: 0 0 2px 0;
}

.potential-item-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Slide 4: Solution Slide Styles */
.solution-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.solution-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #f1f5f9;
    transform: skewX(-6deg) translateX(128px);
    z-index: 0;
}

.solution-decorative-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background-color: #10b981;
    opacity: 0.05;
    border-radius: 0 100% 0 0;
    pointer-events: none;
    z-index: 0;
}

.solution-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.solution-header {
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.solution-header-label {
    margin-bottom: 4px;
}

.solution-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.solution-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.solution-title-light {
    color: #64748b;
    font-weight: 300;
}

.solution-layout {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 48px;
    flex: 1;
}

.solution-left-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-right: 16px;
}

.solution-intro {
    color: #64748b;
    margin-bottom: 16px;
    font-size: 18px;
}

.solution-feature-card {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.solution-feature-card:hover {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left-color: #f97316;
    transform: translateX(10px);
}

.solution-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.solution-icon-blue {
    background: #dbeafe;
    color: #0f172a;
}

.solution-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.solution-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.solution-icon-purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.solution-feature-content {
    flex: 1;
}

.solution-feature-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0 0 4px 0;
}

.solution-feature-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.solution-right-column {
    width: 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-architecture-diagram {
    position: relative;
    width: 100%;
    height: 500px;
}

.arch-central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 20;
    border: 8px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.arch-pulse-ring {
    position: absolute;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    border: 2px solid #f97316;
    opacity: 0;
    animation: archPulse 2s infinite;
}

@keyframes archPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.arch-central-hub i {
    font-size: 48px;
    color: #f97316;
    margin-bottom: 8px;
}

.arch-hub-title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin: 0;
}

.arch-hub-subtitle {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.arch-node {
    position: absolute;
    width: 160px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: transform 0.3s ease;
}

.arch-node:hover {
    transform: scale(1.05);
}

.arch-node-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-top: 4px solid #3b82f6;
}

.arch-node-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-left: 4px solid #10b981;
}

.arch-node-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-right: 4px solid #7c3aed;
}

.arch-node-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 4px solid #f97316;
}

.arch-node-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.arch-icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.arch-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.arch-icon-purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.arch-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.arch-node-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 14px;
    margin: 0 0 2px 0;
}

.arch-node-subtitle {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.arch-connector {
    position: absolute;
    border: 2px dashed #cbd5e1;
    z-index: 0;
}

.arch-connector-top {
    height: 96px;
    width: 0;
    left: 50%;
    top: 96px;
    transform: translateX(-50%);
}

.arch-connector-bottom {
    height: 96px;
    width: 0;
    left: 50%;
    bottom: 96px;
    transform: translateX(-50%);
}

.arch-connector-left {
    width: 144px;
    height: 0;
    top: 50%;
    left: 144px;
    transform: translateY(-50%);
}

.arch-connector-right {
    width: 144px;
    height: 0;
    top: 50%;
    right: 144px;
    transform: translateY(-50%);
}

.arch-label {
    position: absolute;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.arch-label-top {
    top: 144px;
    left: 50%;
    transform: translateX(-50%);
}

.arch-label-bottom {
    bottom: 144px;
    left: 50%;
    transform: translateX(-50%);
}

.arch-label-left {
    left: 184px;
    top: 50%;
    transform: translateY(-20px);
}

.arch-label-right {
    right: 184px;
    top: 50%;
    transform: translateY(-20px);
}

/* Slide 5: Workflow Slide Styles */
.workflow-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.workflow-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 1;
}

.workflow-decorative-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background-color: #f1f5f9;
    border-radius: 100% 0 0 0;
    opacity: 0.5;
    z-index: 0;
}

.workflow-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.workflow-header {
    margin-bottom: 40px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.workflow-header-label {
    margin-bottom: 4px;
}

.workflow-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.workflow-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.workflow-title-light {
    color: #64748b;
    font-weight: 300;
}

.workflow-flow-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 16px;
}

.workflow-connector-line {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 5%;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    z-index: 0;
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 10;
}

.workflow-step-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    height: 220px;
}

.workflow-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.workflow-step-6 {
    border-bottom: 4px solid #10b981;
}

.workflow-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #0f172a;
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 20;
}

.workflow-step-number-green {
    background-color: #10b981;
    border-color: #10b981;
}

.workflow-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.workflow-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.workflow-step-card:hover .workflow-icon-blue {
    background: #2563eb;
    color: white;
}

.workflow-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.workflow-step-card:hover .workflow-icon-orange {
    background: #f97316;
    color: white;
}

.workflow-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.workflow-step-card:hover .workflow-icon-green {
    background: #10b981;
    color: white;
}

.workflow-icon-purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.workflow-step-card:hover .workflow-icon-purple {
    background: #7c3aed;
    color: white;
}

.workflow-icon-indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.workflow-step-card:hover .workflow-icon-indigo {
    background: #4f46e5;
    color: white;
}

.workflow-icon-red {
    background: #fee2e2;
    color: #ef4444;
}

.workflow-step-card:hover .workflow-icon-red {
    background: #ef4444;
    color: white;
}

.workflow-step-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.workflow-step-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.workflow-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    color: #cbd5e1;
    font-size: 20px;
    z-index: 20;
}

.workflow-arrow-1 { left: 15%; }
.workflow-arrow-2 { left: 31.5%; }
.workflow-arrow-3 { left: 48%; }
.workflow-arrow-4 { left: 64.5%; }
.workflow-arrow-5 { left: 81%; }

.workflow-insight-box {
    margin-top: 48px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
}

.workflow-insight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 20px;
}

.workflow-insight-content {
    flex: 1;
}

.workflow-insight-title {
    color: #0f172a;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 4px 0;
}

.workflow-insight-text {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Slide 6: Ecosystem Slide Styles */
.ecosystem-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.ecosystem-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #f1f5f9;
    transform: skewX(12deg) translateX(128px);
    z-index: 0;
}

.ecosystem-decorative-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background-color: #dbeafe;
    border-radius: 0 100% 0 0;
    pointer-events: none;
    z-index: 0;
}

.ecosystem-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.ecosystem-header {
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.ecosystem-header-label {
    margin-bottom: 4px;
}

.ecosystem-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ecosystem-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.ecosystem-title-light {
    color: #64748b;
    font-weight: 300;
}

.ecosystem-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    height: 100%;
    align-items: flex-start;
}

.ecosystem-left-column {
    width: 33.333%;
    height: 100%;
    padding-bottom: 64px;
}

.ecosystem-hero-graphic {
    background-color: #0f172a;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.ecosystem-deco-circle-1 {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border: 2px solid white;
    opacity: 0.1;
    border-radius: 50%;
}

.ecosystem-deco-circle-2 {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 96px;
    height: 96px;
    background-color: #f97316;
    opacity: 0.1;
    border-radius: 50%;
}

.ecosystem-shield-icon {
    width: 128px;
    height: 128px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.ecosystem-shield-icon i {
    font-size: 64px;
    color: #10b981;
}

.ecosystem-hero-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    z-index: 10;
}

.ecosystem-hero-text {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    z-index: 10;
}

.ecosystem-stats-row {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
    z-index: 10;
}

.ecosystem-stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    flex: 1;
}

.ecosystem-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #f97316;
}

.ecosystem-stat-box:last-child .ecosystem-stat-value {
    color: #10b981;
}

.ecosystem-stat-label {
    display: block;
    font-size: 11px;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.ecosystem-right-column {
    width: 66.666%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-bottom: 64px;
}

.ecosystem-checklist-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-left: 4px solid transparent;
}

.ecosystem-checklist-item:last-child {
    margin-bottom: 0;
}

.ecosystem-checklist-item:hover {
    transform: translateX(10px);
    border-left-color: #10b981;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ecosystem-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 24px;
}

.ecosystem-icon-blue {
    background: #dbeafe;
    color: #0f172a;
}

.ecosystem-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.ecosystem-icon-red {
    background: #fee2e2;
    color: #ef4444;
}

.ecosystem-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.ecosystem-icon-purple {
    background: #e9d5ff;
    color: #7c3aed;
}

.ecosystem-checklist-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.ecosystem-checklist-text {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Slide 7: Slab Slide Styles */
.slab-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.slab-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 1;
}

.slab-decorative-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #f9fafb;
    transform: skewX(12deg) translateX(128px);
    z-index: 0;
}

.slab-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.slab-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.slab-header-label {
    margin-bottom: 4px;
}

.slab-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slab-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.slab-title-light {
    color: #64748b;
    font-weight: 300;
}

.slab-layout {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 48px;
}

.slab-left-column {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding-right: 16px;
}

.slab-description-section {
    margin-bottom: 8px;
}

.slab-description-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.slab-description-text {
    color: #64748b;
    line-height: 1.6;
    font-size: 18px;
    margin: 0;
}

.slab-points-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slab-point-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.slab-point-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.slab-point-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.slab-point-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.slab-point-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.slab-point-title {
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.slab-point-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.slab-right-column {
    width: 66.666%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding-bottom: 48px;
    padding-left: 32px;
    position: relative;
}

.slab-ladder-container {
    position: relative;
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.slab-axis-horizontal {
    position: absolute;
    bottom: 48px;
    left: 32px;
    width: calc(100% - 32px);
    height: 2px;
    background-color: #d1d5db;
}

.slab-axis-vertical {
    position: absolute;
    bottom: 48px;
    left: 32px;
    width: 2px;
    height: calc(100% - 48px);
    background-color: #d1d5db;
}

.slab-axis-label {
    position: absolute;
    bottom: 45%;
    left: -24px;
    transform: rotate(-90deg);
    color: #9ca3af;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 11px;
    text-transform: uppercase;
}

.slab-ladder-steps {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 0 16px;
}

.slab-ladder-tier {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.slab-tier-badge {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    background-color: #1f2937;
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 700;
}

.slab-ladder-tier:hover .slab-tier-badge {
    opacity: 1;
}

.slab-tier-badge-top {
    background-color: #f97316;
    color: white;
    font-weight: 700;
}

.slab-tier-bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 16px;
    transition: all 0.3s ease;
}

.slab-ladder-tier:hover .slab-tier-bar {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.slab-tier-1 .slab-tier-bar {
    background-color: #93c5fd;
    height: 35%;
}

.slab-tier-2 .slab-tier-bar {
    background-color: #60a5fa;
    height: 50%;
}

.slab-tier-3 .slab-tier-bar {
    background-color: #3b82f6;
    height: 65%;
}

.slab-tier-4 .slab-tier-bar {
    background-color: #2563eb;
    height: 80%;
}

.slab-tier-5 .slab-tier-bar {
    background-color: #10b981;
    height: 95%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #fde047;
}

.slab-tier-percentage {
    position: absolute;
    top: -40px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #dbeafe;
    z-index: 10;
    font-size: 20px;
    font-weight: 700;
    color: #374151;
}

.slab-tier-percentage-top {
    width: 80px;
    height: 80px;
    border-color: #10b981;
    font-size: 24px;
    font-weight: 800;
    color: #10b981;
    flex-direction: column;
}

.slab-tier-percentage-top i {
    font-size: 12px;
    color: #f97316;
    margin-top: 2px;
}

.slab-tier-content {
    text-align: center;
    margin-top: 32px;
    padding: 0 8px;
}

.slab-tier-name {
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.slab-tier-name-large {
    font-size: 18px;
    letter-spacing: 0.05em;
}

.slab-tier-range {
    color: #1e40af;
    font-size: 12px;
    margin: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 2px 4px;
}

.slab-tier-3 .slab-tier-range,
.slab-tier-4 .slab-tier-range,
.slab-tier-5 .slab-tier-range {
    color: white;
}

.slab-tier-range-large {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
}

.slab-axis-x-label {
    position: absolute;
    bottom: -24px;
    width: 100%;
    text-align: center;
}

.slab-axis-x-label p {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Slide 8: MLM Slide Styles */
.mlm-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.mlm-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #f9fafb;
    transform: skewX(-12deg) translateX(128px);
    z-index: 0;
}

.mlm-decorative-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background-color: #d1fae5;
    border-radius: 0 100% 0 0;
    pointer-events: none;
    z-index: 0;
}

.mlm-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.mlm-header {
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.mlm-header-label {
    margin-bottom: 4px;
}

.mlm-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mlm-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.mlm-title-light {
    color: #64748b;
    font-weight: 300;
}

.mlm-layout {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 32px;
}

.mlm-left-column {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-right: 16px;
}

.mlm-intro {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 8px;
}

.mlm-feature-box {
    background: white;
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mlm-feature-green {
    border-left-color: #10b981;
}

.mlm-feature-blue {
    border-left-color: #3b82f6;
}

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

.mlm-feature-header i {
    font-size: 20px;
    color: #f97316;
}

.mlm-feature-green .mlm-feature-header i {
    color: #10b981;
}

.mlm-feature-blue .mlm-feature-header i {
    color: #3b82f6;
}

.mlm-feature-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0;
}

.mlm-feature-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.mlm-callout {
    margin-top: 16px;
    padding: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.mlm-callout-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px 0;
}

.mlm-callout-text {
    color: #0f172a;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.mlm-right-column {
    width: 66.666%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
}

.mlm-tree-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mlm-root-node-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 48px;
}

.mlm-tree-node {
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.mlm-tree-root {
    width: 80px;
    height: 80px;
    border-color: #f97316;
    background-color: #fff7ed;
}

.mlm-tree-root i {
    font-size: 32px;
    color: #f97316;
}

.mlm-tree-level-1 {
    border-color: #10b981;
}

.mlm-tree-level-1 i {
    color: #10b981;
}

.mlm-tree-level-2 {
    width: 40px;
    height: 40px;
    border-color: #3b82f6;
}

.mlm-tree-level-2 i {
    font-size: 12px;
    color: #3b82f6;
}

.mlm-tree-placeholder {
    border-style: dashed;
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.mlm-tree-placeholder i {
    color: #9ca3af;
}

.mlm-level-badge {
    position: absolute;
    bottom: -10px;
    background-color: #0f172a;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 700;
}

.mlm-badge-you {
    background-color: #f97316;
}

.mlm-badge-l1 {
    background-color: #10b981;
}

.mlm-connector-vertical {
    position: absolute;
    background-color: #cbd5e1;
    width: 2px;
    z-index: 0;
}

.mlm-connector-root {
    height: 48px;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.mlm-connector-horizontal {
    position: absolute;
    border-top: 2px solid #cbd5e1;
    z-index: 0;
}

.mlm-level-1-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
}

.mlm-connector-horizontal {
    width: 400px;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.mlm-connector-l1-1 {
    height: 24px;
    top: -24px;
    left: calc(50% - 200px);
}

.mlm-connector-l1-2 {
    height: 24px;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.mlm-connector-l1-3 {
    height: 24px;
    top: -24px;
    left: calc(50% + 200px);
}

.mlm-l1-node-wrapper {
    position: relative;
}

.mlm-earnings-tag {
    position: absolute;
    right: -56px;
    top: 16px;
    background: #d1fae5;
    color: #065f46;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mlm-tag-green {
    background: #d1fae5;
    color: #065f46;
}

.mlm-tag-blue {
    background: #dbeafe;
    color: #1e40af;
}

.mlm-level-2-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mlm-subtree {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mlm-subtree-1 {
    left: calc(50% - 200px);
    top: -10px;
}

.mlm-subtree-2 {
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
}

.mlm-subtree-3 {
    left: calc(50% + 200px);
    top: -10px;
}

.mlm-connector-l2 {
    height: 32px;
    top: -38px;
}

.mlm-connector-l2-h {
    width: 64px;
    top: -10px;
}

.mlm-l2-nodes {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.mlm-l2-node-wrapper {
    position: relative;
}

.mlm-connector-l2-v {
    height: 12px;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.mlm-earnings-tag.mlm-tag-blue {
    right: -32px;
    top: 8px;
    font-size: 9px;
    padding: 1px 4px;
}

.mlm-continuation {
    width: 100%;
    text-align: center;
    margin-top: 32px;
}

.mlm-continuation-line {
    height: 32px;
    border-left: 2px dashed #d1d5db;
    margin: 0 auto;
}

.mlm-continuation-label {
    padding: 4px 16px;
    background: #f1f5f9;
    border-radius: 9999px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

/* Slide 9: CRM Slide Styles */
.crm-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.crm-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #eff6ff;
    transform: skewX(12deg) translateX(192px);
    z-index: 0;
}

.crm-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 20;
}

.crm-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.crm-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.crm-header-label {
    margin-bottom: 4px;
}

.crm-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.crm-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.crm-title-light {
    color: #64748b;
    font-weight: 300;
}

.crm-layout {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 48px;
}

.crm-left-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-bottom: 48px;
}

.crm-intro-section {
    margin-bottom: 24px;
}

.crm-intro-text {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.crm-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.crm-feature-item:hover {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
    transform: translateX(5px);
}

.crm-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    font-size: 20px;
}

.crm-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.crm-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.crm-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.crm-feature-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0 0 4px 0;
}

.crm-feature-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.crm-right-column {
    width: 60%;
    height: 100%;
    padding-top: 16px;
    padding-bottom: 0;
    position: relative;
}

.crm-dashboard-label {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #0f172a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.crm-dashboard-mockup {
    background-color: #f1f5f9;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    height: 100%;
    border: 1px solid #cbd5e1;
    position: relative;
}

.crm-dash-sidebar {
    width: 60px;
    background-color: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 24px;
}

.crm-sidebar-logo {
    width: 32px;
    height: 32px;
    background-color: #f97316;
    border-radius: 4px;
    margin-bottom: 16px;
}

.crm-sidebar-icon {
    color: #64748b;
    font-size: 20px;
}

.crm-sidebar-active {
    color: #10b981;
    border-left: 2px solid #10b981;
    padding-left: 10px;
    margin-left: -12px;
}

.crm-sidebar-bottom {
    margin-top: auto;
    margin-bottom: 16px;
}

.crm-dash-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crm-dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.crm-dash-title {
    font-weight: 700;
    color: #374151;
    font-size: 16px;
    margin: 0;
}

.crm-dash-controls {
    display: flex;
    gap: 8px;
}

.crm-control-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e5e7eb;
}

.crm-control-input {
    width: 96px;
    height: 32px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.crm-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.crm-metric-card {
    background: white;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.crm-metric-green {
    border-left: 4px solid #10b981;
}

.crm-metric-blue {
    border-left: 4px solid #3b82f6;
}

.crm-metric-orange {
    border-left: 4px solid #f97316;
}

.crm-metric-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.crm-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.crm-metric-change {
    font-size: 11px;
    color: #9ca3af;
    margin: 0;
}

.crm-change-green {
    color: #10b981;
}

.crm-change-blue {
    color: #3b82f6;
}

.crm-charts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: 160px;
}

.crm-chart-card {
    background: white;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.crm-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.crm-chart-title {
    font-size: 11px;
    font-weight: 700;
    color: #4b5563;
    margin: 0;
}

.crm-chart-placeholder {
    width: 100%;
    height: 100px;
    background-color: #f8fafc;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.crm-bar {
    position: absolute;
    bottom: 0;
    width: 12%;
    border-radius: 2px 2px 0 0;
}

.crm-bar-1 {
    height: 40%;
    background: #93c5fd;
    left: 10%;
}

.crm-bar-2 {
    height: 65%;
    background: #60a5fa;
    left: 30%;
}

.crm-bar-3 {
    height: 50%;
    background: #3b82f6;
    left: 50%;
}

.crm-bar-4 {
    height: 85%;
    background: #2563eb;
    left: 70%;
}

.crm-pie-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-pie-chart {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 15px solid #10b981;
    border-right-color: #cbd5e1;
    margin: 0 auto;
}

.crm-pie-legend {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.crm-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    color: #64748b;
}

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

.crm-dot-green {
    background-color: #10b981;
}

.crm-dot-gray {
    background-color: #d1d5db;
}

.crm-table-card {
    background: white;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.crm-table-header {
    margin-bottom: 8px;
}

.crm-table-title {
    font-size: 11px;
    font-weight: 700;
    color: #4b5563;
    margin: 0;
}

.crm-table-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.crm-table-row {
    display: flex;
    padding: 4px 0;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 4px;
    font-size: 10px;
}

.crm-table-header-row {
    font-weight: 400;
    color: #9ca3af;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.crm-table-row span {
    flex: 1;
}

.crm-table-row span:last-child {
    text-align: right;
}

.crm-table-cell-name {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crm-avatar-small {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e5e7eb;
}

.crm-status {
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-block;
}

.crm-status-verified {
    color: #059669;
    background-color: #d1fae5;
}

.crm-status-pending {
    color: #d97706;
    background-color: #fed7aa;
}

/* Slide 10: Platform Slide Styles */
.platform-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.platform-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 20;
}

.platform-decorative-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #dbeafe;
    transform: skewX(12deg) translateX(128px);
    z-index: 0;
}

.platform-decorative-circle {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    background-color: #d1fae5;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
}

.platform-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.platform-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.platform-header-label {
    margin-bottom: 4px;
}

.platform-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.platform-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.platform-title-light {
    color: #64748b;
    font-weight: 300;
}

.platform-layout {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 32px;
    align-items: center;
    padding-bottom: 48px;
}

.platform-left-column {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.platform-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #e2e8f0;
    transition: background-color 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.platform-card-mobile:hover::before {
    background-color: #10b981;
}

.platform-card-web:hover::before {
    background-color: #3b82f6;
}

.platform-card-admin:hover::before {
    background-color: #f97316;
}

.platform-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.platform-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.platform-icon-gray {
    background: #f3f4f6;
    color: #1f2937;
}

.platform-icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.platform-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.platform-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.platform-card-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.platform-card-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.platform-center-column {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.platform-device-bg {
    position: absolute;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, #dbeafe 0%, transparent 100%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.platform-devices-container {
    position: relative;
    z-index: 10;
    transform: scale(1.1);
}

.platform-laptop-container {
    position: relative;
    width: 400px;
    margin: 0 auto;
}

.platform-laptop-screen {
    width: 360px;
    height: 220px;
    background-color: #1e293b;
    border-radius: 10px 10px 0 0;
    border: 8px solid #334155;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 0 1px #475569;
}

.platform-screen-content {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
}

.platform-screen-sidebar {
    width: 20%;
    background-color: #f1f5f9;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    gap: 8px;
}

.platform-sidebar-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: #e5e7eb;
}

.platform-icon-active {
    background-color: #3b82f6;
}

.platform-screen-main {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platform-screen-topbar {
    display: flex;
    justify-content: space-between;
}

.platform-skeleton {
    background-color: #e2e8f0;
    border-radius: 4px;
}

.platform-skeleton-title {
    width: 80px;
    height: 12px;
}

.platform-skeleton-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.platform-screen-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.platform-metric-box {
    height: 64px;
    padding: 8px;
    border: 1px solid;
    border-radius: 4px;
}

.platform-metric-green {
    background-color: #d1fae5;
    border-color: #a7f3d0;
}

.platform-metric-blue {
    background-color: #dbeafe;
    border-color: #bfdbfe;
}

.platform-skeleton-label {
    width: 32px;
    height: 8px;
    margin-bottom: 4px;
}

.platform-skeleton-value {
    width: 48px;
    height: 16px;
}

.platform-screen-chart {
    flex: 1;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    margin-top: 8px;
    padding: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 8px 16px;
}

.platform-chart-bar {
    width: 16px;
    background-color: #93c5fd;
    border-radius: 2px 2px 0 0;
}

.platform-chart-bar-tall {
    height: 80%;
    background-color: #60a5fa;
}

.platform-chart-bar-medium {
    height: 60%;
    background-color: #3b82f6;
}

.platform-chart-bar-short {
    height: 40%;
    background-color: #2563eb;
}

.platform-laptop-base {
    width: 440px;
    height: 20px;
    background-color: #cbd5e1;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.platform-laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background-color: #94a3b8;
    border-radius: 0 0 4px 4px;
}

.platform-phone-container {
    position: absolute;
    bottom: -30px;
    right: -20px;
    z-index: 20;
}

.platform-phone-body {
    width: 90px;
    height: 180px;
    background-color: #1e293b;
    border-radius: 16px;
    border: 6px solid #334155;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.platform-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background-color: #334155;
    border-radius: 0 0 6px 6px;
    z-index: 10;
}

.platform-phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
}

.platform-phone-header {
    height: 48px;
    background-color: #10b981;
    width: 100%;
    margin-bottom: 8px;
}

.platform-phone-content {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platform-phone-item {
    height: 48px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.platform-right-column {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

/* Slide 11: Automation Slide Styles */
.automation-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.automation-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 66.666%;
    height: 100%;
    background-color: #dbeafe;
    transform: skewX(12deg) translateX(256px);
    z-index: 0;
}

.automation-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 20;
}

.automation-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.automation-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.automation-header-label {
    margin-bottom: 4px;
}

.automation-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.automation-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.automation-title-light {
    color: #64748b;
    font-weight: 300;
}

.automation-intro-section {
    margin-bottom: 32px;
    width: 66.666%;
}

.automation-intro-text {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

.automation-flow-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
}

.automation-connector-line {
    position: absolute;
    top: 50%;
    left: 48px;
    right: 28%;
    height: 0;
    border-top: 2px dashed #d1d5db;
    z-index: 0;
    transform: translateY(-50%);
}

.automation-card-wrapper {
    width: 25%;
    padding: 0 12px;
    position: relative;
    z-index: 10;
    height: 288px;
}

.automation-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.automation-card-blue {
    border-top-color: #3b82f6;
}

.automation-card-orange {
    border-top-color: #f97316;
}

.automation-card-green {
    border-top-color: #10b981;
}

.automation-trigger-badge {
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.automation-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.automation-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.automation-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.automation-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.automation-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.automation-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.automation-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 20px;
    z-index: 0;
    background: white;
    border-radius: 50%;
    padding: 4px;
}

.automation-arrow-1 {
    right: -16px;
}

.automation-arrow-2 {
    right: -16px;
}

.automation-arrow-3 {
    right: -24px;
    color: #3b82f6;
    font-size: 24px;
    animation: automationPulse 2s infinite;
}

@keyframes automationPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.automation-result-section {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding-left: 32px;
}

.automation-stat-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: white;
    border: 10px solid #f0f9ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 16px;
}

.automation-stat-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid #3b82f6;
    border-left-color: transparent;
    transform: rotate(-45deg);
}

.automation-stat-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.automation-stat-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px 0;
}

.automation-stat-value {
    font-size: 72px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin: 0;
}

.automation-stat-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.automation-stat-badge {
    position: absolute;
    bottom: -20px;
    background: #10b981;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.automation-stat-note {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    max-width: 200px;
}

.automation-stat-note p {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Slide 12: Results Slide Styles */
.results-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.results-decorative-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #dbeafe;
    z-index: 0;
}

.results-decorative-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background-color: #d1fae5;
    border-radius: 0 100% 0 0;
    z-index: 0;
    opacity: 0.5;
}

.results-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.results-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.results-header-label {
    margin-bottom: 4px;
}

.results-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.results-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.results-title-light {
    color: #64748b;
    font-weight: 300;
}

.results-header-note {
    margin-bottom: 8px;
    max-width: 512px;
    text-align: right;
}

.results-header-note p {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

.results-cases-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 32px;
    padding-bottom: 40px;
}

.results-case-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chart-container {
    height: 160px;
    width: 100%;
    margin-top: 15px;
}

.results-key-takeaway {
    margin-top: 24px;
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.results-key-takeaway .flex {
    display: flex;
    align-items: center;
}

.results-key-takeaway i {
    color: #f59e0b;
    font-size: 24px;
    margin-right: 16px;
    flex-shrink: 0;
}

.results-key-takeaway p {
    color: #1e40af;
    font-weight: 500;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.results-case-1 {
    width: 50%;
    border-top: 4px solid #3b82f6;
}

.results-case-2 {
    width: 50%;
    border-top: 4px solid #10b981;
}

.results-cases-container .case-study-card {
    width: 50%;
    flex: 1;
}

.results-case-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header-blue {
    background-color: rgba(59, 130, 246, 0.1);
}

.results-header-green {
    background-color: rgba(16, 185, 129, 0.1);
}

.results-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.results-badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.results-badge-green {
    background-color: #d1fae5;
    color: #065f46;
}

.results-badge i {
    margin-right: 4px;
}

.results-case-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.results-case-title-small {
    font-size: 20px;
}

.results-case-duration {
    text-align: right;
}

.results-duration-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px 0;
}

.results-duration-value {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.results-case-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.results-metrics-section {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.results-metric-hero {
    width: 50%;
    background-color: #2563eb;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-metric-icon-bg {
    position: absolute;
    right: -16px;
    bottom: -16px;
    font-size: 96px;
    color: rgba(59, 130, 246, 0.3);
    opacity: 0.3;
}

.results-metric-hero-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.results-metric-hero-value {
    font-size: 60px;
    font-weight: 800;
    margin: 0 0 4px 0;
    line-height: 1;
}

.results-metric-hero-unit {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.results-metrics-grid {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.results-metric-tile {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.results-metric-tile-wide {
    grid-column: span 2;
}

.results-metric-icon {
    font-size: 20px;
    color: #3b82f6;
    margin-bottom: 8px;
}

.results-icon-green {
    color: #10b981;
}

.results-metric-value-small {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.results-metric-label-small {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

.results-label-bold {
    font-weight: 700;
    color: #4b5563;
}

.results-chart-container {
    position: relative;
    height: 200px;
    width: 100%;
    flex: 1;
}

.results-rapid-metrics {
    margin-bottom: 24px;
    text-align: center;
}

.results-rapid-label {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.results-rapid-value-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 4px;
}

.results-rapid-value {
    font-size: 60px;
    font-weight: 800;
    color: #10b981;
    margin: 0;
    line-height: 1;
}

.results-rapid-badge {
    position: absolute;
    right: -32px;
    top: -16px;
    background: #fed7aa;
    color: #d97706;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    transform: rotate(12deg);
}

.results-rapid-subtitle {
    color: #0f172a;
    font-weight: 500;
    margin-top: 4px;
}

.results-comparison {
    flex: 1;
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #f3f4f6;
}

.results-comparison-content {
    flex: 1;
}

.results-comparison-title {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.results-comparison-item {
    margin-bottom: 12px;
}

.results-comparison-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.results-header-bold {
    color: #0f172a;
}

.results-value-green {
    color: #10b981;
    font-weight: 700;
}

.results-comparison-bar {
    width: 100%;
    height: 12px;
    background-color: #f1f5f9;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

.results-bar-fill {
    height: 100%;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: white;
    font-weight: 700;
    font-size: 10px;
    transition: width 1s ease-out;
}

.results-bar-gray {
    background-color: #9ca3af;
}

.results-bar-green {
    background-color: #10b981;
}

.results-testimonial {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-testimonial-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
}

.results-testimonial-text {
    font-size: 14px;
    color: #4b5563;
    font-style: italic;
    margin: 0;
}

/* Slide 13: Benefits Slide Styles */
.benefits-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.benefits-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #f9fafb;
    transform: skewX(12deg) translateX(128px);
    z-index: 0;
}

.benefits-decorative-circle {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 256px;
    height: 256px;
    background-color: #dbeafe;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.6;
    pointer-events: none;
}

.benefits-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.benefits-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.benefits-header-label {
    margin-bottom: 4px;
}

.benefits-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.benefits-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.benefits-title-light {
    color: #64748b;
    font-weight: 300;
}

.benefits-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    height: 100%;
    padding-bottom: 40px;
}

.benefits-left-column {
    width: 33.333%;
    display: flex;
    flex-direction: column;
}

.benefits-hero-card {
    background-color: #0f172a;
    border-radius: 16px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
}

.benefits-hero-card:hover {
    transform: translateY(-5px);
}

.benefits-hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.benefits-hero-content {
    position: relative;
    z-index: 10;
}

.benefits-hero-icon {
    width: 56px;
    height: 56px;
    background-color: #10b981;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.benefits-hero-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.benefits-hero-text {
    color: #bfdbfe;
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.benefits-hero-stats {
    position: relative;
    z-index: 10;
    margin-top: 32px;
}

.benefits-hero-stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px 0;
}

.benefits-hero-stat-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.benefits-hero-stat-value {
    font-size: 84px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}

.benefits-hero-stat-unit {
    font-size: 20px;
    font-weight: 500;
    color: #bfdbfe;
}

.benefits-hero-stat-note {
    color: white;
    margin-top: 8px;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.benefits-hero-bg-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 16px;
    opacity: 0.1;
}

.benefits-hero-bg-icon i {
    font-size: 144px;
    color: white;
}

.benefits-right-column {
    width: 66.666%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefits-std-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-std-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

.benefits-std-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.benefits-card-orange:hover::before {
    background-color: #f97316;
}

.benefits-card-blue:hover::before {
    background-color: #3b82f6;
}

.benefits-card-purple:hover::before {
    background-color: #8b5cf6;
}

.benefits-card-green:hover::before {
    background-color: #10b981;
}

.benefits-std-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.benefits-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.benefits-icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.benefits-icon-purple {
    background: #e9d5ff;
    color: #8b5cf6;
}

.benefits-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.benefits-std-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.benefits-std-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.benefits-std-footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.benefits-card-orange .benefits-std-footer {
    color: #f97316;
}

.benefits-card-blue .benefits-std-footer {
    color: #3b82f6;
}

.benefits-card-purple .benefits-std-footer {
    color: #8b5cf6;
}

.benefits-card-green .benefits-std-footer {
    color: #10b981;
}

.benefits-std-footer i {
    font-size: 14px;
}

/* Slide 16: Competitive Slide Styles */
.competitive-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.competitive-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #f3f4f6;
    z-index: 0;
}

.competitive-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 20;
}

.competitive-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.competitive-header {
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.competitive-header-label {
    margin-bottom: 4px;
}

.competitive-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.competitive-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.competitive-title-light {
    color: #64748b;
    font-weight: 300;
}

.competitive-header-note {
    margin-bottom: 8px;
    max-width: 512px;
    text-align: right;
}

.competitive-header-note p {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

.competitive-table-container {
    flex: 1;
    padding: 0 16px;
    overflow-x: auto;
}

.competitive-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 16px;
}

.competitive-table th {
    padding: 20px 16px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
    vertical-align: bottom;
}

.competitive-col-feature {
    text-align: left;
    width: 25%;
    padding-left: 32px;
}

.competitive-col-feature p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #9ca3af;
    margin: 0;
}

.competitive-col-competitor {
    width: 20%;
    text-align: center;
    background-color: #f8fafc;
}

.competitive-col-bytscop {
    width: 25%;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.competitive-table th.competitive-col-bytscop {
    border-top: 4px solid #3b82f6;
    border-radius: 8px 8px 0 0;
    background-color: #eff6ff;
    color: #1e3a8a;
}

.competitive-table td.competitive-col-bytscop {
    background-color: #fff;
    font-weight: 500;
    color: #0f172a;
}

.competitive-table tr:last-child td.competitive-col-bytscop {
    border-bottom: 4px solid #3b82f6;
    border-radius: 0 0 8px 8px;
}

.competitive-th-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.competitive-th-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 20px;
}

.competitive-th-icon-bytscop {
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    color: #3b82f6;
    font-size: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.competitive-th-content p {
    margin: 0;
    font-size: 14px;
}

.competitive-col-bytscop .competitive-th-content p {
    color: #3b82f6;
    font-size: 18px;
}

.competitive-table td {
    padding: 20px 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    color: #475569;
    font-size: 14px;
}

.competitive-feature-cell {
    display: flex;
    align-items: center;
}

.competitive-feature-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 12px;
    background-color: #f1f5f9;
    color: #64748b;
}

.competitive-feature-title {
    font-weight: 700;
    color: #374151;
    margin: 0 0 2px 0;
}

.competitive-feature-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.competitive-icon-check {
    color: #10b981;
    font-size: 20px;
    margin-bottom: 4px;
}

.competitive-icon-cross {
    color: #ef4444;
    font-size: 20px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.competitive-icon-neutral {
    color: #94a3af;
    font-size: 16px;
    margin-bottom: 4px;
}

.competitive-row-highlight:hover td {
    background-color: #f8fafc;
}

.competitive-row-highlight:hover td.competitive-col-bytscop {
    background-color: #eff6ff;
}

.competitive-table td p {
    margin: 0;
    font-size: 12px;
}

.competitive-col-bytscop p {
    font-size: 14px;
}

/* Slide 17: Revenue Slide Styles */
.revenue-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.revenue-decorative-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: #dbeafe;
    transform: skewX(12deg) translateX(80px);
    z-index: 0;
}

.revenue-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #0f172a;
    z-index: 20;
}

.revenue-decorative-circle {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    background-color: #d1fae5;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
    pointer-events: none;
}

.revenue-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.revenue-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.revenue-header-label {
    margin-bottom: 4px;
}

.revenue-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.revenue-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.revenue-title-light {
    color: #64748b;
    font-weight: 300;
}

.revenue-header-note {
    margin-bottom: 8px;
    max-width: 576px;
    text-align: right;
}

.revenue-header-note p {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

.revenue-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    height: 100%;
    padding-bottom: 40px;
}

.revenue-left-column {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.revenue-intro-text {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 16px;
}

.revenue-metric-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.revenue-metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.revenue-card-green {
    border-left-color: #10b981;
}

.revenue-card-blue {
    border-left-color: #3b82f6;
}

.revenue-card-orange {
    border-left-color: #f97316;
}

.revenue-metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.revenue-icon-green {
    background-color: #d1fae5;
    color: #10b981;
}

.revenue-icon-blue {
    background-color: #dbeafe;
    color: #3b82f6;
}

.revenue-icon-orange {
    background-color: #fed7aa;
    color: #f97316;
}

.revenue-metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.revenue-metric-label {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.revenue-right-column {
    width: 66.666%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.revenue-chart-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
}

.revenue-chart-top {
    flex: 1;
}

.revenue-chart-bottom {
    flex: none;
    height: 192px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.revenue-chart-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    margin: 0;
}

.revenue-title-bottom {
    margin-bottom: 24px;
}

.revenue-chart-legend {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.revenue-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.revenue-dot-gray {
    background-color: #cbd5e1;
}

.revenue-dot-blue {
    background-color: #3b82f6;
}

.revenue-chart-container {
    position: relative;
    height: 192px;
    width: 100%;
}

.revenue-payback-item {
    margin-bottom: 24px;
    position: relative;
}

.revenue-payback-item:last-child {
    margin-bottom: 0;
}

.revenue-payback-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.revenue-header-blue {
    color: #3b82f6;
}

.revenue-payback-bar-container {
    width: 100%;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 20px;
    position: relative;
    margin-top: 10px;
    overflow: hidden;
}

.revenue-payback-marker-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #cbd5e1;
    border-style: dashed;
    z-index: 10;
}

.revenue-payback-fill {
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    transition: width 1s ease-out;
}

.revenue-fill-gray {
    background-color: #9ca3af;
}

.revenue-fill-green {
    background-color: #10b981;
}

.revenue-payback-note {
    position: absolute;
    right: 0;
    top: 48px;
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    text-align: right;
    width: 100%;
    margin: 0;
}

/* Slide 18: Scalability Slide Styles */
.scalability-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.scalability-decorative-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #dbeafe;
    z-index: 0;
    opacity: 0.5;
}

.scalability-decorative-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background-color: #f3f4f6;
    border-radius: 0 100% 0 0;
    z-index: 0;
    opacity: 0.5;
}

.scalability-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 64px;
    padding-bottom: 80px;
}

.scalability-header {
    margin-bottom: 32px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.scalability-header-label {
    margin-bottom: 4px;
}

.scalability-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scalability-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.scalability-title-light {
    color: #64748b;
    font-weight: 300;
}

.scalability-header-note {
    margin-bottom: 8px;
    max-width: 448px;
    text-align: right;
}

.scalability-header-note p {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

.scalability-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    height: 256px;
}

.scalability-pillar-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.scalability-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.scalability-pillar-blue {
    border-top-color: #3b82f6;
}

.scalability-pillar-orange {
    border-top-color: #f97316;
}

.scalability-pillar-purple {
    border-top-color: #8b5cf6;
}

.scalability-pillar-green {
    border-top-color: #10b981;
}

.scalability-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.scalability-icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.scalability-icon-orange {
    background: #fed7aa;
    color: #f97316;
}

.scalability-icon-purple {
    background: #e9d5ff;
    color: #8b5cf6;
}

.scalability-icon-green {
    background: #d1fae5;
    color: #10b981;
}

.scalability-pillar-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.scalability-pillar-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.scalability-timeline-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 32px;
}

.scalability-timeline-title {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px 0;
}

.scalability-timeline-title i {
    margin-right: 8px;
}

.scalability-timeline-container {
    position: relative;
    padding-top: 32px;
    margin-top: auto;
    width: 100%;
}

.scalability-timeline-line {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    z-index: 0;
    border-radius: 2px;
}

.scalability-timeline-progress {
    position: absolute;
    top: 44px;
    left: 0;
    width: 40%;
    height: 4px;
    background-color: #3b82f6;
    z-index: 1;
    border-radius: 2px;
}

.scalability-timeline-nodes {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.scalability-milestone-node {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    text-align: center;
}

.scalability-phase-label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scalability-label-active {
    color: #3b82f6;
}

.scalability-node-circle {
    width: 24px;
    height: 24px;
    background-color: white;
    border: 4px solid #cbd5e1;
    border-radius: 50%;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.scalability-node-active .scalability-node-circle {
    border-color: #3b82f6;
    background-color: #3b82f6;
    box-shadow: 0 0 0 4px #dbeafe;
}

.scalability-milestone-card {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    width: 90%;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.scalability-milestone-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: white;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

.scalability-milestone-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.scalability-milestone-text {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Slide 19: CTA Slide Styles */
.cta-slide {
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.cta-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9fafb;
    z-index: 0;
}

.cta-bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #dbeafe;
    transform: skewX(12deg) translateX(25%);
    z-index: 0;
}

.cta-bg-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    height: 256px;
    background-color: #f3f4f6;
    border-radius: 0 100% 0 0;
    opacity: 0.5;
    z-index: 0;
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px 64px;
    padding-bottom: 80px;
}

.cta-hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.cta-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.cta-hero-highlight {
    color: #3b82f6;
}

.cta-hero-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 896px;
    margin: 0 auto;
}

.cta-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    flex: 1;
    margin-bottom: 24px;
}

.cta-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #3b82f6;
}

.cta-card-orange::before {
    background-color: #f97316;
}

.cta-card-green::before {
    background-color: #10b981;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.cta-icon-orange {
    background-color: #fff7ed;
    color: #f97316;
}

.cta-icon-green {
    background-color: #ecfdf5;
    color: #10b981;
}

.cta-card:hover .cta-card-icon {
    transform: scale(1.1);
}

.cta-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.cta-card-text {
    color: #64748b;
    margin: 0 0 24px 0;
    font-size: 14px;
    padding: 0 16px;
    flex: 1;
}

.cta-button {
    margin-top: auto;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: #3b82f6;
    color: white;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    opacity: 0.9;
}

.cta-button-orange {
    background-color: #f97316;
}

.cta-button-green {
    background-color: #10b981;
}

.cta-qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-bottom: 16px;
}

.cta-qr-box {
    background: white;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px dashed #cbd5e1;
}

.cta-qr-icon {
    width: 80px;
    height: 80px;
    background-color: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.cta-qr-content {
    text-align: left;
}

.cta-qr-label {
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px 0;
}

.cta-qr-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.cta-qr-text {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    margin-top: 4px;
}

/* Mobile Contact Section for Slide 19 */
.cta-mobile-contact {
    display: none;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.cta-mobile-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cta-mobile-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.cta-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.cta-mobile-contact-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateX(5px);
}

.cta-mobile-contact-item i {
    color: #3b82f6;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-mobile-contact-founder {
    color: #3b82f6;
    font-weight: 500;
    cursor: default;
}

.cta-mobile-contact-founder:hover {
    transform: none;
    border-color: #e5e7eb;
}

@media (max-width: 768px) {
    .cta-mobile-contact {
        display: block;
    }
}

/* Mobile Contact Section for Slide 19 */
.cta-mobile-contact {
    display: none;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.cta-mobile-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cta-mobile-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.cta-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.cta-mobile-contact-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateX(5px);
}

.cta-mobile-contact-item i {
    color: #3b82f6;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-mobile-contact-founder {
    color: #3b82f6;
    font-weight: 500;
    cursor: default;
}

.cta-mobile-contact-founder:hover {
    transform: none;
    border-color: #e5e7eb;
}

@media (max-width: 768px) {
    .cta-mobile-contact {
        display: block;
    }
}

/* Slide 20: Contact Slide Styles */
.contact-slide {
    position: relative;
    background-color: #0f172a;
    overflow: hidden;
}

.contact-map-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 0;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.contact-bg-circle-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: #1e3a8a;
    opacity: 0.2;
    filter: blur(48px);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-bg-circle-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    height: 33%;
    background-color: #065f46;
    opacity: 0.1;
    filter: blur(48px);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.contact-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px 80px;
    padding-bottom: 80px;
}

.contact-header {
    margin-bottom: 48px;
    border-left: 4px solid #10b981;
    padding-left: 24px;
}

.contact-header-label {
    margin-bottom: 8px;
}

.contact-label-text {
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-main-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-title-highlight {
    color: #3b82f6;
}

.contact-subtitle {
    color: #9ca3af;
    margin-top: 16px;
    font-size: 20px;
    max-width: 640px;
    margin: 16px 0 0 0;
}

.contact-layout {
    display: flex;
    gap: 64px;
    height: 100%;
    align-items: flex-start;
}

.contact-left-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.5);
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-box {
    background: #3b82f6;
    color: white;
}

.contact-card-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.contact-card-value {
    font-size: 20px;
    color: white;
    font-weight: 500;
    margin: 0;
}

.contact-value-multiline {
    font-size: 18px;
    line-height: 1.4;
}

.contact-right-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.contact-founder-section {
    margin-bottom: auto;
}

.contact-founder-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1e293b;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #64748b;
    flex-shrink: 0;
}

.contact-founder-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.contact-founder-title {
    color: #3b82f6;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.contact-founder-bio {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    max-width: 320px;
}

.contact-social-section {
    margin-top: auto;
}

.contact-social-label {
    color: #9ca3af;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
}

.contact-social-buttons {
    display: flex;
    gap: 24px;
}

.contact-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.contact-social-btn:hover {
    color: white;
    transform: translateY(-5px);
}

.contact-social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.contact-social-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.contact-social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.contact-branding-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-branding-content {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.contact-branding-content i {
    color: #3b82f6;
    font-size: 24px;
}

.contact-branding-name {
    font-weight: 700;
    color: white;
    font-size: 24px;
    letter-spacing: 0.05em;
}

.contact-branding-tag {
    font-weight: 400;
    color: #64748b;
}

.contact-copyright {
    color: #475569;
    font-size: 11px;
    margin: 8px 0 0 0;
}

/* Common Footer Styles */
.slide-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    z-index: 20;
}

.contact-slide .slide-footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-slide .footer-left {
    color: white;
}

.contact-slide .footer-left i {
    color: #3b82f6;
}

.contact-slide .footer-company {
    color: white;
}

.contact-slide .footer-tag {
    color: #94a3af;
}

.contact-slide .footer-slide-number {
    color: #94a3af;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-left i {
    color: #0f172a;
    font-size: 20px;
}

.footer-company {
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.05em;
}

.footer-tag {
    font-weight: 400;
    color: #9ca3af;
}

.footer-slide-number {
    display: none; /* Removed - page numbers now only in navigation buttons */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        padding: 40px;
    }
    
    .slide-title {
        font-size: 2em;
    }
    
    .problem-grid,
    .solution-architecture,
    .ecosystem-features {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
    }
    
    /* Cover slide responsive */
    .cover-main-title {
        font-size: 48px;
    }
    
    .cover-description {
        font-size: 20px;
    }
    
    .cover-content-wrapper {
        padding: 40px;
    }
    
    /* Problem slide responsive */
    .problem-grid-container {
        grid-template-columns: 1fr;
    }
    
    .problem-main-title {
        font-size: 36px;
    }
    
    /* Market slide responsive */
    .market-layout {
        flex-direction: column;
    }
    
    .market-left-column,
    .market-right-column {
        width: 100%;
    }
    
    .market-bottom-row {
        flex-direction: column;
        height: auto;
    }
    
    .market-chart-small,
    .market-potential-card {
        width: 100%;
    }
    
    /* Solution slide responsive */
    .solution-layout {
        flex-direction: column;
    }
    
    .solution-left-column,
    .solution-right-column {
        width: 100%;
    }
    
    .solution-architecture-diagram {
        height: 400px;
    }
    
    /* Workflow slide responsive */
    .workflow-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .workflow-step-card {
        height: auto;
        min-height: 180px;
    }
    
    /* Ecosystem slide responsive */
    .ecosystem-layout {
        flex-direction: column;
    }
    
    .ecosystem-left-column,
    .ecosystem-right-column {
        width: 100%;
    }
    
    .ecosystem-hero-graphic {
        height: 300px;
    }
    
    /* Slab slide responsive */
    .slab-layout {
        flex-direction: column;
    }
    
    .slab-left-column,
    .slab-right-column {
        width: 100%;
    }
    
    .slab-ladder-steps {
        height: 300px;
    }
    
    /* MLM slide responsive */
    .mlm-layout {
        flex-direction: column;
    }
    
    .mlm-left-column,
    .mlm-right-column {
        width: 100%;
    }
    
    .mlm-tree-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .slide-content {
        padding: 20px 15px;
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    /* General typography adjustments */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .main-title {
        font-size: 1.75em;
        line-height: 1.3;
    }
    
    .slide-title {
        font-size: 1.5em;
    }
    
    /* Grid layouts - stack on mobile */
    .platform-grid,
    .benefits-grid,
    .efficiency-content,
    .problem-grid,
    .solution-architecture,
    .ecosystem-features,
    .market-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Tables - make scrollable */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    /* Charts and visualizations */
    canvas {
        max-width: 100%;
        height: auto !important;
    }
    
    .chart-container,
    .chart-box,
    .results-chart-container {
        height: auto !important;
        min-height: 200px;
        max-height: 300px;
    }
    
    /* Cover slide mobile */
    .cover-main-title {
        font-size: 36px;
    }
    
    .cover-description {
        font-size: 18px;
    }
    
    .cover-content-wrapper {
        padding: 30px 20px;
    }
    
    .cover-bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cover-footer-section {
        align-items: flex-start;
        width: 100%;
    }
    
    .cover-platform-badges {
        flex-wrap: wrap;
    }
    
    /* Problem slide mobile */
    .problem-content-wrapper {
        padding: 20px;
        padding-bottom: 80px;
    }
    
    .problem-main-title {
        font-size: 28px;
    }
    
    /* Market slide mobile */
    .market-content-wrapper {
        padding: 20px;
        padding-bottom: 80px;
    }
    
    .market-main-title {
        font-size: 32px;
    }
    
    /* Solution slide mobile */
    .solution-content-wrapper {
        padding: 20px;
        padding-bottom: 80px;
    }
    
    .solution-main-title {
        font-size: 32px;
    }
    
    .solution-architecture-diagram {
        height: 300px;
    }
    
    .arch-central-hub {
        width: 120px;
        height: 120px;
    }
    
    .arch-node {
        width: 100px;
        padding: 12px;
    }
    
    /* Workflow slide mobile */
    .workflow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .workflow-connector-line {
        display: none;
    }
    
    /* Ecosystem slide mobile */
    .ecosystem-hero-graphic {
        height: auto;
        min-height: 250px;
        padding: 20px 15px;
        overflow: visible;
        max-width: 100%;
    }
    
    .ecosystem-shield-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .ecosystem-shield-icon i {
        font-size: 30px;
    }
    
    .ecosystem-hero-title {
        font-size: 18px !important;
        margin-bottom: 12px;
    }
    
    .ecosystem-hero-text {
        font-size: 12px !important;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .ecosystem-stats-row {
        margin-top: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .ecosystem-stat-box {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
        padding: 10px 8px;
    }
    
    .ecosystem-stat-value {
        font-size: 20px !important;
    }
    
    .ecosystem-stat-label {
        font-size: 10px !important;
    }
    
    /* Slab slide mobile */
    .slab-ladder-container {
        height: auto !important;
        min-height: 400px;
        padding-bottom: 40px;
    }
    
    .slab-ladder-steps {
        height: auto !important;
        min-height: 350px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px !important;
        padding: 0 10px;
    }
    
    .slab-ladder-tier {
        height: auto !important;
        width: 100% !important;
        margin-bottom: 10px;
    }
    
    .slab-tier-bar {
        height: 80px !important;
        width: 100% !important;
        position: relative;
        padding-bottom: 20px;
    }
    
    .slab-tier-percentage {
        position: absolute !important;
        top: -30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 16px !important;
    }
    
    .slab-tier-percentage-top {
        width: 60px !important;
        height: 60px !important;
        font-size: 18px !important;
        top: -35px !important;
    }
    
    .slab-tier-content {
        margin-top: 0 !important;
        padding: 0 8px;
    }
    
    .slab-tier-name {
        font-size: 12px !important;
    }
    
    .slab-tier-range {
        font-size: 10px !important;
    }
    
    .slab-axis-horizontal,
    .slab-axis-vertical,
    .slab-axis-label {
        display: none;
    }
    
    .slab-axis-x-label {
        position: relative !important;
        bottom: auto !important;
        margin-top: 20px;
    }
    
    /* MLM slide mobile */
    .mlm-tree-container {
        height: 300px;
    }
    
    .mlm-level-1-container {
        gap: 20px;
    }
    
    .mlm-tree-node {
        width: 40px;
        height: 40px;
    }
    
    .mlm-tree-root {
        width: 60px;
        height: 60px;
    }
    
    /* CRM slide mobile (Slide 9) */
    .crm-layout {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .crm-left-column,
    .crm-right-column {
        width: 100% !important;
    }
    
    .crm-intro-text {
        font-size: 14px !important;
    }
    
    .crm-feature-item {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .crm-feature-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        margin-right: 12px !important;
    }
    
    .crm-feature-title {
        font-size: 16px !important;
    }
    
    .crm-feature-text {
        font-size: 12px !important;
    }
    
    .crm-dashboard-mockup {
        flex-direction: column !important;
        height: auto !important;
        min-height: 400px;
    }
    
    .crm-dash-sidebar {
        width: 100% !important;
        flex-direction: row !important;
        padding: 10px !important;
        gap: 10px !important;
        height: auto !important;
        justify-content: center;
    }
    
    .crm-dash-main {
        padding: 15px !important;
        gap: 12px !important;
    }
    
    .crm-metrics-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .crm-metric-card {
        padding: 15px !important;
    }
    
    .crm-metric-value {
        font-size: 18px !important;
    }
    
    .crm-charts-row {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 15px !important;
    }
    
    .crm-chart-card {
        min-height: 200px;
    }
    
    .crm-chart-placeholder {
        height: 120px !important;
    }
    
    .crm-table-card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .crm-table-content {
        min-width: 400px;
    }
    
    /* Platform slide mobile (Slide 10) */
    .platform-layout {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .platform-left-column,
    .platform-center-column,
    .platform-right-column {
        width: 100% !important;
    }
    
    .platform-card {
        padding: 20px !important;
        min-height: auto !important;
    }
    
    .platform-icon-circle {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .platform-card-title {
        font-size: 18px !important;
    }
    
    .platform-card-text {
        font-size: 13px !important;
    }
    
    .platform-devices-container {
        transform: scale(0.6) !important;
        margin: 10px 0 !important;
        width: 100%;
        overflow: hidden;
    }
    
    .platform-laptop-container {
        width: 100% !important;
        max-width: 100%;
    }
    
    .platform-laptop-screen {
        width: 100% !important;
        max-width: 300px;
        height: auto !important;
        min-height: 180px;
    }
    
    .platform-phone-container {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .platform-phone-body {
        width: 70px !important;
        height: 140px !important;
    }
    
    /* Automation slide mobile (Slide 11) */
    .automation-intro-section {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .automation-intro-text {
        font-size: 14px !important;
    }
    
    .automation-flow-container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
    }
    
    .automation-card-wrapper {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
        padding: 0 !important;
    }
    
    .automation-card {
        padding: 20px !important;
        height: auto !important;
    }
    
    .automation-card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
    
    .automation-card-title {
        font-size: 18px !important;
    }
    
    .automation-card-text {
        font-size: 13px !important;
    }
    
    .automation-connector-line {
        display: none !important;
    }
    
    .automation-arrow {
        display: none !important;
    }
    
    .automation-result-section {
        width: 100% !important;
        padding-left: 0 !important;
        margin-top: 20px;
        order: -1;
    }
    
    .automation-stat-circle {
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto;
    }
    
    .automation-stat-ring {
        width: 150px !important;
        height: 150px !important;
    }
    
    .automation-stat-value {
        font-size: 48px !important;
    }
    
    .automation-stat-subtitle {
        font-size: 12px !important;
    }
    
    .automation-stat-note {
        max-width: 100% !important;
        margin-top: 15px;
    }
    
    /* Results slide mobile (Slide 12) */
    .results-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .results-header-note {
        text-align: left !important;
        max-width: 100% !important;
        margin-top: 15px;
    }
    
    .results-header-note p {
        font-size: 14px !important;
    }
    
    .results-cases-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .results-case-1,
    .results-case-2 {
        width: 100% !important;
    }
    
    .results-cases-container .case-study-card {
        width: 100% !important;
    }
    
    .case-study-card {
        padding: 15px !important;
        margin-bottom: 15px;
    }
    
    .case-study-card h3 {
        font-size: 20px !important;
    }
    
    .case-study-card .text-3xl {
        font-size: 24px !important;
    }
    
    .case-study-card .text-sm {
        font-size: 11px !important;
    }
    
    .chart-container {
        height: 140px !important;
        margin-top: 10px;
    }
    
    .chart-container svg {
        max-width: 100%;
        height: auto;
    }
    
    .results-key-takeaway {
        margin-top: 20px !important;
        padding: 12px 15px !important;
    }
    
    .results-key-takeaway i {
        font-size: 20px !important;
        margin-right: 12px !important;
    }
    
    .results-key-takeaway p {
        font-size: 14px !important;
    }
    
    .results-case-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .results-case-title {
        font-size: 20px !important;
    }
    
    .results-case-title-small {
        font-size: 18px !important;
    }
    
    .results-metrics-section {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .results-metric-hero,
    .results-metrics-grid {
        width: 100% !important;
    }
    
    .results-metric-hero {
        padding: 20px !important;
    }
    
    .results-metric-hero-value {
        font-size: 36px !important;
    }
    
    .results-metric-hero-unit {
        font-size: 18px !important;
    }
    
    .results-metrics-grid {
        gap: 10px !important;
    }
    
    .results-metric-tile {
        padding: 12px !important;
    }
    
    .results-metric-value-small {
        font-size: 20px !important;
    }
    
    .results-chart-container {
        height: 250px !important;
        min-height: 250px;
    }
    
    .results-rapid-value {
        font-size: 36px !important;
    }
    
    .results-comparison {
        padding: 15px !important;
    }
    
    .results-testimonial {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .results-testimonial-text {
        font-size: 12px !important;
    }
    
    /* Benefits slide responsive */
    .benefits-layout {
        flex-direction: column;
    }
    
    .benefits-left-column,
    .benefits-right-column {
        width: 100%;
    }
    
    /* Comparison table mobile (Slide 15) */
    .comparison-table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        position: relative;
    }
    
    .comparison-table table {
        min-width: 650px !important;
        width: max-content !important;
        margin: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px !important;
        font-size: 13px !important;
        white-space: nowrap;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 150px;
        position: sticky;
        left: 0;
        background: white;
        z-index: 10;
    }
    
    .comparison-table th:first-child {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .comparison-table th:nth-child(2),
    .comparison-table td:nth-child(2) {
        min-width: 200px;
    }
    
    .comparison-table th:nth-child(3),
    .comparison-table td:nth-child(3) {
        min-width: 250px;
    }
    
    /* Competitive slide mobile (Slide 15) */
    .competitive-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .competitive-header-note {
        text-align: left !important;
        max-width: 100% !important;
        margin-top: 15px;
    }
    
    .competitive-header-note p {
        font-size: 14px !important;
    }
    
    .competitive-table-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 0 !important;
        width: 100%;
        margin: 0;
    }
    
    .competitive-table {
        font-size: 11px !important;
        display: block;
        min-width: 700px !important;
        width: max-content !important;
    }
    
    .competitive-table thead {
        display: block;
    }
    
    .competitive-table tbody {
        display: block;
    }
    
    .competitive-table tr {
        display: flex;
        min-width: 700px !important;
    }
    
    .competitive-col-feature {
        min-width: 200px !important;
        width: 200px !important;
        flex-shrink: 0;
    }
    
    .competitive-col-competitor {
        min-width: 180px !important;
        width: 180px !important;
        flex-shrink: 0;
    }
    
    .competitive-col-bytscop {
        min-width: 200px !important;
        width: 200px !important;
        flex-shrink: 0;
    }
    
    .competitive-feature-cell {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .competitive-feature-icon {
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .competitive-feature-title {
        font-size: 12px !important;
    }
    
    .competitive-feature-subtitle {
        font-size: 10px !important;
    }
    
    .competitive-table td p {
        font-size: 10px !important;
    }
    
    /* Revenue slide mobile (Slide 16) */
    .revenue-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .revenue-header-note {
        text-align: left !important;
        max-width: 100% !important;
        margin-top: 15px;
    }
    
    .revenue-header-note p {
        font-size: 14px !important;
    }
    
    .revenue-layout {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .revenue-left-column,
    .revenue-right-column {
        width: 100% !important;
    }
    
    .revenue-intro-text {
        font-size: 14px !important;
    }
    
    .revenue-metric-card {
        padding: 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    
    .revenue-metric-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
    
    .revenue-metric-value {
        font-size: 20px !important;
    }
    
    .revenue-chart-box {
        height: auto !important;
        min-height: 250px;
        padding: 15px !important;
    }
    
    .revenue-chart-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .revenue-chart-title {
        font-size: 16px !important;
    }
    
    .revenue-chart-legend {
        flex-direction: column !important;
        gap: 8px;
        align-items: flex-start;
    }
    
    .revenue-chart-container {
        height: 200px !important;
        min-height: 200px;
    }
    
    .revenue-payback-item {
        margin-bottom: 20px !important;
    }
    
    .revenue-payback-bar-container {
        height: 35px !important;
    }
    
    .revenue-payback-fill {
        font-size: 10px !important;
        padding-right: 10px !important;
    }
    
    .revenue-payback-note {
        position: relative !important;
        top: auto !important;
        margin-top: 10px;
        font-size: 10px !important;
    }
    
    /* Scalability slide responsive */
    .scalability-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    
    .scalability-timeline-nodes {
        flex-wrap: wrap;
    }
    
    /* Execution Milestones - List View on Mobile (will be added to main mobile block) */
    
    /* CTA slide responsive */
    .cta-cards-container {
        grid-template-columns: 1fr;
    }
    
    .cta-hero-title {
        font-size: 48px;
    }
    
    /* Contact slide responsive */
    .contact-layout {
        flex-direction: column;
    }
    
    .contact-left-column,
    .contact-right-column {
        width: 100%;
    }
    
    .contact-right-column {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 32px;
        margin-top: 32px;
    }
    
    .contact-main-title {
        font-size: 48px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* Contact slide mobile - already covered above */
    
    /* Execution Milestones - List View on Mobile (Slide 18) */
    .scalability-timeline-section {
        padding-bottom: 20px;
    }
    
    .scalability-timeline-container {
        padding-top: 0;
    }
    
    .scalability-timeline-line,
    .scalability-timeline-progress {
        display: none;
    }
    
    .scalability-timeline-nodes {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .scalability-milestone-node {
        width: 100% !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        position: relative;
        padding-left: 40px;
    }
    
    .scalability-milestone-node::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: white;
        border: 3px solid #cbd5e1;
        z-index: 10;
    }
    
    .scalability-node-active .scalability-milestone-node::before {
        border-color: #3b82f6;
        background-color: #3b82f6;
        box-shadow: 0 0 0 3px #dbeafe;
    }
    
    .scalability-milestone-node::after {
        content: '';
        position: absolute;
        left: 9px;
        top: 28px;
        width: 2px;
        height: calc(100% + 4px);
        background-color: #e2e8f0;
        z-index: 1;
    }
    
    .scalability-milestone-node:last-child::after {
        display: none;
    }
    
    .scalability-node-circle {
        display: none !important;
    }
    
    .scalability-phase-label {
        margin-bottom: 4px;
        font-size: 10px !important;
        text-align: left !important;
    }
    
    .scalability-milestone-card {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 12px 16px !important;
        border-left: 3px solid #e2e8f0 !important;
        border-radius: 0 8px 8px 0 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .scalability-node-active .scalability-milestone-card {
        border-left-color: #3b82f6 !important;
        background-color: #f8fafc !important;
    }
    
    .scalability-milestone-card::before {
        display: none !important;
    }
    
    .scalability-milestone-title {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }
    
    .scalability-milestone-text {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}


