*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #00183f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.site {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.btns {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pri {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-br {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-br:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.window.widoczne {
    display: flex;
}

.contactwin {
    background: #232323;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.zamknij {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.zamknij:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.win-title {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
}

.contact-ico {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    color: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-tag {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-val {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.contant-link {
    color: #046bd8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contant-link:hover {
    color: #00ddff;
}

