/**
 * Solario24 Solar Visualizer - Promo Section Styles
 */

.solario24-promo-section {
    --promo-green: #82bb41;
    --promo-green-dark: #6fa235;
    --promo-green-light: #9ed062;
    --promo-gold: #e6b82f;
    --promo-gold-dark: #d4a620;
    --promo-dark: #1e1e1e;
    --promo-gray: #6b7280;
    --promo-light: #f4f4f4;
    --promo-white: #ffffff;
    --promo-radius: 0;
    --promo-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

    font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fdf5 0%, #f0f7e8 100%);
    padding: 60px 20px;
    margin: 40px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.solario24-promo-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(130, 187, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.solario24-promo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.solario24-promo-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solario24-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--promo-green) 0%, var(--promo-green-dark) 100%);
    color: var(--promo-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(130, 187, 65, 0.3);
}

.solario24-promo-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.solario24-promo-title {
    font-family: "Hepta Slab", "Archivo", serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--promo-dark);
    line-height: 1.2;
    margin: 0;
}

.solario24-promo-subtitle {
    font-size: 18px;
    color: var(--promo-gray);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

.solario24-promo-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solario24-promo-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--promo-dark);
}

.solario24-promo-features li svg {
    width: 20px;
    height: 20px;
    color: var(--promo-green);
    flex-shrink: 0;
}

.solario24-promo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--promo-green) 0%, var(--promo-green-dark) 100%);
    color: var(--promo-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(130, 187, 65, 0.3);
    width: fit-content;
    margin-top: 10px;
}

.solario24-promo-button:hover {
    background: linear-gradient(135deg, var(--promo-green-light) 0%, var(--promo-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(130, 187, 65, 0.4);
    color: var(--promo-white);
    text-decoration: none;
}

.solario24-promo-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.solario24-promo-button:hover svg {
    transform: translateX(4px);
}

.solario24-promo-image {
    position: relative;
}

.solario24-promo-slider-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--promo-shadow);
}

.solario24-promo-slider {
    position: relative;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.solario24-promo-slider-after {
    width: 100%;
    height: auto;
    display: block;
}

.solario24-promo-slider-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.solario24-promo-slider-before img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: left top;
}

.solario24-promo-slider-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
}

.solario24-promo-label-vorher {
    left: 20px;
}

.solario24-promo-label-nachher {
    right: 20px;
}

.solario24-promo-slider-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 20;
    transform: translateX(-50%);
}

.solario24-promo-slider-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solario24-promo-slider-divider::before {
    content: "\25C0 \25B6";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #666;
    z-index: 22;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .solario24-promo-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .solario24-promo-content {
        align-items: center;
    }

    .solario24-promo-subtitle {
        max-width: 100%;
    }

    .solario24-promo-features {
        align-items: center;
    }

    .solario24-promo-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .solario24-promo-section {
        padding: 40px 16px;
        margin: 30px 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .solario24-promo-title {
        font-size: 28px;
    }

    .solario24-promo-subtitle {
        font-size: 16px;
    }

    .solario24-promo-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .solario24-promo-slider-label {
        font-size: 12px;
        padding: 6px 12px;
        bottom: 12px;
    }

    .solario24-promo-label-vorher {
        left: 12px;
    }

    .solario24-promo-label-nachher {
        right: 12px;
    }

    .solario24-promo-slider-divider::after {
        width: 36px;
        height: 36px;
    }

    .solario24-promo-slider-divider::before {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .solario24-promo-title {
        font-size: 24px;
    }

    .solario24-promo-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .solario24-promo-features li {
        font-size: 14px;
    }
}
