/* chatbot-byob.css - v1.1 */

.hero-section .byob-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.byob-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.byob-hero-subtitle {
    margin: 0 auto;
    max-width: 640px;
}



.byob-steps-section {
    padding-top: 0;
}

.byob-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.byob-step-image-card {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(20, 184, 166, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.byob-step-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .byob-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}



.byob-step-container {
    max-width: 800px;
    margin: 0 auto;
}



.byob-step-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 200px;
    margin: 0 auto;
    padding: 20px 0;
}

.byob-step-divider-line {
    flex: 1;
    height: 2px;
    background: rgba(20, 184, 166, 0.3);
}

.byob-step-divider-icon {
    flex-shrink: 0;
    color: rgba(20, 184, 166, 0.6);
}



.byob-embed-grid {
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 32px;
    align-items: start;
}

.byob-grobot-image {
    width: 256px;
    height: auto;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    .byob-embed-grid {
        grid-template-columns: 1fr;
    }

    .byob-grobot-image {
        display: none;
    }
}



.byob-card-inner {
    padding: 36px 40px;
}

.byob-questions-intro {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.byob-questions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.byob-question-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.byob-question-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary-green-mid);
}

.byob-note-card {
    padding: 20px 24px;
    border-color: rgba(245, 158, 11, 0.3) !important;
    background: rgba(245, 158, 11, 0.05) !important;
}

.byob-note-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.byob-note-card strong {
    color: rgba(255, 255, 255, 0.85);
}



.byob-deploy-note-card {
    padding: 20px 24px;
    border-color: rgba(20, 184, 166, 0.3) !important;
    background: rgba(20, 184, 166, 0.05) !important;
    margin-bottom: 28px;
}

.byob-deploy-note-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.byob-deploy-note-card strong {
    color: rgba(255, 255, 255, 0.85);
}

.byob-deploy-intro {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.byob-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.byob-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.byob-benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-green-mid);
}

.byob-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .chatbot-demo-wrapper {
        max-width: 90vw;
    }

    .byob-card-inner {
        padding: 24px 20px;
    }

    .byob-cta-buttons {
        flex-direction: column;
    }

    .byob-cta-buttons .btn-primary,
    .byob-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}