*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Arial,Helvetica,sans-serif;background:#292929;color:#fff}
.topbar{min-height:96px;background:#1f1f1f;border-bottom:1px solid #3a3a3a;display:flex;align-items:center;padding:14px 28px;gap:30px}
.brand img{width:210px;height:auto;display:block}
.main-menu{display:flex;align-items:center;justify-content:center;gap:40px;flex:1}
.menu-item{display:flex;align-items:center;gap:10px;color:#fff;text-decoration:none;font-size:15px;line-height:1.15;opacity:.92;min-width:150px}
.menu-item img{width:34px;height:34px;display:block}
.menu-item:hover,.menu-item.active{opacity:1}
.language-switcher{display:grid;grid-template-columns:repeat(4,auto);gap:7px;align-items:center;justify-content:end}
.language-switcher a{display:inline-flex;align-items:center;justify-content:center;min-width:30px;height:22px;padding:0 8px;border:1px solid #666;border-radius:12px;color:#fff;text-decoration:none;font-size:12px;background:#2c2c2c}
.language-switcher a.active{background:#fff;color:#222;border-color:#fff}
.home-hero{min-height:calc(100vh - 96px);display:flex;align-items:center;justify-content:center;text-align:center;padding:40px 20px}
.home-logo{width:min(560px,80vw);height:auto;display:block;margin:0 auto 24px}
.tagline{font-size:17px;letter-spacing:1.5px}
.page{max-width:920px;margin:54px auto;padding:42px;background:#343434;border:1px solid #555;border-radius:18px;box-shadow:0 20px 50px rgba(0,0,0,.2)}
.page h1{font-size:38px;line-height:1.15;margin:0 0 26px}
.page h2{font-size:26px;margin:34px 0 12px}
.page p{font-size:18px;line-height:1.65;margin:0 0 18px}
.survey-page{text-align:center;background:transparent;border:none;box-shadow:none}
.survey-page .home-logo{margin-top:80px}
.contact-lines{font-size:18px;line-height:1.7}
@media (max-width:900px){.topbar{height:auto;align-items:flex-start;flex-wrap:wrap;padding:14px 16px}.brand img{width:180px}.main-menu{order:3;width:100%;gap:16px;justify-content:space-between}.menu-item{min-width:auto;font-size:13px}.language-switcher{margin-left:auto}.page{margin:28px 16px;padding:26px}.page h1{font-size:30px}}
.survey-form-page{max-width:1100px;text-align:left}.survey-logo{width:min(360px,70vw);display:block;margin:0 auto 18px}.survey-tabs{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin:20px 0 30px}.survey-tabs a{background:#222;border:1px solid #666;color:#fff;text-decoration:none;border-radius:999px;padding:12px 18px}.survey-tabs a.active{background:#fff;color:#222}.kay-survey section{background:#2d2d2d;border:1px solid #555;border-radius:16px;padding:22px;margin:18px 0}.qhead{display:flex;align-items:flex-start;gap:14px;margin-bottom:14px}.qhead img{width:34px;height:34px;flex:0 0 auto}.qhead h3{margin:3px 0 0;font-size:21px;line-height:1.35}.checks{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:9px 16px}.checks label,.consents label,.contact-data label,.kay-survey section>label{display:block;margin:8px 0;line-height:1.45}.kay-survey input[type=text],.kay-survey input[type=email],.kay-survey input:not([type]),.kay-survey textarea,.kay-survey select{width:100%;padding:11px 12px;border-radius:10px;border:1px solid #777;background:#222;color:#fff;margin:8px 0 14px}.kay-survey select[multiple]{min-height:170px}.comment-label{margin-top:14px}.other-input{max-width:520px}.range-wrap{display:flex;gap:12px;align-items:center;margin:10px 0 14px}.range-wrap input[type=range]{flex:1}.range-output{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:34px;border-radius:999px;background:#1f1f1f;border:1px solid #666}.range-wrap.inactive{opacity:.75}.activate{font-weight:700}.hidden{display:none!important}.notice{padding:18px;border-radius:14px;background:#1f1f1f;border:1px solid #777;margin:20px 0}.submit-btn{display:block;width:100%;padding:16px 20px;border:0;border-radius:14px;background:#fff;color:#222;font-size:18px;font-weight:700;cursor:pointer}.profession-times{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:12px;margin-top:18px}.prof-time{background:#242424;border:1px solid #555;border-radius:12px;padding:12px}@media(max-width:720px){.checks{grid-template-columns:1fr}.range-wrap{align-items:flex-start;flex-direction:column}.qhead h3{font-size:18px}}
.panel-link{
    position:fixed;
    left:15px;
    bottom:15px;
    font-size:12px;
    color:#777;
    text-decoration:none;
    z-index:9999;
}

.panel-link:hover{
    color:#fff;
}
.language-switcher {
    position: relative;
    margin-left: auto;
    display: block;
    z-index: 99999;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #666;
    border-radius: 12px;
    background: #2c2c2c;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.language-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    width: 150px;
    padding: 8px;
    background: #1f1f1f;
    border: 1px solid #666;
    border-radius: 12px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    z-index: 99999;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
    display: grid;
}

.language-menu a {
    min-width: 0;
    height: 26px;
    font-size: 12px;
}
/* ==========================================================
   KAYROMA INDEX3 STYLE OVERRIDE
   ========================================================== */

html,
body{
    background:#f3eee5 !important;
    color:#201d19 !important;
    font-family:Georgia,'Times New Roman',serif !important;
}

/* główna karta strony */

.page{
    background:#fbf7ef !important;
    color:#201d19 !important;
    border:1px solid #ddd2c1 !important;
    box-shadow:0 28px 70px rgba(32,29,25,.13) !important;
}

/* nagłówki */

.page h1,
.page h2,
.page h3,
.kay-survey h1,
.kay-survey h2,
.kay-survey h3,
.qhead h3{
    color:#201d19 !important;
}

/* zwykłe teksty */

.page p,
.kay-survey,
.kay-survey label,
.contact-lines,
.notice{
    color:#4f463d !important;
}

/* zakładki Firma / Pracownik */

.survey-tabs a{
    background:#fffaf2 !important;
    color:#201d19 !important;
    border:1px solid #ddd2c1 !important;
}

.survey-tabs a.active{
    background:#1d1b18 !important;
    color:#fffaf2 !important;
    border-color:#1d1b18 !important;
}

/* sekcje pytań */

.kay-survey section{
    background:#fffaf2 !important;
    border:1px solid #ddd2c1 !important;
    color:#201d19 !important;
}

/* pola formularza */

.kay-survey input[type=text],
.kay-survey input[type=email],
.kay-survey input:not([type]),
.kay-survey textarea,
.kay-survey select{
    background:#ffffff !important;
    color:#201d19 !important;
    border:1px solid #ddd2c1 !important;
}

/* wielokrotny wybór */

.kay-survey select[multiple]{
    background:#ffffff !important;
}

/* slider */

.range-output{
    background:#fffaf2 !important;
    color:#201d19 !important;
    border:1px solid #ddd2c1 !important;
}

/* komunikaty */

.notice{
    background:#fffaf2 !important;
    border:1px solid #ddd2c1 !important;
}

/* pola zawodów */

.prof-time{
    background:#fffaf2 !important;
    border:1px solid #ddd2c1 !important;
    color:#201d19 !important;
}

/* przycisk wyślij */

.submit-btn{
    background:#1d1b18 !important;
    color:#fffaf2 !important;
    box-shadow:0 7px 0 #b47a22 !important;
}

.submit-btn:hover{
    opacity:.95;
}

/* checkboxy i radio */

input[type=checkbox],
input[type=radio]{
    accent-color:#b47a22;
}

/* sekcje zgód */

.consents label,
.contact-data label,
.checks label{
    color:#201d19 !important;
}

/* wyróżnienia */

.activate{
    color:#b47a22 !important;
}

/* placeholdery */

::placeholder{
    color:#70695f !important;
    opacity:1;
}
/* footer w stylu index3.php */

.footer{
    width:min(100% - 34px,1160px);
    margin:0 auto;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    padding:0 25px 19px;
    font-size:13px;
    text-transform:uppercase;
    color:#201d19;
}

.footer a{
    color:#201d19;
    text-decoration:none;
}

.footer a:hover{
    text-decoration:underline;
}

@media(max-width:650px){
    .footer{
        width:min(100% - 24px,1160px);
        justify-content:center;
        padding-right:0;
        padding-left:0;
        flex-wrap:wrap;
    }
}
.impressum-login{
    margin-top:44px;
    text-align:left;
}

.impressum-login a{
    font:12px Arial,sans-serif;
    color:#70695f;
    text-decoration:none;
    opacity:.45;
}

.impressum-login a:hover{
    opacity:.85;
    text-decoration:underline;
}.range-container {
    flex: 1;
    width: 100%;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 12px;
    color: #70695f;
}

.range-container input[type="range"] {
    width: 100%;
}
.range-wrap {
    width: 100%;
}

.range-container {
    flex: 1 !important;
    width: 100% !important;
}

.range-container input[type="range"] {
    display: block;
    width: 100% !important;
}