* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a1f2d, #123a52, #0f5c8a);
    overflow: hidden;
    position: relative;
}

/* Subtelna poświata */
body::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,200,255,0.15) 0%, transparent 70%);
    animation: glow 8s infinite ease-in-out;
}

@keyframes glow {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* WYCIĘTY MAN */
.man-hero-prev {
    position: absolute;
    bottom: 0;
    left: 5%;
    max-height: 85%;
    z-index: 0;
    opacity: 0.95;
    filter: drop-shadow(0 0 40px rgba(0,200,255,0.4));
}
.man-hero {
    position: absolute;
    bottom: 0;
    right: 5%;
    max-height: 85%;
    z-index: 0;
    opacity: 0.95;
    filter: drop-shadow(0 0 40px rgba(0,200,255,0.4));
}

/* Karta */
.card {
    position: relative;
    width: 480px;
    padding: 50px;
    border-radius: 22px;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,200,255,0.35);
    box-shadow: 0 0 60px rgba(0,200,255,0.25);
    color: #fff;
    z-index: 1;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px #00c8ff);
}

.company-name {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #00c8ff;
}

.subtitle {
    font-size: 14px;
	font-weight: bold;
    color: #cfd8dc;
    margin-top: 5px;
	word-spacing: 10px;
}

.section-title {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #00c8ff;
    border-bottom: 1px solid rgba(0,200,255,0.3);
    padding-bottom: 6px;
}

ul {
    margin-left: 18px;
}

ul li {
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
}

ul li:hover {
    color: #00c8ff;
    transform: translateX(5px);
}

.contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact strong {
    color: #00c8ff;
}

a.email-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted #00c8ff;
}

a.email-link:hover {
    color: #00c8ff;
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    opacity: 0.7;
}

@media(max-width: 900px){
    .man-hero {
        opacity: 0.3;
        right: -10%;
    }
}

@media(max-width: 600px){
    .card {
        width: 92%;
        padding: 30px;
    }
}