/* AI Demo Showcase Section */
.ai-demo-showcase-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

.demo-header-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.demo-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0F172A;
}

.demo-subtitle-desc {
    font-size: 1.05rem;
    color: #64748B;
    font-weight: 500;
}

.before-after-showcase-container {
    width: 100%;
    max-width: 860px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.before-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.before-img-box {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
}

.before-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.center-arrow-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    z-index: 10;
}

.after-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 2px solid #4F46E5;
    box-shadow: 0 12px 36px rgba(79, 70, 229, 0.12);
}

.after-grid-box {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.after-grid-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mini-passport-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
}

.mini-photo-tile {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    position: relative;
}

.mini-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-bottom-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 2px 0;
}

.label-grey { 
    color: #64748B; 
}

.label-purple { 
    color: #4F46E5; 
}
