/* ============================================================= */
/* /var/www/html/AC/AC.css – AOE-CREATOR VERSION */
/* Gleiches Design-System wie SS, aber mit Creator-Farben */
/* ============================================================= */
/* ------------------- BASIS STYLING ------------------- */
#business-ac.ac-body {
    margin: 0; padding: 0; font-family: "Montserrat", sans-serif;
    background: #0a0a0a; color: #ffffff; min-height: 100vh;
    display: block !important; opacity: 1 !important; width: 100%;
}

/* ------------------- HEADER FARBEN & TEXT ------------------- */
#business-ac .ac-header {
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%) !important;
    text-align: center; color: white; position: relative; min-height: 100px;
    display: flex; flex-direction: column; justify-content: center; gap: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 2px rgba(255,255,255,0.05);
    width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}

#business-ac .ac-header::before {
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:conic-gradient(from 0deg at 50% 50%,
        transparent 0%,
        rgba(147, 51, 234, 0.1) 10%,
        rgba(79, 70, 229, 0.05) 20%,
        rgba(59, 130, 246, 0.03) 30%,
        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)}
}

#business-ac .ac-h1 {
    font-size:2.125em;
    font-weight:700;
    margin:0;
    background:linear-gradient(135deg,#9333ea 0%,#3b82f6 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    letter-spacing:-0.5px;
    position:relative;
    z-index:2;
    transition:all .3s cubic-bezier(.4,0,.2,1)
}

#business-ac .ac-animated-text {
    min-height:1.8em;
    font-size:1.02em;
    font-weight:500;
    color:#c7d2fe;
    position:relative;
    z-index:2;
    transition:all .3s ease
}

/* ------------------- THUMBNAILS (data-index-basiert) ------------------- */
/* data-index="0" = Dashboards (Lila-Blau) */
#business-ac .ac-category-thumb[data-index="0"] .thumb-content {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
}

#business-ac .ac-category-thumb[data-index="0"]:hover .thumb-content {
    background: linear-gradient(135deg, #5b51e8 0%, #8b5cf6 100%) !important;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6) !important;
}

/* data-index="1" = Websites (Cyan) */
#business-ac .ac-category-thumb[data-index="1"] .thumb-content {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
    color: #ffffff !important;
}

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

/* data-index="2" = QR Codes (Grün) */
#business-ac .ac-category-thumb[data-index="2"] .thumb-content {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    color: #ffffff !important;
}

#business-ac .ac-category-thumb[data-index="2"]:hover .thumb-content {
    background: linear-gradient(135deg, #0da271 0%, #34d399 100%) !important;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6) !important;
}

/* data-index="3" = Workflows (Orange) */
#business-ac .ac-category-thumb[data-index="3"] .thumb-content {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%) !important;
    color: #ffffff !important;
}

#business-ac .ac-category-thumb[data-index="3"]:hover .thumb-content {
    background: linear-gradient(135deg, #f15a0c 0%, #fb923c 100%) !important;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6) !important;
}

/* data-index="4" = KI-Workflows (Pink) */
#business-ac .ac-category-thumb[data-index="4"] .thumb-content {
    background: linear-gradient(135deg, #be185d 0%, #db2777 100%) !important;
    color: #ffffff !important;
}

#business-ac .ac-category-thumb[data-index="4"]:hover .thumb-content {
    background: linear-gradient(135deg, #d61a69 0%, #ec4899 100%) !important;
    box-shadow: 0 0 30px rgba(219, 39, 119, 0.6) !important;
}

/* Allgemeine Thumbnail-Regeln */
#business-ac .ac-category-thumb {
    border: none !important;
    width: 289px;
    height: 161.5px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12.75px;
    box-shadow: 0 6.8px 17px rgba(0,0,0,.15);
    transition: all .4s ease;
    flex-shrink: 0;
    position: relative;
}

#business-ac .ac-category-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 12.75px 29.75px rgba(0,0,0,0.3);
    z-index: 10;
}

#business-ac .ac-category-thumb.ac-active {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    transform: scale(1.05);
}

#business-ac .ac-category-thumb .thumb-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.105em;
    text-align: center;
    padding: 12.75px;
    flex-direction: column;
    position: relative;
    border-radius: 12.75px;
}

