/* SA7business.css – vollständig und korrigiert */
.sa7-business {
    --business-primary: #1e3a8a;
    --business-accent: #f59e0b;
    --business-soft: #fef3c7;
    --business-gradient1: #1e3a8a;
    --business-gradient2: #2563eb;
    font-family: "Montserrat", sans-serif;
    margin: 2rem 0;
}

.sa7-business .sa7-header {
    background: linear-gradient(135deg, var(--business-gradient1) 0%, var(--business-gradient2) 50%, #3b82f6 100%);
    text-align: center;
    color: white;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.sa7-business .sa7-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
        transparent 0%,
        rgba(245, 158, 11, 0.1) 10%,
        rgba(245, 158, 11, 0.05) 20%,
        transparent 50%);
    animation: lightBeam 8s linear infinite;
    pointer-events: none;
}

@keyframes lightBeam {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.sa7-business .sa7-h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.sa7-business .sa7-animated-text {
    font-size: 1.1em;
    font-weight: 500;
    color: #fef3c7;
    position: relative;
    z-index: 2;
}

/* Thumbnails */
.sa7-business .sa7-category-thumb {
    border: none;
    width: 280px;
    height: 160px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    flex-shrink: 0;
    position: relative;
}

.sa7-business .sa7-category-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    z-index: 10;
}

.sa7-business .sa7-category-thumb.sa7-active {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.sa7-business .sa7-category-thumb .thumb-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2em;
    text-align: center;
    padding: 15px;
    flex-direction: column;
    border-radius: 16px;
}

.sa7-business .sa7-category-thumb .sa7-icon {
    font-size: 2.8em;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Individuelle Farben pro Index */
.sa7-business .sa7-category-thumb[data-index="0"] .thumb-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}
.sa7-business .sa7-category-thumb[data-index="0"]:hover .thumb-content {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 0 30px rgba(30,58,138,0.6);
}
.sa7-business .sa7-category-thumb[data-index="1"] .thumb-content {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}
.sa7-business .sa7-category-thumb[data-index="1"]:hover .thumb-content {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    box-shadow: 0 0 30px rgba(217,119,6,0.6);
}
.sa7-business .sa7-category-thumb[data-index="2"] .thumb-content {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}
.sa7-business .sa7-category-thumb[data-index="2"]:hover .thumb-content {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    box-shadow: 0 0 30px rgba(4,120,87,0.6);
}
.sa7-business .sa7-category-thumb[data-index="3"] .thumb-content {
    background: linear-gradient(135deg, #6b21a8 0%, #7e22ce 100%);
}
.sa7-business .sa7-category-thumb[data-index="3"]:hover .thumb-content {
    background: linear-gradient(135deg, #7e22ce 0%, #a855f7 100%);
    box-shadow: 0 0 30px rgba(126,34,206,0.6);
}

/* Featured Card */
.sa7-business .sa7-featured-solution {
    padding: 40px 20px 30px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 450px;
    width: 100%;
}

.sa7-business .sa7-featured-card {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    position: relative;
    animation: fadeIn 1.2s ease-out;
    border: 1px solid #e1e5e9;
}

.sa7-business .sa7-video-container {
    width: 65%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--business-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa7-business .sa7-video-container .sa7-placeholder {
    text-align: center;
    color: white;
}

.sa7-business .sa7-video-container .sa7-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.sa7-business .sa7-video-container .sa7-placeholder h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sa7-business .sa7-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(30, 58, 138, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

.sa7-business .sa7-video-container:hover .sa7-video-overlay {
    opacity: 1;
}

.sa7-business .sa7-overlay-content h3 {
    font-size: 2.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    color: white;
}

.sa7-business .sa7-overlay-content .sa7-price {
    font-size: 2em;
    font-weight: 800;
    color: var(--business-accent);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sa7-business .sa7-featured-info {
    width: 35%;
    padding: 40px 30px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: slideInRight 1.2s ease-out 0.6s forwards;
}

.sa7-business .sa7-featured-info h3 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
    color: var(--business-primary);
    line-height: 1.2;
    border-bottom: 3px solid var(--business-accent);
    padding-bottom: 10px;
}

.sa7-business .sa7-featured-info .sa7-price {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--business-primary);
    letter-spacing: -1px;
}

.sa7-business .sa7-featured-info .sa7-desc {
    font-size: 0.95em;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
}

.sa7-business .sa7-featured-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa7-business .sa7-featured-info ul li {
    font-size: 0.9em;
    color: #374151;
    margin: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
}

.sa7-business .sa7-featured-info ul li::before {
    content: "✓";
    color: var(--business-accent);
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.sa7-business .sa7-btn {
    background: linear-gradient(135deg, var(--business-gradient1), var(--business-gradient2));
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.sa7-business .sa7-btn:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.5);
}

.sa7-business .sa7-categories-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 30px 20px;
    background: #f8f9fa;
    overflow-x: auto;
    flex-wrap: nowrap;
}

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

@keyframes slideInRight {
    from { transform: translateX(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1024px) {
    .sa7-business .sa7-featured-card {
        max-width: 95%;
        height: auto;
        flex-direction: column;
    }
    .sa7-business .sa7-video-container {
        width: 100%;
        height: 300px;
    }
    .sa7-business .sa7-featured-info {
        width: 100%;
        padding: 30px;
    }
    .sa7-business .sa7-category-thumb {
        width: 240px;
        height: 140px;
    }
}