.sales-focus-wrapper {
    padding: 80px 0;
    overflow: hidden;
    background: #fdfdfd;
}

.sales-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Visual Side --- */
.sales-visual {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    z-index: 2;
}

.hero-sales-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 5;
    animation: salesFloat 5s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #ff4757;
    color: #fff;
    padding: 12px 24px;
    font-weight: 800;
    border-radius: 50px;
    z-index: 10;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

/* --- Content Side --- */
.sales-content { flex: 1; }

.sales-sub {
    color: var(--sales-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.sales-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.sales-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px 0;
}

.sales-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--sales-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
}

/* --- Button Power --- */
.sales-btn-premium {
    display: inline-block;
    padding: 22px 45px;
    background: var(--sales-color);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sales-btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Der "Glanz-Effekt" der über den Button wandert */
.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.image-stack figure {
    margin: 0; /* Contao Standard-Abstände killen */
}
.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

@keyframes shine {
    100% { left: 150%; }
}

@keyframes salesFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cta-note { font-size: 0.85rem; color: #888; margin-top: 12px; }

/* Mobil */
@media (max-width: 992px) {
    .sales-grid { flex-direction: column; text-align: center; }
    .sales-checklist li { justify-content: center; }
}
