.business-model-slide {
    background-color: var(--background-color);
}

.business-model-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.business-model-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.business-model-canvas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.canvas-section {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

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

.canvas-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.canvas-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.canvas-section li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.canvas-section li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.canvas-section.animated li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for list items */
.canvas-section.animated li:nth-child(1) { transition-delay: 0.1s; }
.canvas-section.animated li:nth-child(2) { transition-delay: 0.2s; }
.canvas-section.animated li:nth-child(3) { transition-delay: 0.3s; }
.canvas-section.animated li:nth-child(4) { transition-delay: 0.4s; }
.canvas-section.animated li:nth-child(5) { transition-delay: 0.5s; }

/* Grid positioning */
.key-partners { grid-area: 1 / 1 / 2 / 2; }
.key-activities { grid-area: 1 / 2 / 2 / 3; }
.value-propositions { grid-area: 1 / 3 / 4 / 4; }
.customer-relationships { grid-area: 1 / 4 / 2 / 5; }
.customer-segments { grid-area: 1 / 5 / 4 / 6; }
.key-resources { grid-area: 2 / 2 / 3 / 3; }
.channels { grid-area: 2 / 4 / 3 / 5; }
.cost-structure { grid-area: 3 / 1 / 4 / 3; }
.revenue-streams { grid-area: 3 / 4 / 4 / 5; }

/* Section background patterns */
.canvas-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 10%, rgba(110, 87, 224, 0.05) 10%, transparent 10.5%),
                      radial-gradient(circle at 20% 20%, rgba(110, 87, 224, 0.05) 10%, transparent 10.5%),
                      radial-gradient(circle at 30% 30%, rgba(110, 87, 224, 0.05) 10%, transparent 10.5%),
                      radial-gradient(circle at 40% 40%, rgba(110, 87, 224, 0.05) 10%, transparent 10.5%),
                      radial-gradient(circle at 50% 50%, rgba(110, 87, 224, 0.05) 10%, transparent 10.5%);
    background-size: 200px 200px;
    opacity: 0.5;
    z-index: 1;
}

.value-propositions::after, .customer-segments::after {
    background-image: linear-gradient(45deg, rgba(110, 87, 224, 0.05) 25%, transparent 25%),
                      linear-gradient(-45deg, rgba(110, 87, 224, 0.05) 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, rgba(110, 87, 224, 0.05) 75%),
                      linear-gradient(-45deg, transparent 75%, rgba(110, 87, 224, 0.05) 75%);
    background-size: 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .business-model-canvas {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    
    .key-partners { grid-area: auto; }
    .key-activities { grid-area: auto; }
    .value-propositions { grid-area: auto; }
    .customer-relationships { grid-area: auto; }
    .customer-segments { grid-area: auto; }
    .key-resources { grid-area: auto; }
    .channels { grid-area: auto; }
    .cost-structure { grid-area: auto; }
    .revenue-streams { grid-area: auto; }
}

@media (max-width: 768px) {
    .business-model-canvas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .business-model-canvas {
        grid-template-columns: 1fr;
    }
}

/* Thank You Section Styles */
.thank-you-slide {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.thank-you-headline {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.thank-you-headline.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.3s;
}

.contact-info.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.demo-credentials {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.6s;
}

.demo-credentials.animated {
    opacity: 1;
    transform: translateY(0);
}

.credential-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.credential-label {
    font-weight: 600;
    color: var(--dark-color);
}

.credential-value {
    font-family: monospace;
    background-color: #f5f5ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.final-message {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0;
    color: var(--dark-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.9s;
}

.final-message.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Background particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.2;
}
