/* ============================================
   Rekrutacja Pewny Lokal - Mobile-First
   Breakpoints: 576px, 768px, 992px, 1200px
   ============================================ */

:root {
  --primary: #1586cc;
  --primary-50: #e8f4fc;
  --primary-100: #c5e4f7;
  --primary-200: #9fd2f1;
  --primary-800: #084263;
  --primary-dark: var(--primary-800);
  --accent: #c51076;
  --text: #1a1a1a;
  --text-muted: #5c5c5e;
  --bg: #fafafa;
  --bg-section: #f7f7f7;
  --white: #fff;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  --shadow: 0 0 4.5rem 2rem rgb(21 20 50 / 6%);
  --touch-min: 44px;
  --font-heading: "Biryani", sans-serif;
  --font-body: "Lato", sans-serif;
  --fs-xs: clamp(0.75rem, 2vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 2.2vw, 0.875rem);
  --fs-base: clamp(0.9375rem, 2.5vw, 1rem);
  --fs-lg: clamp(1rem, 2.8vw, 1.125rem);
  --fs-xl: clamp(1.125rem, 3vw, 1.25rem);
  --fs-2xl: clamp(1.25rem, 3.5vw, 1.5rem);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-base: 200ms ease;
}
@media (prefers-reduced-motion: reduce) { :root { --transition-base: 0ms; } }

/* ---- Base (mobile) ---- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background-color: var(--bg);
  font-family: var(--font-body);
  font-weight: 300;
  padding-bottom: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}

.pros-icon {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.cont_serv_tech .pros-icon {
  height: 90px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

p, a, li {
  font-family: var(--font-body);
  font-weight: 300;
}

p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

a {
  color: var(--primary);
}

a.white,
a.white:hover {
  color: var(--white);
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.skip-to-content {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 10001;
  padding: var(--space-2) var(--space-4);
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: top var(--transition-base);
}
.skip-to-content:focus { top: var(--space-4); outline: 2px solid var(--white); outline-offset: 2px; }

/* ---- Hero / App sections ---- */
.bg-new {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 1.25rem 0;
}

@media (min-width: 768px) {
  .bg-new {
    padding: 1.5rem 0;
  }
}

@media (min-width: 992px) {
  .bg-new {
    padding: 2rem 0;
  }
}

.hero-landing { position: relative; min-height: auto; }
@media (min-width: 992px) { .hero-landing { min-height: 50vh; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero-badge {
  display: inline-block;
  padding: 0.25rem var(--space-3);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-salary { font-size: var(--fs-lg) !important; font-weight: 700 !important; color: var(--white) !important; margin-bottom: var(--space-2); display: flex; align-items: center; }
.hero-salary .material-icons-outlined { font-size: 1.25rem; opacity: 0.9; }
.hero-cta { min-height: var(--touch-min); padding: var(--space-3) var(--space-6); font-weight: 700; border-radius: var(--radius-md); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.hero-stats__item { text-align: center; padding: var(--space-4); background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.15); }
.hero-stats__value { display: block; font-family: var(--font-heading); font-size: var(--fs-2xl); font-weight: 700; color: var(--white); line-height: 1.2; }
.hero-stats__suffix { font-size: var(--fs-xl); color: rgba(255, 255, 255, 0.9); }
.hero-stats__label { display: block; font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.85); margin-top: var(--space-2); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; line-height: 0; overflow: hidden; }
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* ---- Positions list hero ---- */
.positions-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .positions-hero { padding: 3.5rem 0 4.5rem; }
}
@media (min-width: 992px) {
  .positions-hero { padding: 4rem 0 5rem; }
}
.positions-hero__inner {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}
.positions-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white) !important;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}
.positions-hero__lead {
  color: var(--white) !important;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fs-base);
  line-height: 1.5;
}
.positions-hero__count {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white) !important;
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.positions-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  line-height: 0;
  overflow: hidden;
}
.positions-hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.app {
  max-width: 100%;
}

.app-section1 .h1,
.app-section1 span.h1 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.app-section1 hr {
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  margin: 0.75rem 0;
  width: 60px;
}

