/* --- BIZ PREMIUM V5.6 - FINAL POLISHED BUILD --- */

.biz-hero-premium {
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.15), transparent 70%);
}

.biz-hero-premium h1 { 
    font-size: 4.8rem; 
    font-weight: 800; 
    letter-spacing: -3px; 
    line-height: 1; 
}

/* --- POPRAWIONY OPIS (TEN NAPIS Z DOŁU) --- */
.biz-hero-premium p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 850px;         /* Ogranicza szerokość dla lepszego czytania */
    margin: 35px auto 50px;   /* Centruje blok i daje oddech góra/dół */
    opacity: 0.9;
    padding: 0 20px;          /* Zabezpieczenie dla mniejszych ekranów */
}

.badge-gold {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white; padding: 8px 24px; border-radius: 100px;
    font-size: 0.9rem; font-weight: 800; text-transform: uppercase;
}

/* COUNTDOWN */
.biz-countdown { display: flex; justify-content: center; gap: 30px; margin: 50px 0; }
.cd-item span { font-size: 3.5rem; font-weight: 800; color: var(--primary); }
.cd-item small { display: block; text-transform: uppercase; font-weight: 700; opacity: 0.6; font-size: 0.7rem; }
.cd-sep { font-size: 3rem; opacity: 0.3; }

/* PROBLEM & SOLUTION GRID */
.biz-split-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 100px;
}

/* Fix dla Dark Mode w karcie ostrzeżenia */
.biz-card-alert {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    padding: 60px 45px;
    border-radius: 45px;
}
.biz-card-alert i { font-size: 3rem; color: #dc2626; margin-bottom: 25px; }
.biz-card-alert h2 { font-size: 2.2rem; color: #991b1b; }
.biz-card-alert p { color: #b91c1c !important; max-width: 100% !important; margin: 15px 0 0 0 !important; }

body.dark-mode .biz-card-alert {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}
body.dark-mode .biz-card-alert h2, 
body.dark-mode .biz-card-alert p { color: #f87171 !important; }

.biz-card-solution {
    background: var(--primary); color: white; padding: 60px 45px; border-radius: 45px;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
}
.biz-card-solution i { font-size: 3rem; margin-bottom: 25px; }
.biz-card-solution h2 { font-size: 2.2rem; color: white; }
.biz-card-solution p { color: white; opacity: 0.9; max-width: 100% !important; margin: 15px 0 0 0 !important; }

/* PILLARS */
.biz-section-title { font-size: 2.8rem; font-weight: 800; text-align: center; margin-bottom: 60px; }
.biz-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 120px; }

.p-card {
    background: var(--bg-card); padding: 45px; border-radius: 40px;
    border: 1px solid var(--border); transition: 0.4s;
}
.p-card:hover { transform: translateY(-12px); border-color: var(--primary); box-shadow: var(--shadow-premium); }
.p-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.p-card h3 { font-size: 1.5rem; margin-bottom: 10px; }

/* ROADMAP */
.biz-roadmap-container { 
    background: var(--bg-card); padding: 80px; border-radius: 50px; 
    border: 1px solid var(--border); margin-bottom: 120px; 
}
.biz-roadmap-container h2 { text-align: center; margin-bottom: 60px; }
.biz-timeline { max-width: 800px; margin: 0 auto; border-left: 3px solid var(--border); padding-left: 50px; }
.t-item { margin-bottom: 50px; position: relative; }
.t-item::after {
    content: ''; position: absolute; left: -64px; top: 8px;
    width: 25px; height: 25px; border-radius: 50%; background: var(--border); border: 5px solid var(--bg-card);
}
.t-item.done::after { background: #10b981; box-shadow: 0 0 15px #10b981; }
.t-item.active::after { background: var(--primary); box-shadow: 0 0 15px var(--primary); }

/* WAITLIST BOX */
.biz-waitlist-card {
    background: var(--bg-card); border: 2px solid var(--primary); padding: 80px;
    border-radius: 50px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px;
    align-items: center; margin-bottom: 150px;
}

.waitlist-header h2 { font-size: 3rem; margin-bottom: 20px; }

.biz-form { display: flex; flex-direction: column; gap: 15px; }
.biz-form input { padding: 20px; border-radius: 15px; border: 1px solid var(--border); background: var(--bg-body); color: var(--text-main); font-size: 1rem; }
.biz-form button { background: var(--primary); color: white; border: none; padding: 20px; border-radius: 15px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.biz-form button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }

/* STOPKA FIX */
.footer-fixed-fix { margin-top: 100px; clear: both; }

/* MOBILE */
@media (max-width: 1000px) {
    .biz-hero-premium h1 { font-size: 2.8rem; }
    .biz-hero-premium p { font-size: 1.1rem; margin: 25px auto; }
    .biz-split-section, .biz-pillars-grid, .biz-waitlist-card { grid-template-columns: 1fr; }
    .biz-waitlist-card { padding: 40px; margin-bottom: 100px; }
    .biz-countdown { gap: 15px; }
    .cd-item span { font-size: 2.2rem; }
}