[x-cloak] { 
    display: none !important; 
}

/* Base Box & Layout */
.bs-container {
    width: 100%;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    padding-top: 2rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bs-container {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
}

.bs-container * {
    box-sizing: border-box;
    font-family: inherit;
    word-break: break-word; /* Verhindert Layout-Bruch durch lange Wörter */
}

.bs-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .bs-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Header */
.bs-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .bs-header {
        margin-bottom: 4rem;
    }
}

.bs-subtitle {
    color: #4b5563;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.bs-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.15;
}

@media (min-width: 640px) {
    .bs-title { font-size: 2.5rem; }
}

@media (min-width: 768px) {
    .bs-title { font-size: 3.5rem; }
}

.bs-description {
    color: #4b5563;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .bs-description { font-size: 1rem; }
}

/* Tabs Navigation - Vollständig Responsive Grid */
.bs-tabs {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    background-color: #f3f4f6;
    padding: 0.375rem;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
}

@media (min-width: 640px) {
    .bs-tabs {
        grid-template-columns: repeat(4, 1fr);
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .bs-tabs {
        margin-bottom: 4rem;
    }
}

.bs-tab-btn {
    width: 100%;
    padding: 0.75rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .bs-tab-btn {
        padding: 0.875rem 0.75rem;
        font-size: 0.8125rem;
        letter-spacing: 0.05em;
    }
}

.bs-tab-btn:hover {
    color: #111827;
}

/* Active Tab Styles */
.bs-tab-btn.tab-gastro.active {
    background-color: #fffbe6;
    color: #b45309;
    border-color: #fde68a;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.15);
}

.bs-tab-btn.tab-craft.active {
    background-color: #fff7ed;
    color: #c2410c;
    border-color: #ffedd5;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.15);
}

.bs-tab-btn.tab-beauty.active {
    background-color: #fdf2f8;
    color: #be185d;
    border-color: #fbcfe8;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.15);
}

.bs-tab-btn.tab-medical.active {
    background-color: #f0fdf4;
    color: #0f766e;
    border-color: #ccfbf1;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.15);
}

/* Tab Content & Section Headers */
.bs-tab-content {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid transparent;
}

@media (min-width: 640px) {
    .bs-tab-content {
        padding: 2rem;
        border-radius: 2rem;
    }
}

@media (min-width: 1024px) {
    .bs-tab-content {
        padding: 2.5rem;
    }
}

.bs-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .bs-section-header {
        margin-bottom: 3.5rem;
    }
}

.bs-badge {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

@media (min-width: 640px) {
    .bs-badge { font-size: 0.75rem; }
}

.bs-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: #111827;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .bs-section-title { font-size: 2.25rem; }
}

@media (min-width: 768px) {
    .bs-section-title { font-size: 2.75rem; }
}

.bs-section-title span {
    font-style: italic;
    opacity: 0.5;
}

/* Main Grid Layout */
.bs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .bs-grid { 
        grid-template-columns: repeat(12, 1fr); 
        gap: 2.5rem;
    }
}

/* Pricing Card Base */
.bs-card-pricing {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .bs-card-pricing {
        padding: 2.5rem 2rem;
        border-radius: 2rem;
    }
}

@media (min-width: 1024px) {
    .bs-card-pricing { 
        grid-column: span 5; 
        padding: 3rem 2.25rem;
    }
}

.bs-card-header {
    margin-bottom: 1.5rem;
}

.bs-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.06em;
}

@media (min-width: 640px) {
    .bs-tag {
        font-size: 0.6875rem;
        padding: 0.375rem 0.875rem;
        letter-spacing: 0.08em;
    }
}

.bs-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0;
    color: #111827;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .bs-card-title {
        font-size: 1.625rem;
        margin-top: 1.25rem;
    }
}

/* Speed Toggle Buttons */
.bs-speed-toggle {
    margin-bottom: 2rem;
    background-color: #f9fafb;
    padding: 0.375rem;
    border-radius: 0.875rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

@media (min-width: 480px) {
    .bs-speed-toggle { 
        flex-direction: row; 
    }
}

.bs-speed-btn {
    flex: 1;
    padding: 0.625rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    text-align: center;
}

/* Price Box */
.bs-price-box {
    margin-bottom: 2rem;
}

.bs-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
    line-height: 1;
}

@media (min-width: 480px) {
    .bs-price { font-size: 3rem; }
}

@media (min-width: 640px) {
    .bs-price { font-size: 3.5rem; }
}

.bs-price-type {
    display: block;
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (min-width: 480px) {
    .bs-price-type {
        display: inline-block;
        margin-left: 0.625rem;
        margin-top: 0;
    }
}

.bs-price-desc {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* CTA Buttons Base */
.bs-cta-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .bs-cta-btn {
        padding: 1.25rem;
        letter-spacing: 0.12em;
        margin-top: 0;
    }
}

.bs-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Features Grid */
.bs-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bs-features-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .bs-features-grid { 
        grid-column: span 7; 
        gap: 1.5rem;
    }
}

.bs-feature-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.35rem 1.25rem;
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .bs-feature-card {
        border-radius: 1.5rem;
        padding: 1.75rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .bs-feature-card {
        padding: 2rem;
    }
}