.app-section1 h1,
.app-section1 h2,
.app-section1-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.app-section1 .btn {
  min-height: var(--touch-min);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-radius: 8px;
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .app-section1 .h1,
  .app-section1 span.h1 {
    font-size: 1.6rem;
  }
  .app-section1 h1,
  .app-section1 h2 {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .app-section1 .h1,
  .app-section1 span.h1 {
    font-size: 1.85rem;
  }
  .app-section1 h1,
  .app-section1 h2 {
    font-size: 1.2rem;
  }
}

/* Mobile repeat CTA block (app-mob) */
.app-mob {
  max-width: 100%;
}

.app-mob-section1 .h1,
.app-mob-section1 span.h1 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
}

.app-mob-section1 hr {
  border-top: 2px solid var(--primary);
  margin: 0.5rem 0;
  width: 50px;
}

.app-mob-section1 .btn {
  min-height: var(--touch-min);
  margin-top: 0.75rem;
}

/* Sticky mobile CTA bar */
.rek-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rek-sticky-cta .btn {
  min-height: var(--touch-min);
  width: 100%;
  max-width: 320px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-radius: 8px;
}

body.has-sticky-cta {
  padding-bottom: 72px;
}

@media (min-width: 992px) {
  .rek-sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
  .app-btn {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
  }
  .app-btn a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: var(--touch-min);
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--white) !important;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .app-btn a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(197, 16, 118, 0.35); color: var(--white) !important; }
}

.app-btn { display: none; }

@media (min-width: 992px) {
  .app-btn {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
  }
  
  .ope000 {
    background: url("https://static.pewnylokal.pl/rekrutacja_background.webp") center/cover;
    min-height: 85vh;
    z-index: 10;
  }
  @media (min-width: 1280px) {
    .ope000 {
      background-image: url("https://static.pewnylokal.pl/lp_rekrutacja_bg_ppl.webp");
      min-height: 95vh;
    }
  }
  .rek011 {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: var(--touch-min);
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--white) !important;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .app-btn a:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 16, 118, 0.4);
  }
}

/* Navbar phone button */
.btn-tel {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.5rem 0.75rem;
  color: var(--primary) !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.btn-tel img {
  flex-shrink: 0;
}

.bg-img {
  display: none;
}

.bg-img img {
  width: 100%;
  height: auto;
}

/* ---- Audytorzy page ---- */
#root .logo {
  display: block;
  margin: 1.5rem auto 1rem;
}

.form-container {
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .form-container {
    max-width: 540px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
}

.tito-header h1 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .tito-header h1 {
    font-size: 1.5rem;
  }
}

.tito-container {
  margin-bottom: 1rem;
}

.tito-container label {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}

.btn-main {
  display: inline-block;
  min-height: var(--touch-min);
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-main:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 16, 118, 0.4);
}

/* ---- Positions list cards (hover) ---- */
.rek-card-job {
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (hover: hover) {
  .rek-card-job:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
  }
}

.rek-card-job .btn {
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Sidebar card (landing) ---- */
.rek-sidebar-card {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rek-sidebar-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.rek-sidebar-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.rek-sidebar-card .material-icons-outlined {
  vertical-align: middle;
  margin-right: 0.35rem;
}

@media (min-width: 1200px) {
  .rek-sidebar-card {
    position: sticky;
    top: 5rem;
    padding: 1.5rem;
  }
  .rek-sidebar-card h2 {
    font-size: 1.25rem;
  }
}

/* ---- Buttons (ope007 = CTA) ---- */
.ope007 {
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  padding: 0.6rem 1.25rem;
  width: 100%;
  max-width: 225px;
  border-radius: 10px;
  color: var(--white) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ope007:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 16, 118, 0.35);
}

@media (min-width: 576px) {
  .ope007 {
    width: 225px;
  }
}

/* ---- Typography (keep legacy names for compatibility) ---- */
.ope010,
.rek020 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .ope010,
  .rek020 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1200px) {
  .ope010,
  .rek020 {
    font-size: 1.75rem;
  }
}

.ope013 {
  color: var(--text) !important;
  letter-spacing: 0;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 300;
}

@media (min-width: 992px) {
  .ope013 {
    font-size: 1rem;
  }
}