#business-ac .ac-category-thumb .ac-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* ------------------- FEATURED CARD & BUTTON ------------------- */
#business-ac .ac-featured-card {
    width: 100%;
    max-width: 1088px;
    height: 408px;
    background: #1a1a1a;
    box-shadow: 0 12.75px 34px rgba(0,0,0,.18);
    overflow: hidden;
    border-radius: 17px;
    display: flex;
    position: relative;
    animation: fadeIn 1.2s ease-out;
    border: 1px solid #333333;
}

.ac-video-container {
    width: 70%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.ac-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-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: 17px;
    background: rgba(0, 0, 0, 0.5);
}

.ac-overlay-logo {
    width: 85px;
    height: auto;
    margin-bottom: 17px;
}

.ac-overlay-content h3 {
    font-size: 1.87em;
    font-weight: 700;
    margin: 0 0 8.5px 0;
    text-shadow: 0 1.7px 6.8px rgba(0,0,0,.5);
    background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ac-overlay-content .ac-price {
    font-size: 2.38em;
    font-weight: 800;
    color: #3b82f6;
    text-shadow: 0 1.7px 6.8px rgba(0,0,0,.5);
    letter-spacing: -1px;
}

#business-ac .ac-featured-info {
    width: 30%;
    padding: 34px 25.5px;
    background: #1f1f1f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13.6px;
    opacity: 0;
    animation: slideInRight 1.2s ease-out .6s forwards;
}

#business-ac .ac-featured-info h3 {
    font-size: 1.53em;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
    border-bottom: 2.55px solid #3b82f6;
    padding-bottom: 8.5px;
}

#business-ac .ac-price {
    font-size: 1.53em;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: -1px;
    text-shadow: 0 1.7px 3.4px rgba(59, 130, 246, 0.3);
}

#business-ac .ac-desc {
    font-size: 0.8075em;
    color: #d1d5db;
    line-height: 1.5;
    font-weight: 500;
}

#business-ac .ac-featured-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

#business-ac .ac-featured-info ul li {
    font-size: 0.765em;
    color: #e5e7eb;
    margin: 6.8px 0;
    padding-left: 27.2px;
    position: relative;
    opacity: 0;
    animation: fadeInUpItem .6s ease-out forwards;
    line-height: 1.4;
}

#business-ac .ac-featured-info ul li::before {
    content: "▸";
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.105em;
    position: absolute;
    left: 0;
    top: -1.7px;
}

/* ------------------- BUTTONS ------------------- */
#business-ac .ac-btn.ac-select-btn {
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    color: white;
    border: none;
    padding: 10.2px 34px;
    font-size: 0.935em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, .4);
    transition: all .4s ease;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 20px;
}

#business-ac .ac-btn.ac-select-btn:hover {
    background: linear-gradient(135deg, #a855f7, #2563eb);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 25px rgba(59, 130, 246, .5);
}

/* ------------------- LAYOUT ------------------- */
#business-ac .ac-featured-creation {
    padding: 34px 17px 25.5px;
    background: #111111;
    display: flex;
    justify-content: center;
    min-height: 425px;
    width: 100%;
}

#business-ac .ac-categories-row {
    display: flex;
    justify-content: center;
    gap: 21.25px;
    padding: 25.5px 17px;
    background: #0a0a0a;
    overflow-x: auto;
    flex-wrap: nowrap;
    min-height: 187px;
}

/* Responsive */
@media (max-width: 1024px) {
    #business-ac .ac-featured-card {
        max-width: 95%;
    }
    #business-ac .ac-category-thumb {
        width: 255px;
        height: 144.5px;
    }
    .ac-video-container {
        width: 65%;
    }
}

@media (max-width: 768px) {
    #business-ac .ac-featured-card {
        height: auto;
        flex-direction: column;
        max-width: 90%;
    }
    #business-ac .ac-video-container,
    #business-ac .ac-featured-info {
        width: 100%;
    }
    .ac-video-container {
        height: 255px;
    }
    #business-ac .ac-featured-info {
        padding: 25.5px 21.25px;
    }
    #business-ac .ac-category-thumb {
        width: 238px;
        height: 136px;
    }
    #business-ac .ac-categories-row {
        gap: 12.75px;
        padding: 21.25px 12.75px;
    }
}

@media (max-width: 480px) {
    #business-ac .ac-category-thumb {
        width: 212.5px;
        height: 119px;
    }
    .ac-video-container {
        height: 212.5px;
    }
}

/* Animationen */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(17px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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