/* ==========================================================================
   STYLE DEDYKOWANE: OFERTA (ATLANTIC DEPTH - PREMIUM PHYSICS)
   ========================================================================== */

/* --- 1. HERO OFERTY --- */
.offer-hero {
    padding: 180px 20px 100px; 
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(52, 99, 153, 0.08) 0%, transparent 60%);
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; line-height: 1.2; color: var(--color-accent-1); }
.hero-desc { font-size: 1.1rem; color: #475569; max-width: 700px; margin: 0 auto; }


/* ==========================================================================
   BANNER PRO BONO
   ========================================================================== */
.pro-bono-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr; 
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px -20px rgba(15, 42, 74, 0.25); 
    margin-top: -40px; 
    position: relative;
    z-index: 10;
}

.pb-left-col {
    background: linear-gradient(145deg, #0f2a4a 0%, #081628 100%); 
    padding: 60px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pb-left-title { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 40px; color: #fff; letter-spacing: 0.5px; }
.pb-features { display: flex; flex-direction: column; gap: 25px; }
.pb-feature-item { display: flex; align-items: flex-start; gap: 15px; }
.pb-icon { min-width: 24px; height: 24px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.pb-icon i { color: var(--color-accent-2); font-size: 0.8rem; }
.pb-text strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: #fff; font-weight: 600; }
.pb-text p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); line-height: 1.5; margin: 0; }

.pb-right-col { background: #fff; padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; }
.pb-badge { background: #e0f2fe; color: var(--color-accent-1); padding: 8px 16px; border-radius: 6px; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 25px; display: inline-block; }
.pb-big-title { font-family: var(--font-head); font-size: 2.8rem; color: var(--color-accent-1); line-height: 1.1; margin-bottom: 10px; font-weight: 700; }
.pb-subtitle { font-family: var(--font-body); font-style: italic; color: #64748b; font-size: 1rem; margin-bottom: 0; }
.pb-divider { width: 60px; height: 3px; background: var(--color-accent-2); margin: 30px auto; border-radius: 2px; opacity: 0.3; }
.pb-urgent-text { font-size: 0.95rem; color: #475569; line-height: 1.6; margin-bottom: 35px; max-width: 350px; }
.pb-urgent-text strong { color: var(--color-accent-1); font-weight: 700; }

@media (max-width: 992px) {
    .pro-bono-card { grid-template-columns: 1fr; margin-top: 0; }
    .pb-left-col, .pb-right-col { padding: 40px 30px; }
    .pb-right-col { border-top: 1px solid #f1f5f9; }
    .pb-big-title { font-size: 2.2rem; }
}

/* ==========================================================================
   2. PRICING CARDS - NEW PHYSICS (WARSZTATY STYLE)
   ========================================================================== */

.pricing-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    align-items: flex-start;
    padding-top: 60px; 
}

.pricing-card {
    background: #fff; 
    border: 1px solid rgba(15, 42, 74, 0.08); 
    border-radius: 24px; /* Zaokrąglenie jak w warsztatach */
    padding: 40px 30px;
    position: relative; 
    display: flex; 
    flex-direction: column;
    overflow: visible !important; 
    
    /* KLUCZ: Fizyka ruchu identyczna jak w sekcji B2B */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(15, 42, 74, 0.05);
}

/* Efekt "Pływania" po najechaniu (Bounce effect) */
.pricing-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 30px 60px rgba(15, 42, 74, 0.12); 
    border-color: rgba(52, 99, 153, 0.15); 
}

/* --- KARTA WYRÓŻNIONA (DARK/NAVY) --- */
.pricing-card.featured {
    background: var(--color-accent-1); 
    border: 1px solid var(--color-accent-1);
    color: #fff;
    transform: scale(1.03); 
    z-index: 2;
    /* Subtelny, ciągły puls (Oddech) */
    animation: premium-pulse 4s infinite ease-in-out;
}

/* Zachowanie hover dla wyróżnionej karty */
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 80px rgba(15, 42, 74, 0.3);
}

/* Nowa, głębsza animacja pulsowania */
@keyframes premium-pulse {
    0% { box-shadow: 0 10px 40px rgba(15, 42, 74, 0.2); }
    50% { box-shadow: 0 20px 60px rgba(15, 42, 74, 0.4); border-color: #b45309; }
    100% { box-shadow: 0 10px 40px rgba(15, 42, 74, 0.2); }
}

/* Kolorystyka tekstów w karcie wyróżnionej */
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .card-desc,
.pricing-card.featured .feature-list,
.pricing-card.featured .feature-list li { color: #fff !important; }
.pricing-card.featured .price-meta { color: rgba(255, 255, 255, 0.7); }
.pricing-card.featured .feature-list li::before { color: #b45309; }
.pricing-card.featured .card-icon { color: #b45309; }

.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #b45309; color: #fff;
    padding: 8px 20px; border-radius: 50px; 
    font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-white-offer {
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    background: #fff; color: var(--color-accent-1);
    width: 100%; padding: 16px 20px; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; font-size: 0.9rem; text-decoration: none;
    transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    text-align: center;
}
.btn-white-offer:hover { background: #f8fafc; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.card-top { margin-bottom: 25px; text-align: center; }
.card-icon { font-size: 2.2rem; color: var(--color-accent-2); margin-bottom: 20px; display: inline-block; transition: 0.4s; }
.pricing-card:hover .card-icon { transform: scale(1.1); } /* Dodatkowy efekt ikony przy najechaniu */

.card-top h3 { font-size: 1.4rem; color: var(--color-accent-1); margin-bottom: 10px; font-weight: 700; }
.card-desc { font-size: 0.9rem; color: #64748b; line-height: 1.5; min-height: 45px; }
.card-pricing { text-align: center; margin: 20px 0 30px; padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.pricing-card.featured .card-pricing { border-color: rgba(255,255,255,0.1); }
.price { font-size: 2rem; font-weight: 800; color: var(--color-accent-1); font-family: var(--font-head); }
.price-meta { font-size: 0.8rem; color: #94a3b8; margin-top: 5px; }
.card-action { display: flex; justify-content: center; width: 100%; margin-bottom: 35px; }
.pricing-card .btn-prism { width: 100%; display: flex !important; justify-content: center !important; align-items: center !important; padding: 16px; }

.feature-list { list-style: none; padding: 0; font-size: 0.9rem; color: #475569; text-align: left; }
.feature-list li { margin-bottom: 12px; padding-left: 28px; position: relative; line-height: 1.5; }
.feature-list li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 4px; color: var(--color-accent-2); font-size: 0.9rem; }

/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .pricing-card.featured { transform: scale(1); margin: 0; animation: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}
@media (max-width: 700px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

/* ==========================================================================
   SEKCJA B2B (ZACHOWANA ORYGINALNA)
   ========================================================================== */
.b2b-section { padding-top: 80px; background: linear-gradient(to bottom, #fff 0%, #f1f5f9 100%); }
.b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.b2b-card { background: #fff; border-radius: 24px; padding: 50px 40px; box-shadow: 0 20px 50px rgba(15, 42, 74, 0.06); border: 1px solid rgba(15, 42, 74, 0.05); transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.b2b-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(15, 42, 74, 0.12); border-color: rgba(52, 99, 153, 0.15); }
.b2b-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--color-accent-1); transition: 0.4s; }
.b2b-card:nth-child(2)::before { background: var(--color-accent-2); }
.b2b-icon-wrapper { width: 70px; height: 70px; background: rgba(15, 42, 74, 0.04); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; font-size: 2rem; color: var(--color-accent-1); transition: 0.4s; }
.b2b-card:hover .b2b-icon-wrapper { background: var(--color-accent-1); color: #fff; }
.b2b-card h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--color-accent-1); }
.b2b-desc { font-size: 1.05rem; color: #475569; margin-bottom: 30px; line-height: 1.6; flex-grow: 1; }
.b2b-list { list-style: none; margin-bottom: 40px; padding: 0; }
.b2b-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; color: #334155; }
.b2b-list li i { color: var(--color-accent-2); margin-top: 4px; }
.b2b-action { margin-top: auto; text-align: center; }
@media (max-width: 992px) {
    .b2b-grid { grid-template-columns: 1fr; max-width: 600px; margin: 40px auto 0; }
}

/* ==========================================================================
   FAQ & CTA
   ========================================================================== */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid rgba(15, 42, 74, 0.08); border-radius: 10px; margin-bottom: 15px; }
.faq-item summary { padding: 20px; font-weight: 600; color: var(--color-accent-1); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-weight: 300; font-size: 1.5rem; }
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 0 20px 20px; color: #475569; line-height: 1.6; border-top: 1px solid #f1f5f9; margin-top: 10px; padding-top: 15px; }

.cta-brand { background: linear-gradient(135deg, #0f2a4a 0%, #081018 100%) !important; color: #ffffff !important; padding: 100px 20px; margin-top: 0; text-align: center; }
.cta-brand h2 { color: #ffffff !important; font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 25px; }
.cta-brand p { color: rgba(255, 255, 255, 0.9) !important; font-size: 1.1rem; line-height: 1.6; max-width: 600px; margin: 0 auto 45px auto; }
.cta-brand .btn-prism { background: #ffffff !important; color: #0f2a4a !important; border: none !important; font-weight: 700; padding: 16px 45px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s ease; }
.cta-brand .btn-prism:hover { transform: translateY(-3px); background: #f8faff !important; box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* --- NOWOŚĆ: BADGE OSZCZĘDNOŚCI --- */
.savings-badge {
    display: inline-block;
    background: #ecfdf5; /* Bardzo jasna mięta */
    color: #059669; /* Głęboka zieleń finansowa */
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-top: 10px;
    border: 1px solid #a7f3d0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Wersja dla karty wyróżnionej (Ciemne tło) */
.pricing-card.featured .savings-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #6ee7b7; /* Jasna mięta na ciemnym tle */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* NOWOŚĆ: MAŁY DRUK "względem pojedynczej sesji" */
.savings-context {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card.featured .savings-context {
    color: rgba(255, 255, 255, 0.6);
}