.rek005 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--text) !important;
  font-weight: 700 !important;
}

@media (min-width: 992px) {
  .rek005 {
    font-size: 1.5rem;
  }
}

.rek006 {
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text) !important;
  font-weight: 300 !important;
}

@media (min-width: 992px) {
  .rek006 {
    font-size: 1.05rem;
  }
}

.rek009 {
  color: var(--primary);
}

.icon-sm {
  font-size: 1rem;
  vertical-align: middle;
}

.rek010 {
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--white);
  margin: 1.5rem 0;
  max-width: 26rem;
}
.rek-card-job.rek010 { max-width: none; }

.social-proof-bar { background: var(--bg-section); padding: var(--space-4) 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.social-proof-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-2); font-size: var(--fs-sm); color: var(--text-muted); }
.social-proof-bar__item strong { color: var(--primary); font-family: var(--font-heading); }
.social-proof-bar__sep { width: 1px; height: 1em; background: var(--text-muted); opacity: 0.4; }
@media (max-width: 575px) { .social-proof-bar__sep { display: none; } }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 576px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefits-grid__item { display: flex; align-items: flex-start; gap: var(--space-3); padding: var(--space-4); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: box-shadow var(--transition-base), transform var(--transition-base); }
.benefits-grid__item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.benefits-grid__icon { font-size: 1.5rem; flex-shrink: 0; }
.benefits-grid__label { font-size: var(--fs-base); margin-bottom: 0; line-height: 1.5; }

.process-timeline { margin: 2rem 0; }
.process-timeline__track { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
@media (min-width: 576px) { .process-timeline__track { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.process-timeline__step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--space-4); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 2px 8px rgba(0,0,0,0.08); flex: 1; min-width: 0; position: relative; z-index: 1; }
@media (min-width: 576px) { .process-timeline__step { max-width: 200px; flex: 0 1 200px; } }
.process-timeline__icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-2); }
.process-timeline__icon .material-icons-outlined { font-size: 1.5rem; }
.process-timeline__content strong { display: block; font-size: var(--fs-base); margin-bottom: var(--space-2); color: var(--text); }
.process-timeline__content span { font-size: var(--fs-xs); color: var(--text-muted); display: block; }
.process-timeline__connector { display: none; }
@media (min-width: 576px) { .process-timeline__connector { display: block; flex: 1; min-width: 24px; max-width: 80px; height: 2px; align-self: center; background: linear-gradient(to right, var(--primary-200), var(--primary)); border-radius: 1px; } }

.rek-sidebar-card { border: 2px solid var(--primary); border-radius: var(--radius-md); padding: var(--space-5); background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.1); border-left: 4px solid var(--accent); }
.sidebar-job__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-3); }
.sidebar-chip { display: inline-flex; align-items: center; padding: 0.25rem var(--space-2); background: var(--primary-50); color: var(--primary-800); font-size: var(--fs-xs); border-radius: 9999px; font-weight: 500; }
.sidebar-job__details { margin-bottom: var(--space-3); }
.sidebar-job__micro { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--space-2); }
@media (min-width: 992px) { .rek-sidebar-card { position: sticky; top: 5rem; } }

.positions-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.positions-filter-btn { padding: var(--space-2) var(--space-4); font-size: var(--fs-sm); font-weight: 600; color: var(--primary); background: var(--white); border: 2px solid var(--primary-200); border-radius: 9999px; cursor: pointer; transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base); }
.positions-filter-btn:hover, .positions-filter-btn.is-active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.positions-list__item.is-hidden { display: none !important; }
.position-card__badge { margin-bottom: var(--space-2); }
.position-card__title { font-size: var(--fs-lg); }
.position-card__salary strong { color: var(--accent); font-weight: 700; }
.position-card__benefits { display: flex; gap: var(--space-2); margin-top: var(--space-2); }
.position-card__benefit-icon { font-size: 1.25rem; opacity: 0.9; }
.position-card__cta { display: inline-flex; align-items: center; justify-content: center; }
.rek-card-job { transition: transform var(--transition-base), box-shadow var(--transition-base); border-radius: var(--radius-md); }
.rek-card-job:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important; }
.rek-card-job .btn { min-height: var(--touch-min); display: flex; align-items: center; justify-content: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal--visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal--visible { opacity: 1; transform: none; } }

