/* ==========================================================================
   OFERTA - STYL INDUSTRIALNY
   ========================================================================== */

.metal-details {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(to bottom, #1a233a 0%, #111827 40%, #0b1020b3 100%);
    overflow: hidden;
    width: 100%;
}

.metal-details__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.metal-details__main-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 18px;
    text-transform: uppercase;
}

.metal-details__main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ffcc00; /* Zmieniono na żółty, by pasowało do Kontaktu */
}

/* --- POPRAWIONE NAGŁÓWKI W WIERSZACH --- */
.metal-row__number {
    display: block;
   font-size: clamp(35px, 8vw, 15px); /* Skalowanie responsywne */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05); /* Bardzo subtelny napis w tle */
    line-height: 1;
    margin-bottom: -15px;
    text-transform: uppercase;
}

.metal-row__title {
    font-size: 28px;
    color: #ffcc00; /* Zmieniono na żółty (jak w kontakcie) */
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- UKŁAD WIERSZY --- */
.metal-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.metal-row--reverse {
    flex-direction: row-reverse;
}

.metal-row__content, 
.metal-row__image {
    flex: 1 1 450px;
}

.metal-row__text {
    font-size: 16px;
    line-height: 1.7;
    color: #9ca3af; 
    margin-bottom: 25px;
}

/* --- LISTA ZALET --- */
.metal-row__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.metal-row__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.metal-row__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffcc00; /* Akcent żółty */
    font-weight: 900;
}

/* --- OBRAZY --- */
.metal-img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.metal-row:hover .metal-img {
    transform: scale(1.02);
}

/* --- ANIMACJA --- */
.metal-row.is-visible, 
.metal-row.metal-item--activated {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 1103px) {
    .metal-row, 
    .metal-row--reverse {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
        margin-bottom: 70px;
    }

    .metal-row__content {
        max-width: 100%;
        padding: 0 10px;
    }

    .metal-row__image {
        width: 100%;
        order: 1;
    }

    .metal-img {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .metal-row__list li {
        max-width: 500px;
        margin: 0 auto 12px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .metal-row__title {
        font-size: 22px;
    }

    .metal-row__number {
        font-size: 40px;
    }

    .metal-row__content, 
    .metal-row__image {
        flex: none;
    }
}