/* ==========================================================================
   Blok_01.css - OFERTA DLA BIZNESU: INTEGRACJE (Przedrostek biz-team-)
   ========================================================================== */

.biz-team-container {
    font-family: 'Inter', sans-serif;
    background-color: #090a0c; /* Biznesowa głęboka czerń */
    color: #d1d5db;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

.biz-team-container * {
    box-sizing: border-box;
}

/* Hero Section */
.biz-team-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-team-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d49a6a; /* Biznesowa 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-team-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    font-weight: 700;
}

.biz-team-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-team-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-team-section-desc {
    font-family: 'Lora', serif;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* --- ZAAWANSOWANY BENTO GRID DLA DIZAINU PREMIUM --- */
.biz-team-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.biz-team-bento-item {
    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;
}

/* Definicje asymetrii dla dużych ekranów */
@media (min-width: 992px) {
    .item-large {
        grid-row: span 2;
    }
    .item-wide {
        grid-column: span 2;
    }
}

.biz-team-bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 154, 106, 0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.biz-team-card-img {
    width: 100%;
    overflow: hidden;
    background-color: #06080b;
    flex-grow: 0;
}

/* Automatyczne proporcje obrazów dla różnych typów kart */
.biz-team-bento-item:not(.item-large) .biz-team-card-img {
    aspect-ratio: 16 / 10;
}
.item-large .biz-team-card-img {
    aspect-ratio: 4 / 3;
}
.item-wide .biz-team-card-img {
    aspect-ratio: 21 / 9;
}

.biz-team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05) brightness(0.85);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.biz-team-bento-item:hover .biz-team-card-img img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.05) brightness(0.95);
}

.biz-team-card-text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.biz-team-card-text h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.35rem;
    margin: 0 0 12px 0;
}

.biz-team-card-text p {
    font-size: 0.95rem;
    color: #a0aec0;
    margin: 0;
    line-height: 1.5;
}

/* Wyróżniony pasaż tekstu o tarasie */
.biz-team-assets {
    background: linear-gradient(90deg, #11141a 0%, rgba(212, 154, 106, 0.02) 100%);
    border-right: 3px solid #d49a6a;
    padding: 40px;
    border-radius: 4px 0 0 4px;
    margin-bottom: 60px;
    text-align: right;
}

.biz-team-asset-card 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-team-asset-card p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #ced4da;
    margin: 0;
    line-height: 1.7;
    max-width: 950px;
    margin-left: auto;
}

/* Stopka biznesowa CTA */
.biz-team-cta {
    border: 1px solid #d49a6a;
    background: linear-gradient(180deg, #11141a 0%, #090a0c 100%);
    padding: 55px 40px;
    text-align: center;
    border-radius: 4px;
}

.biz-team-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-team-cta p {
    font-family: 'Lora', serif;
    color: #9ca3af;
    max-width: 750px;
    margin: 0 auto 35px auto;
    font-size: 1.05rem;
}

.biz-team-contacts-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.biz-team-link {
    color: #ffffff;
    font-family: 'Lora', serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s;
}

.biz-team-link:hover {
    color: #d49a6a;
}

.biz-team-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-team-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: 991px) {
    .biz-team-bento-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media (max-width: 767px) {
    .biz-team-bento-grid {
        grid-template-columns: 1fr; /* 1 kolumna na telefonie */
        gap: 20px;
    }
    .biz-team-hero h1 { font-size: 2rem; }
    .biz-team-assets { text-align: left; border-right: none; border-left: 3px solid #d49a6a; padding: 25px; }
    .biz-team-asset-card p { margin-left: 0; }
    .biz-team-contacts-row { flex-direction: column; gap: 15px; }
}