.pl-2 { padding-left: var(--space-2); } .pl-3 { padding-left: var(--space-3); } .pr-1 { padding-right: 0.25rem; } .mr-1 { margin-right: 0.25rem; } .mr-2 { margin-right: var(--space-2); } .ml-1 { margin-left: 0.25rem; }

@media (min-width: 1200px) {
  .rek010 {
    padding: 1.5rem;
    margin: 2rem 0;
  }
}

.rek014 {
  box-shadow: var(--shadow);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  margin: 1.5rem auto;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 576px) {
  .rek014 {
    max-width: 90%;
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .rek014 {
    max-width: 500px;
    padding: 2.5rem;
  }
}

/* Lists */
.rek016 {
  list-style: none;
  padding-left: 0;
}

.rek016 li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.5rem;
}

.rek016 li::before {
  content: "\2022";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.rek017 {
  list-style: none;
}

.rek017 li::before {
  content: "\2022";
  color: var(--primary);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

ol {
  counter-reset: item;
}

ol li {
  display: block;
}

ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  color: var(--primary);
  font-weight: 700;
}

/* ---- Footer (single definition) ---- */
footer {
  padding-top: 2rem;
  background: var(--primary);
  color: var(--white);
  min-height: 280px;
  margin-top: 0;
}

footer .container {
  position: relative;
}

footer p {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.foo5 {
  margin-top: -0.5rem;
  font-weight: 300;
}

.footer-logo {
  margin-bottom: 1.5rem;
  width: 130px;
}

@media (min-width: 576px) {
  .footer-logo {
    width: 146px;
  }
}

.footer-menu {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.footer-menu li {
  display: block;
  margin: 0.4rem 0;
}

.footer-menu li a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.875rem;
}

footer h4 {
  text-transform: uppercase;
  font-size: 0.9375rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.address {
  padding-left: 2rem;
  background: url(https://static.pewnylokal.pl/locationiconpng.png) no-repeat 0 0.2em;
  background-size: 18px;
}

.phone {
  padding-left: 2rem;
  background: url(https://static.pewnylokal.pl/phonecontactcionpng.png) no-repeat 0 0.2em;
  background-size: 18px;
}

.facebook-foo {
  margin-top: 1.5rem;
  padding-left: 2rem;
  background: url(https://static.pewnylokal.pl/facebooksvg.svg) no-repeat 0 0.2em;
  background-size: 18px;
}

.copyright {
  font-size: 0.8125rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 992px) {
  footer .row {
    margin-bottom: 1rem;
  }
  p.copyright {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991px) {
  footer {
    min-height: auto;
    padding-bottom: 1.5rem;
  }
}

/* ---- Form group (single definition for recruitment forms) ---- */
.form-group {
  margin: 0.5rem 0;
  position: relative;
}

.form-group button[type="submit"] {
  min-height: var(--touch-min);
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: 8px;
}

footer .form-control,
footer input,
footer textarea {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

footer input.form-control {
  height: 44px;
}

footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Profile page ---- */
.profile-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.profile-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.profile-card-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
}

/* ---- Utility / legacy (minimal set used by templates) ---- */
.ope009 {
  background: var(--bg-section);
}

.rek015 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rek018 {
  border-radius: 6px;
  background: var(--white);
  width: 100%;
  font-weight: 300;
  font-size: 0.9375rem;
  min-height: var(--touch-min);
  padding: 0.6rem 1rem;
}

@media (min-width: 576px) {
  .rek018 {
    width: 100%;
    max-width: 280px;
  }
}

.rek019 {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--text) !important;
  font-weight: 700 !important;
}

@media (min-width: 992px) {
  .rek019 {
    font-size: 1.1rem;
  }
}

.rek022 {
  background: var(--white);
  z-index: 1000;
}

@media (min-width: 992px) {
  .rek022 {
    background: rgba(255, 255, 255, 0.95);
  }
}
.navbar--scrolled { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }

.error {
  color: var(--white);
}

.partnerForm .error {
  color: var(--primary);
}

.btn-default,
.mainTab .tab-content .form-group button[type="submit"] {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  min-height: var(--touch-min);
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Swiper pagination (landing pros) */
.cont_serv_tech .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.breadcrumbs a {
  color: var(--primary);
}

.breadcrumbs span {
  margin: 0 0.35rem;
}

/* Process steps (rekrutacja) */
.rek-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 576px) {
  .rek-process {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rek-process-step {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.rek-process-step-num {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 0 auto 0.5rem;
}

.rek-process-step strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.rek-process-step span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Empty state */
.rek-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

.rek-empty-state .material-icons-outlined {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* Badge on cards */
.rek-badge {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(21, 134, 204, 0.12);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Legacy ope/rek classes still referenced in landing */
.ope001 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--white); margin-top: 0.25rem; }
.ope002 { font-size: 0.9375rem; font-family: var(--font-body); font-weight: 300; padding: 0.5rem; }
.ope003 { background: var(--primary-dark); border-radius: 12px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.ope006 { min-height: var(--touch-min); background: var(--primary); border: 1px solid var(--primary); font-weight: 700; font-family: var(--font-heading); font-size: 0.8125rem; padding: 0.6rem 1rem; }
.ope011 { padding: 0.5rem; }
.ope012 { font-size: 1rem; font-family: var(--font-heading); }
.ope016 { background: var(--accent); border: 1px solid var(--accent); font-weight: 700; font-family: var(--font-heading); font-size: 0.9375rem; padding: 0.75rem 1rem; }
.ope020 { font-size: 1.25rem; font-family: var(--font-heading); color: var(--primary-dark); margin-top: 1rem; margin-bottom: 0.5rem; font-weight: 600; }
.ope021 { color: var(--accent); }
.ope023 { cursor: pointer; }
.rek001 { border-top-left-radius: 2rem; border-top-right-radius: 2rem; background: var(--primary); padding: 1.25rem; }
@media (min-width: 576px) { .rek001 { border-top-left-radius: 4rem; border-top-right-radius: 4rem; padding: 1.5rem; } }
.rek002 { border-top: 1px solid var(--white); width: 80%; }
.rek003 { font-weight: 300; font-size: 0.9375rem; min-height: var(--touch-min); }
.rek007 { font-family: var(--font-body); color: #4d4c4d !important; font-weight: 300 !important; }
.rek008 { font-family: var(--font-body); color: var(--text) !important; font-weight: 300 !important; display: flex; align-items: center; justify-content: center; font-size: 0.9375rem; }
.rek012 { display: contents; }
@media (min-width: 576px) { .rek012 { display: block; } }
.rek013 { border-radius: 6px; background: var(--white); margin: 1rem 0; width: 100%; font-weight: 300; font-size: 0.9375rem; }
@media (min-width: 576px) { .rek013 { max-width: 303px; } }
.rek026 { font-family: var(--font-body); color: var(--white); font-size: 0.7rem; }
@media (min-width: 768px) { .rek026 { font-size: 0.9rem; } }
.rek030 { position: sticky; bottom: 0; z-index: 2; text-align: center; text-transform: uppercase; font-weight: 600; }
.rek031 { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12); }
.new055 { font-size: 0.9375rem; padding: 0.4rem 0.75rem; font-weight: 700; background: var(--accent); color: var(--white); border: 1px solid var(--accent); border-radius: 8px; text-align: center; }
.dropzone { display: flex; align-items: center; justify-content: center; min-height: 150px !important; border: 2px solid rgba(0,0,0,0.2) !important; background: var(--white); padding: 1.25rem !important; border-radius: 10px; font-family: var(--font-body); font-weight: 300; width: 100%; max-width: 300px; }
.dropzone .dz-message { text-align: center; margin: 0 !important; }
.post-btn { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; padding: 0.5rem 0.75rem; background: #707070; color: var(--white); margin-top: 0.5rem; display: inline-block; border-radius: 6px; }
.rek023 { display: block; margin: 0.75rem auto; width: 50px; height: 4px; background: #ccc; border-radius: 2px; }
