/* ==========================================================================
   Blok_01.css - OFERTA DLA BIZNESU: SZKOLENIA (Przedrostek biz-train-)
   ========================================================================== */

.biz-train-container {
    font-family: 'Inter', sans-serif;
    background-color: #090a0c; /* Głęboka biznesowa czerń/grafit */
    color: #d1d5db;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

.biz-train-container * {
    box-sizing: border-box;
}

/* Hero Section */
.biz-train-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #11141a 0%, #06080b 100%);
    border: 1px solid rgba(212, 154, 106, 0.15);
    border-radius: 4px;
    margin-bottom: 60px;
}

.biz-train-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d49a6a; /* Miedź/Złoto */
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 154, 106, 0.3);
    padding: 4px 12px;
    border-radius: 2px;
    background: rgba(212, 154, 106, 0.05);
}

.biz-train-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    font-weight: 700;
}

.biz-train-lead {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #b0b7c0;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tytuły sekcji */
.biz-train-section-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biz-train-section-desc {
    font-family: 'Lora', serif;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* Kafelki Kroków ze zdjęciami - Układ 2x2 na komputerze */
.biz-train-grid-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.biz-train-step-card {
    background: #11141a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.biz-train-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 154, 106, 0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.biz-train-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #06080b;
}

.biz-train-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05) brightness(0.8);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.biz-train-step-card:hover .biz-train-img-wrapper img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.05) brightness(0.9);
}

.biz-train-step-content {
    padding: 30px;
    position: relative;
}

.biz-train-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 154, 106, 0.08); /* Wielki dyskretny numer w tle */
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
}

.biz-train-step-content h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 2;
}

.biz-train-step-content p {
    font-size: 0.95rem;
    color: #a0aec0;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Sekcja wpływu otoczenia */
.biz-train-environment {
    background: linear-gradient(90deg, rgba(212, 154, 106, 0.03) 0%, rgba(17, 20, 26, 0.8) 100%);
    border-left: 3px solid #d49a6a;
    padding: 40px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 60px;
}

.biz-train-env-box h3 {
    font-family: 'Playfair Display', serif;
    color: #d49a6a;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.biz-train-env-box p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #ced4da;
    margin: 0;
    line-height: 1.7;
}

/* Stopka biznesowa CTA */
.biz-train-cta {
    border: 1px solid #d49a6a;
    background: linear-gradient(180deg, #11141a 0%, #090a0c 100%);
    padding: 55px 40px;
    text-align: center;
    border-radius: 4px;
}

.biz-train-cta h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biz-train-cta p {
    font-family: 'Lora', serif;
    color: #9ca3af;
    max-width: 750px;
    margin: 0 auto 35px auto;
    font-size: 1.05rem;
}

.biz-train-contacts-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.biz-train-link {
    color: #ffffff;
    font-family: 'Lora', serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s;
}

.biz-train-link:hover {
    color: #d49a6a;
}

.biz-train-btn-submit {
    display: inline-block;
    background: #d49a6a;
    color: #090a0c;
    font-family: 'Inter', sans-serif;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.biz-train-btn-submit:hover {
    background: #ffffff;
    color: #090a0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 154, 106, 0.25);
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
    .biz-train-grid-steps {
        grid-template-columns: 1fr; /* Na tabletach i telefonach jeden pod drugim */
        gap: 25px;
    }
    .biz-train-environment {
        padding: 25px;
    }
    .biz-train-hero h1 {
        font-size: 2rem;
    }
    .biz-train-contacts-row {
        flex-direction: column;
        gap: 15px;
    }
}
