body { font-family: 'Inter', sans-serif; color: #2d3436; scroll-behavior: smooth; }
h1, h2, h3, .navbar-brand { font-weight: 800; letter-spacing: -0.02em; color: #0f172a; }

.navbar { padding: 1.5rem 0; background: white; }
.navbar-brand span { color: #0061ff; }

.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at 90% 10%, #f8faff 0%, #ffffff 100%);
}

.badge-new {
    background-color: #e0eaff;
    color: #0061ff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-card, .info-card {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: #0061ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cru-monitor { background-color: #f8fafc; border-radius: 24px; padding: 3rem; }
.cru-status-tag { font-size: 0.75rem; text-transform: uppercase; color: #16a34a; font-weight: 700; }

/* Sekcja Kontaktowa - poprawiona widoczność */
.contact-card {
    background: #0f172a;
    color: white;
    border-radius: 24px;
    padding: 4rem;
    border: none;
}

.form-control {
    background: rgba(255, 255, 255, 0.1) !important; /* Lekko jaśniejsze tło */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important; /* Wymuszenie białego koloru czcionki */
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
}

/* Kolor tekstu pomocniczego (placeholder) */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Styl pola po kliknięciu (focus) */
.form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #0061ff !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25 margin rgba(0, 97, 255, 0.25) !important;
    outline: none;
}

/* Naprawa czarnego tekstu w niektórych przeglądarkach */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px #1e293b inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.btn-primary { background: #0061ff; border: none; padding: 0.8rem 2rem; border-radius: 10px; font-weight: 600; }
footer { padding: 4rem 0; border-top: 1px solid #eee; color: #64748b; }