.bs-num {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .bs-num {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }
}

.bs-feature-card h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.9375rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #111827;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .bs-feature-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

.bs-feature-card p {
    color: #4b5563;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 640px) {
    .bs-feature-card p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}


/* ==========================================================================
   BRANCHEN-SPEZIFISCHE FARBSCHEMATA
   ========================================================================== */

/* --- 🍽️ GASTRO FARBEN (Warmes Amber / Gold) --- */
.bs-theme-gastro {
    background-color: #fffdf5;
    border-color: #fef3c7;
}
.bs-theme-gastro .bs-badge { color: #d97706; }
.bs-theme-gastro .bs-card-pricing {
    border: 2px solid #fde68a;
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.06);
}
.bs-theme-gastro .bs-tag {
    background-color: #fffbe6;
    color: #b45309;
    border: 1px solid #fde68a;
}
.bs-theme-gastro .bs-speed-btn.active {
    background-color: #ffffff;
    color: #b45309;
    border-color: #fde68a;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.1);
}
.bs-theme-gastro .bs-speed-btn.active-express {
    background-color: #d97706;
    color: #ffffff;
}
.bs-theme-gastro .bs-cta-btn {
    background-color: #d97706;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}
.bs-theme-gastro .bs-feature-card {
    border: 1px solid #fef3c7;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.03);
}
.bs-theme-gastro .bs-feature-card:hover {
    border-color: #fde68a;
}
.bs-theme-gastro .bs-num { color: #d97706; }


/* --- 🛠️ HANDWERK FARBEN (Robustes Rostorange / Krapprot) --- */
.bs-theme-craft {
    background-color: #fffaf8;
    border-color: #ffedd5;
}
.bs-theme-craft .bs-badge { color: #ea580c; }
.bs-theme-craft .bs-card-pricing {
    border: 2px solid #fed7aa;
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.06);
}
.bs-theme-craft .bs-tag {
    background-color: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}
.bs-theme-craft .bs-speed-btn.active {
    background-color: #ffffff;
    color: #c2410c;
    border-color: #fed7aa;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.1);
}
.bs-theme-craft .bs-speed-btn.active-express {
    background-color: #ea580c;
    color: #ffffff;
}
.bs-theme-craft .bs-cta-btn {
    background-color: #ea580c;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}
.bs-theme-craft .bs-feature-card {
    border: 1px solid #ffedd5;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.03);
}
.bs-theme-craft .bs-feature-card:hover {
    border-color: #fed7aa;
}
.bs-theme-craft .bs-num { color: #ea580c; }


/* --- ✨ BEAUTY FARBEN (Edles Pink / Magenta) --- */
.bs-theme-beauty {
    background-color: #fcf5f9;
    border-color: #fbcfe8;
}
.bs-theme-beauty .bs-badge { color: #db2777; }
.bs-theme-beauty .bs-card-pricing {
    border: 2px solid #f9a8d4;
    box-shadow: 0 10px 40px rgba(219, 39, 119, 0.06);
}
.bs-theme-beauty .bs-tag {
    background-color: #fdf2f8;
    color: #be185d;
    border: 1px solid #f9a8d4;
}
.bs-theme-beauty .bs-speed-btn.active {
    background-color: #ffffff;
    color: #be185d;
    border-color: #f9a8d4;
    box-shadow: 0 2px 8px rgba(219, 39, 119, 0.1);
}
.bs-theme-beauty .bs-speed-btn.active-express {
    background-color: #db2777;
    color: #ffffff;
}
.bs-theme-beauty .bs-cta-btn {
    background-color: #db2777;
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.3);
}
.bs-theme-beauty .bs-feature-card {
    border: 1px solid #fbcfe8;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.03);
}
.bs-theme-beauty .bs-feature-card:hover {
    border-color: #f9a8d4;
}
.bs-theme-beauty .bs-num { color: #db2777; }


/* --- 🩺 MEDIZIN FARBEN (Beruhigendes Teal / Smaragd) --- */
.bs-theme-medical {
    background-color: #f4fbf9;
    border-color: #ccfbf1;
}
.bs-theme-medical .bs-badge { color: #0d9488; }
.bs-theme-medical .bs-card-pricing {
    border: 2px solid #99f6e4;
    box-shadow: 0 10px 40px rgba(13, 148, 136, 0.06);
}
.bs-theme-medical .bs-tag {
    background-color: #f0fdf4;
    color: #0f766e;
    border: 1px solid #99f6e4;
}
.bs-theme-medical .bs-speed-btn.active {
    background-color: #ffffff;
    color: #0f766e;
    border-color: #99f6e4;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
}
.bs-theme-medical .bs-speed-btn.active-express {
    background-color: #0d9488;
    color: #ffffff;
}
.bs-theme-medical .bs-cta-btn {
    background-color: #0d9488;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}
.bs-theme-medical .bs-feature-card {
    border: 1px solid #ccfbf1;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.03);
}
.bs-theme-medical .bs-feature-card:hover {
    border-color: #99f6e4;
}
.bs-theme-medical .bs-num { color: #0d9488; }