/* SA7private.css – basierend auf SA7.css, spezifisch für private Sektion */
.sa7-private {
    --private-primary: #0a2942;      /* Dunkelblau */
    --private-accent: #00c48c;        /* Türkis */
    --private-soft: #d4f5e9;
    --private-gradient1: #0a2942;
    --private-gradient2: #1d3a5c;
}

.sa7-private .sa7-header {
    background: linear-gradient(135deg, var(--private-gradient1) 0%, var(--private-gradient2) 50%, #2b4c6f 100%) !important;
    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;
}

.sa7-private .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(0, 196, 140, 0.1) 10%,
        rgba(0, 150, 120, 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-private .sa7-h1 {
    font-size: 2.5em;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #d4f5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

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

/* ------------------- THUMBNAILS (data-index-basiert) ------------------- */
.sa7-private .sa7-category-thumb {
    border: none !important;
    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-private .sa7-category-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    z-index: 10;
}

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

.sa7-private .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-private .sa7-category-thumb .sa7-icon {
    font-size: 2.8em;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Individuelle Farben pro Index (wie in SA7.css, aber angepasst) */
.sa7-private .sa7-category-thumb[data-index="0"] .thumb-content {
    background: linear-gradient(135deg, #0a2942 0%, #1d3a5c 100%);
}
.sa7-private .sa7-category-thumb[data-index="0"]:hover .thumb-content {
    background: linear-gradient(135deg, #1d3a5c 0%, #2b4c6f 100%);
    box-shadow: 0 0 30px rgba(10,37,64,0.6);
}

.sa7-private .sa7-category-thumb[data-index="1"] .thumb-content {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}
.sa7-private .sa7-category-thumb[data-index="1"]:hover .thumb-content {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    box-shadow: 0 0 30px rgba(20,184,166,0.6);
}

.sa7-private .sa7-category-thumb[data-index="2"] .thumb-content {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}
.sa7-private .sa7-category-thumb[data-index="2"]:hover .thumb-content {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 0 30px rgba(139,92,246,0.6);
}

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

.sa7-private .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-private .sa7-video-container {
    width: 65%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--private-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.sa7-private .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(10, 37, 64, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.sa7-private .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-private .sa7-overlay-content .sa7-price {
    font-size: 2em;
    font-weight: 800;
    color: var(--private-accent);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sa7-private .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-private .sa7-featured-info h3 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
    color: var(--private-primary);
    line-height: 1.2;
    border-bottom: 3px solid var(--private-accent);
    padding-bottom: 10px;
}

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

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

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

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

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

/* ------------------- BUTTON ------------------- */
.sa7-private .sa7-btn {
    background: linear-gradient(135deg, var(--private-gradient1), var(--private-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(10, 37, 64, 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-private .sa7-btn:hover {
    background: linear-gradient(135deg, #1d3a5c, #2b4c6f);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 25px rgba(10, 37, 64, 0.5);
}

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

/* Animationen */
@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; }
}

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