/* ==========================================================================
   Blok_01.css - OFERTA DLA BIZNESU: SPOTKANIA (Przedrostek biz-meet-)
   ========================================================================== */

.biz-meet-container {
    font-family: 'Inter', sans-serif;
    background-color: #090a0c;
    color: #d1d5db;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

.biz-meet-container * {
    box-sizing: border-box;
}

/* Hero Section */
.biz-meet-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-meet-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d49a6a;
    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-meet-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    font-weight: 700;
}

.biz-meet-lead {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #b0b7c0;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Układ Editorial (Split Row) */
.biz-meet-editorial {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.biz-meet-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.biz-meet-row.reverse {
    flex-direction: row-reverse;
}

.biz-meet-text-col {
    flex: 1;
}

.biz-meet-img-col {
    flex: 1;
    overflow: hidden;
    border: 1px solid rgba(212, 154, 106, 0.2);
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background-color: #06080b;
}

.biz-meet-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.02) brightness(0.85);
    transition: transform 0.6s ease;
}

.biz-meet-row:hover .biz-meet-img-col img {
    transform: scale(1.02);
}

.biz-meet-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #d49a6a;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.biz-meet-text-col h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    margin: 0 0 20px 0;
}

.biz-meet-text-col p {
    color: #a0aec0;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.biz-meet-mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.biz-meet-mini-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #ced4da;
}

.biz-meet-mini-list li::before {
    content: "▫";
    color: #d49a6a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Atuty (Grid) */
.biz-meet-features-section {
    background: #11141a;
    padding: 60px 40px;
    border-radius: 4px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.biz-meet-section-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.biz-meet-section-desc {
    font-family: 'Lora', serif;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 40px;
}

.biz-meet-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.biz-meet-feature-item {
    background: #090a0c;
    border: 1px solid rgba(255,255,255,0.02);
    padding: 25px;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.biz-meet-feature-item:hover {
    border-color: rgba(212, 154, 106, 0.25);
}

.biz-meet-feat-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.biz-meet-feature-item h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.biz-meet-feature-item p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
}

/* Stopka biznesowa CTA */
.biz-meet-cta {
    border: 1px solid #d49a6a;
    background: linear-gradient(180deg, #11141a 0%, #090a0c 100%);
    padding: 55px 40px;
    text-align: center;
    border-radius: 4px;
}

.biz-meet-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-meet-cta p {
    font-family: 'Lora', serif;
    color: #9ca3af;
    max-width: 750px;
    margin: 0 auto 35px auto;
    font-size: 1.05rem;
}

.biz-meet-contacts-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.biz-meet-link {
    color: #ffffff;
    font-family: 'Lora', serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s;
}

.biz-meet-link:hover {
    color: #d49a6a;
}

.biz-meet-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-meet-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-meet-row, .biz-meet-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .biz-meet-features-grid {
        grid-template-columns: 1fr;
    }
    .biz-meet-feature-item[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .biz-meet-features-section {
        padding: 40px 20px;
    }
    .biz-meet-hero h1 {
        font-size: 2rem;
    }
    .biz-meet-contacts-row {
        flex-direction: column;
        gap: 15px;
    }
}
