/* ===================================================
   BAZELA – Global Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --bg: #F4F2EC;
  --black: #212122;
  --gray-dark: #48545D;
  --gray-mid: #57636B;
  --gray-light: #A7B2BA;
  --cream: #FFFEE7;
  --yellow: #FFF0AD;
  --yellow-dark: #FFE87A;
  --navy: #445165;
}

/* ── Reset / Base (Tailwind-preflight inspired) ── */
*, *::before, *::after { box-sizing: border-box; border: 0 solid; }
html { scroll-behavior: smooth; line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; }
body {
  margin: 0;
  background-color: var(--bg);
  font-family: 'Epilogue', sans-serif;
  color: var(--black);
  overflow-x: hidden;
  line-height: inherit;
}

/* Headings, paragraphs, blocks – reset default margins */
h1, h2, h3, h4, h5, h6,
p, blockquote, dl, dd, figure, hr, pre {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
ul, ol, menu { list-style: none; margin: 0; padding: 0; }
fieldset, legend { margin: 0; padding: 0; }

/* Media defaults */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block; vertical-align: middle;
}
img, video { max-width: 100%; height: auto; }

/* Inline form elements inherit font */
input, button, textarea, select { font: inherit; color: inherit; margin: 0; }
button, [role="button"] { cursor: pointer; }
button, input, optgroup, select, textarea { background: transparent; padding: 0; }

a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-fade  { transform: none; }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: translateX(0); }
.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }
.reveal-delay-400 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ── Lightbox animation ── */
@keyframes lightboxFade {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-fade { animation: lightboxFade 0.25s ease-out both; }

/* ── Shared helpers ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
}
@media (min-width: 1024px) { .nav { height: 128px; } }

.nav-logo {
  position: absolute;
  left: 20px; top: 16px;
  display: flex; flex-direction: column; gap: 4px;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.9; }
@media (min-width: 1024px) { .nav-logo { left: 40px; top: 40px; gap: 6px; } }

.nav-logo-sub {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.05;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
@media (min-width: 1024px) { .nav-logo-sub { font-size: 14px; letter-spacing: 1.4px; } }

.nav-logo-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.19;
  letter-spacing: 0.6px;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 1024px) { .nav-logo-name { font-size: 29px; letter-spacing: 0.87px; } }

/* Desktop sub-site toggles */
.nav-subsite {
  display: none;
}
@media (min-width: 1280px) {
  .nav-subsite {
    display: flex;
    position: absolute;
    left: 295px; top: 36px;
    align-items: center;
    gap: 28px;
  }
}

.nav-subsite-link {
  height: 56px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 10px;
  font-weight: 500; font-size: 16px;
  color: var(--cream);
  white-space: nowrap;
  width: 167px;
  transition: background-color 0.2s, opacity 0.2s;
  border-bottom: 1px solid var(--cream);
}
.nav-subsite-link:hover { background-color: rgba(255,255,255,0.1); opacity: 0.8; }
.nav-subsite-link.active { border: 1px solid var(--cream); }

/* Desktop main menu */
.nav-menu {
  display: none;
}
@media (min-width: 1280px) {
  .nav-menu {
    display: flex;
    position: absolute;
    right: 250px; top: 56px;
    align-items: center;
    gap: 37px;
  }
}

.nav-menu-link {
  display: flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 16px; line-height: 1.05;
  color: #fff;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-menu-link:hover { color: var(--yellow); }
.nav-menu-link svg { transition: transform 0.3s; }
.nav-menu-link:hover svg { transform: translateX(2px); }

/* Desktop CTA */
.nav-cta {
  display: none;
}
@media (min-width: 1280px) {
  .nav-cta {
    display: flex;
    position: absolute;
    right: 40px; top: 36px;
    align-items: center; justify-content: center;
    gap: 6px;
    height: 56px;
    padding: 0 10px;
    width: 190px;
    background: var(--yellow);
    font-weight: 500; font-size: 16px;
    color: var(--gray-mid);
    white-space: nowrap;
    transition: background 0.3s, box-shadow 0.3s;
  }
  .nav-cta:hover { background: var(--yellow-dark); box-shadow: 0 10px 24px -12px rgba(87,99,107,0.45); }
  .nav-cta:active { transform: translateY(1px); }
  .nav-cta svg { transition: transform 0.3s; }
  .nav-cta:hover svg { transform: translateX(4px); }
}

/* Hamburger */
.nav-hamburger {
  position: absolute;
  right: 16px; top: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,254,231,0.5);
  border-radius: 50%;
  color: var(--cream);
  transition: background-color 0.2s;
  z-index: 60;
}
.nav-hamburger:hover { background-color: rgba(255,255,255,0.1); }
@media (min-width: 1024px) { .nav-hamburger { right: 32px; top: 32px; } }
@media (min-width: 1280px) { .nav-hamburger { display: none; } }

.hamburger-line {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.2s;
}
.hamburger-line.line-1-open { transform: translateY(7px) rotate(45deg); }
.hamburger-line.line-2-open { opacity: 0; }
.hamburger-line.line-3-open { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: var(--navy);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 1280px) { .nav-drawer { display: none; } }

.nav-drawer-inner {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  width: 100%; height: 100%;
  padding: 96px 32px 32px;
  gap: 32px;
}

.nav-drawer-subsites {
  display: flex; gap: 12px;
  margin-bottom: 8px;
}

.nav-drawer-subsite {
  height: 44px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
  font-weight: 500; font-size: 15px;
  color: var(--cream);
  white-space: nowrap;
  border-bottom: 1px solid var(--cream);
  transition: background-color 0.2s;
}
.nav-drawer-subsite.active { border: 1px solid var(--cream); }
.nav-drawer-subsite:hover { background-color: rgba(255,255,255,0.1); }

.nav-drawer-link {
  font-weight: 600; font-size: 32px; line-height: 1.1;
  color: #fff;
}

.nav-drawer-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px;
  padding: 0 20px;
  gap: 8px;
  margin-top: 16px;
  background: var(--yellow);
  font-weight: 500; font-size: 16px;
  color: var(--gray-mid);
  transition: background 0.3s;
}
.nav-drawer-cta:hover { background: var(--yellow-dark); }
.nav-drawer-cta:active { transform: translateY(1px); }
.nav-drawer-cta svg { transition: transform 0.3s; }
.nav-drawer-cta:hover svg { transform: translateX(4px); }

/* ===================================================
   HERO – OPINIE MEDYCZNE
   =================================================== */
.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background-color: var(--navy);
}
@media (min-width: 1024px) { .hero { height: 900px; } }

.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  position: absolute; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(102,102,102,0) 68.333%, rgba(0,0,0,0.2) 100%),
    linear-gradient(105.8deg, rgb(68,81,101) 7.5%, rgba(68,81,101,0) 56.2%),
    linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
}

/* Desktop hero */
.hero-desktop { display: none; }
@media (min-width: 1024px) { .hero-desktop { display: block; } }

.hero-title-wrap {
  position: absolute;
  left: 40px; top: 205px;
}
.hero-title-line1,
.hero-title-line3 {
  font-weight: 500; font-size: 70px; line-height: 1.2;
  color: #fff;
  width: 630px;
}
.hero-title-line2 {
  font-weight: 700; font-size: 120px; line-height: 1.2;
  background-image: linear-gradient(136.6deg, rgb(255,255,255) 35.6%, rgb(253,248,222) 78.6%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-left: 78px;
}

.hero-cta-wrap {
  position: absolute;
  left: 40px; top: 661px;
  display: flex; flex-direction: column; gap: 36px;
  width: 532px;
}
.hero-subheading {
  font-weight: 600; font-size: 27px; line-height: 1.3; letter-spacing: 0.54px;
  color: #fff;
}
.hero-buttons { display: flex; gap: 20px; align-items: center; }

.hero-body-desktop {
  position: absolute;
  right: 0; top: 737px;
  width: 584px;
  font-weight: 600; font-size: 20px; line-height: 1.5;
  color: #fff;
  padding-right: 40px;
}

/* Mobile hero */
.hero-mobile {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative; z-index: 10;
  padding: 110px 20px 56px;
}
@media (min-width: 640px) { .hero-mobile { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 768px) { .hero-mobile { padding-left: 48px; padding-right: 48px; } }
@media (min-width: 1024px) { .hero-mobile { display: none; } }

.hero-mobile-title-line1,
.hero-mobile-title-line3 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) { .hero-mobile-title-line1, .hero-mobile-title-line3 { font-size: 44px; } }
@media (min-width: 768px) { .hero-mobile-title-line1, .hero-mobile-title-line3 { font-size: 56px; } }

.hero-mobile-title-line2 {
  font-weight: 700; font-size: 64px; line-height: 1.1;
  background-image: linear-gradient(136.6deg, rgb(255,255,255) 35.6%, rgb(253,248,222) 78.6%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@media (min-width: 640px) { .hero-mobile-title-line2 { font-size: 80px; } }
@media (min-width: 768px) { .hero-mobile-title-line2 { font-size: 96px; } }

.hero-mobile-subheading {
  font-weight: 600; font-size: 18px; line-height: 1.35;
  color: #fff;
  max-width: 560px;
}
@media (min-width: 640px) { .hero-mobile-subheading { font-size: 20px; } }

.hero-mobile-buttons {
  display: flex; flex-direction: column; gap: 12px;
  align-items: stretch;
}
@media (min-width: 640px) {
  .hero-mobile-buttons { flex-direction: row; gap: 16px; align-items: center; }
}

.hero-mobile-body {
  font-weight: 500; font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
}
@media (min-width: 640px) { .hero-mobile-body { font-size: 17px; } }

/* ── Shared button styles ── */
.btn-yellow {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 10px;
  gap: 6px;
  background: var(--yellow);
  font-weight: 500; font-size: 16px;
  color: var(--gray-mid);
  white-space: nowrap;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-yellow:hover { background: var(--yellow-dark); box-shadow: 0 10px 24px -12px rgba(87,99,107,0.45); }
.btn-yellow:active { transform: translateY(1px); }
.btn-yellow svg { transition: transform 0.3s; }
.btn-yellow:hover svg { transform: translateX(4px); }

.btn-outline-cream {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 10px;
  border: 1px solid var(--cream);
  font-weight: 500; font-size: 16px;
  color: var(--cream);
  white-space: nowrap;
  transition: background 0.3s;
}
.btn-outline-cream:hover { background-color: rgba(255,255,255,0.1); }
.btn-outline-cream:active { transform: translateY(1px); }

.btn-outline-navy {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 20px;
  gap: 8px;
  border: 1px solid var(--gray-mid);
  font-weight: 500; font-size: 16px;
  color: var(--gray-mid);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.btn-outline-navy:hover { background: var(--gray-mid); color: var(--cream); }
.btn-outline-navy:active { transform: translateY(1px); }
.btn-outline-navy svg { transition: transform 0.3s; }
.btn-outline-navy:hover svg { transform: translateX(4px); }

/* ===================================================
   OPINIE MEDYCZNE
   =================================================== */
.opinie-medyczne {
  position: relative;
  background: #fff;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1024px) { .opinie-medyczne { height: 800px; } }

/* Desktop */
.opinie-desktop { display: none; }
@media (min-width: 1024px) {
  .opinie-desktop {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 1440px; height: 100%;
  }
}

.opinie-desktop-right {
  position: absolute; right: 0; top: 0;
  width: 720px; height: 100%;
  background: var(--gray-light);
  overflow: hidden;
}
.opinie-desktop-photo {
  position: absolute;
  left: 168px; top: 208px;
  width: 615px; height: 598px;
  border-radius: 30px;
  overflow: hidden;
}
.opinie-desktop-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.opinie-desktop-quote-wrap {
  position: absolute;
  left: 50%; margin-left: -264px;
  top: 106px;
  width: 528px;
  display: flex; flex-direction: column; gap: 33px;
}
.opinie-desktop-quote-row {
  display: flex; gap: 22px; align-items: flex-start;
}
.opinie-desktop-quote-row img { width: 32px; height: 22px; flex-shrink: 0; margin-top: 4px; object-fit: contain; }
.opinie-desktop-quote-text {
  font-weight: 500; font-size: 17px; line-height: 1.5; color: #fff;
  width: 472px;
}
.opinie-desktop-author {
  padding-left: 55px;
}
.opinie-desktop-author-sub {
  font-weight: 700; font-size: 14px; line-height: 1.05; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--cream);
}
.opinie-desktop-author-name {
  font-weight: 600; font-size: 27px; line-height: 1.3; letter-spacing: 0.54px;
  color: #fff;
}

.opinie-desktop-h2 {
  position: absolute; left: 40px; top: 106px;
  font-weight: 500; font-size: 48px; line-height: 1.2;
  color: var(--black); width: 500px;
}
.opinie-desktop-h2 span { color: var(--gray-mid); }

.opinie-desktop-body {
  position: absolute; left: 40px; top: 438px;
  width: 567px;
  font-weight: 500; font-size: 16px; line-height: 1.5;
  color: var(--black);
}
.opinie-desktop-body p + p { margin-top: 24px; }

.opinie-desktop-cta {
  position: absolute; left: 423px; top: 682px;
  width: 235px;
}

/* Mobile */
.opinie-mobile { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .opinie-mobile { display: none; } }

.opinie-mobile-text {
  padding: 56px 20px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 640px) { .opinie-mobile-text { padding: 56px 32px; } }
@media (min-width: 768px) { .opinie-mobile-text { padding: 80px 48px; gap: 32px; } }

.opinie-mobile-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15; color: var(--black);
}
@media (min-width: 640px) { .opinie-mobile-h2 { font-size: 44px; } }
@media (min-width: 768px) { .opinie-mobile-h2 { font-size: 52px; } }
.opinie-mobile-h2 span { color: var(--gray-mid); }

.opinie-mobile-body {
  font-weight: 500; font-size: 16px; line-height: 1.5;
  color: var(--black); max-width: 640px;
  display: flex; flex-direction: column; gap: 20px;
}

.opinie-mobile-gray {
  position: relative;
  background: var(--gray-light);
  padding: 48px 20px 40px;
}
@media (min-width: 640px) { .opinie-mobile-gray { padding: 48px 32px 40px; } }
@media (min-width: 768px) { .opinie-mobile-gray { padding: 64px 48px 56px; } }

.opinie-mobile-quote-wrap {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.opinie-mobile-quote-row { display: flex; gap: 16px; align-items: flex-start; }
.opinie-mobile-quote-row img { width: 32px; height: 22px; flex-shrink: 0; margin-top: 4px; object-fit: contain; }
.opinie-mobile-quote-text { font-weight: 500; font-size: 16px; line-height: 1.5; color: #fff; }
@media (min-width: 640px) { .opinie-mobile-quote-text { font-size: 17px; } }
.opinie-mobile-author-sub { font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--cream); }
.opinie-mobile-author-name { font-weight: 600; font-size: 24px; letter-spacing: 0.4px; color: #fff; }

.opinie-mobile-photo {
  margin-top: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
}
.opinie-mobile-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .opinie-mobile-photo { margin-top: 40px; } }

/* ===================================================
   SPECJALISTA
   =================================================== */
.specjalista {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
@media (min-width: 1024px) { .specjalista { height: 800px; padding: 0; } }

.specjalista-bg {
  position: absolute; inset: 0; overflow: hidden;
  background: #2a3240;
}
.specjalista-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.specjalista-bg-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(130.8deg, rgba(68,81,101,0.85) 10.5%, rgba(68,81,101,0.35) 54.2%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%);
}

.specjalista h2 {
  position: relative;
  padding: 0 20px;
  font-weight: 500; font-size: 32px; line-height: 1.15;
  background-image: linear-gradient(149.7deg, rgb(255,255,255) 35.6%, rgb(253,248,222) 78.6%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 640px) { .specjalista h2 { font-size: 40px; padding: 0 32px; } }
@media (min-width: 1024px) {
  .specjalista h2 {
    position: absolute; left: 40px; top: 92px;
    font-size: 48px; padding: 0;
  }
}
.specjalista-br { display: none; }
@media (min-width: 640px) { .specjalista-br { display: inline; } }

/* Arrow controls */
.carousel-controls {
  display: none;
  position: absolute; left: 40px; bottom: 90px;
  gap: 15px; z-index: 10;
}
@media (min-width: 1024px) { .carousel-controls { display: flex; } }

.carousel-controls-mobile {
  display: flex;
  gap: 12px; margin-top: 24px;
  padding: 0 20px;
}
@media (min-width: 640px) { .carousel-controls-mobile { padding: 0 32px; } }
@media (min-width: 1024px) { .carousel-controls-mobile { display: none; } }

.carousel-btn-prev {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--gray-mid);
  border: none; color: inherit;
  transition: background 0.3s, transform 0.3s;
}
.carousel-btn-prev:hover:not(:disabled) { background: var(--gray-dark); transform: scale(1.1); }
.carousel-btn-prev:disabled { opacity: 0.4; cursor: not-allowed; }

.carousel-btn-next {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--yellow);
  border: none; color: inherit;
  transition: background 0.3s, transform 0.3s;
}
.carousel-btn-next:hover:not(:disabled) { background: var(--yellow-dark); transform: scale(1.1); }
.carousel-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.carousel-btn-mobile {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background 0.3s;
}
.carousel-btn-mobile.prev { background: var(--gray-mid); }
.carousel-btn-mobile.prev:hover:not(:disabled) { background: var(--gray-dark); }
.carousel-btn-mobile.next { background: var(--yellow); }
.carousel-btn-mobile.next:hover:not(:disabled) { background: var(--yellow-dark); }
.carousel-btn-mobile:disabled { opacity: 0.4; cursor: not-allowed; }

/* Carousel track */
.carousel-track {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .carousel-track { padding-left: 32px; padding-right: 32px; gap: 24px; } }
@media (min-width: 1024px) {
  .carousel-track {
    position: absolute;
    left: 270px; top: 359px; right: 0;
    gap: 40px;
    padding-top: 0; padding-bottom: 0;
    padding-left: 0; padding-right: 40px;
  }
}

/* Specjalista cards */
.specjalista-card {
  flex-shrink: 0;
  width: 280px; height: 344px;
  position: relative;
  overflow: hidden;
  border: 1px solid #63748B;
  scroll-snap-align: start;
  backdrop-filter: blur(16px);
  background: rgba(68,81,101,0.2);
  transition: transform 0.5s;
}
.specjalista-card:hover { transform: translateY(-4px); }
@media (min-width: 640px) { .specjalista-card { width: 340px; } }
@media (min-width: 1024px) { .specjalista-card { width: 395px; } }

.specjalista-card-icon {
  position: absolute; top: 32px; right: 24px;
  height: 93px; object-fit: contain;
}
.specjalista-card-text {
  position: absolute; bottom: 90px; left: 26px; right: 26px;
  font-weight: 500; font-size: 16px; line-height: 1.5; color: #fff;
}
.specjalista-card-text ul { list-style: disc; padding-left: 24px; }
.specjalista-card-text ul li { margin-bottom: 2px; }
.specjalista-card-text p { margin: 0 0 8px; }

/* ===================================================
   DLA KOGO
   =================================================== */
.dla-kogo-heading {
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 20px;
}
@media (min-width: 1024px) { .dla-kogo-heading { padding: 90px 20px; } }

.dla-kogo-heading h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: var(--black); text-align: center;
}
@media (min-width: 640px) { .dla-kogo-heading h2 { font-size: 42px; } }
@media (min-width: 1024px) { .dla-kogo-heading h2 { font-size: 48px; } }

.dla-kogo-panel {
  position: relative; width: 100%;
  background: #F1F2F4;
}

.dla-kogo-panel-inner {
  display: flex; flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .dla-kogo-panel-inner { flex-direction: row; width: 1440px; }
}

.dla-kogo-dark {
  position: relative;
  width: 100%; height: 340px;
  overflow: hidden; background: #2a3240;
}
@media (min-width: 640px) { .dla-kogo-dark { height: 420px; } }
@media (min-width: 1024px) { .dla-kogo-dark { width: 720px; height: 600px; } }

.dla-kogo-dark video,
.dla-kogo-dark img.dla-kogo-dark-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.dla-kogo-dark-saturation {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45); mix-blend-mode: saturation;
}
.dla-kogo-dark-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(102,102,102,0) 68.333%, rgba(0,0,0,0.2) 100%),
    linear-gradient(102deg, rgb(68,81,101) 7.5%, rgba(68,81,101,0) 56.2%),
    linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
}
.dla-kogo-dark-title {
  position: absolute; bottom: 32px; left: 24px;
  font-weight: 500; font-size: 32px; line-height: 1.15;
  color: #fff;
  display: flex; flex-wrap: wrap; gap: 0 8px;
}
@media (min-width: 640px) { .dla-kogo-dark-title { bottom: 56px; left: 40px; font-size: 40px; } }
@media (min-width: 1024px) { .dla-kogo-dark-title { bottom: 148px; font-size: 48px; } }

.dla-kogo-dark-title-highlight {
  background-clip: text; -webkit-background-clip: text; color: transparent;
}

.dla-kogo-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) { .dla-kogo-content { width: 720px; height: 600px; } }

.dla-kogo-content.bg-cream { background: var(--bg); }
.dla-kogo-content.bg-white { background: #fff; }

.dla-kogo-content-inner {
  padding: 48px 24px 40px;
  display: flex; flex-direction: column; gap: 24px;
  max-width: 720px;
}
@media (min-width: 640px) { .dla-kogo-content-inner { padding: 48px 40px; } }
@media (min-width: 1024px) {
  .dla-kogo-content-inner {
    padding: 100px 64px 40px;
    gap: 35px;
    height: 100%;
  }
}

.dla-kogo-content-h3 {
  font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: 0.4px;
  color: var(--black);
}
@media (min-width: 640px) { .dla-kogo-content-h3 { font-size: 24px; } }
@media (min-width: 1024px) { .dla-kogo-content-h3 { font-size: 27px; letter-spacing: 0.54px; } }

.dla-kogo-content-body {
  font-weight: 500; font-size: 15px; line-height: 1.5;
  color: var(--gray-dark);
}
@media (min-width: 640px) { .dla-kogo-content-body { font-size: 16px; } }
.dla-kogo-content-body p { margin: 0 0 8px; }
.dla-kogo-content-body ul { list-style: disc; padding-left: 24px; }

.read-more {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; width: fit-content;
}
.read-more-label {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--black);
  transition: color 0.2s;
}
.read-more:hover .read-more-label { color: var(--gray-mid); }
.read-more img { width: 24px; height: 24px; object-fit: contain; transition: transform 0.3s; }
.read-more:hover img { transform: translateX(4px); }
@media (min-width: 1024px) { .read-more-label { font-size: 14px; letter-spacing: 1.4px; } }

.dla-kogo-content-cta {
  align-self: flex-start;
}
@media (min-width: 1024px) { .dla-kogo-content-cta { align-self: flex-end; } }

/* ===================================================
   CENNIK
   =================================================== */
.cennik {
  background: var(--gray-light);
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
}
@media (min-width: 640px) { .cennik { padding: 80px 32px; } }
@media (min-width: 1024px) { .cennik { height: 460px; padding: 0; } }

.cennik-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; text-align: center; max-width: 824px;
}
@media (min-width: 1024px) { .cennik-inner { gap: 38px; } }

.cennik-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15; color: var(--cream);
}
@media (min-width: 640px) { .cennik-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .cennik-h2 { font-size: 48px; } }

.cennik-text {
  font-weight: 600; font-size: 18px; line-height: 1.35; letter-spacing: 0.3px; color: #fff;
}
@media (min-width: 640px) { .cennik-text { font-size: 22px; } }
@media (min-width: 1024px) { .cennik-text { font-size: 27px; line-height: 1.3; letter-spacing: 0.54px; } }

/* ===================================================
   USLUGI
   =================================================== */
.uslugi {
  position: relative; width: 100%;
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 1024px) { .uslugi { height: 1169px; } }

.uslugi-ellipse {
  display: none;
  position: absolute; left: -40px; top: 135px;
  width: 569px; height: 374px;
  pointer-events: none; opacity: 0.6;
}
@media (min-width: 1024px) { .uslugi-ellipse { display: block; } }
.uslugi-ellipse img {
  position: absolute;
  inset: -40.53% -26.64%;
  max-width: none;
}

/* Desktop uslugi layout */
.uslugi-desktop { display: none; }
@media (min-width: 1024px) {
  .uslugi-desktop {
    display: block;
    position: relative; margin: 0 auto;
    width: 1440px; height: 100%;
  }
}

.uslugi-desktop h2 {
  position: absolute; left: 40px; top: 283px;
  font-weight: 500; font-size: 48px; line-height: 1.2;
  color: var(--black);
}

.uslugi-desktop-card {
  position: absolute;
}

/* Mobile uslugi */
.uslugi-mobile {
  padding: 56px 20px;
}
@media (min-width: 640px) { .uslugi-mobile { padding: 56px 32px; } }
@media (min-width: 768px) { .uslugi-mobile { padding: 80px 48px; } }
@media (min-width: 1024px) { .uslugi-mobile { display: none; } }

.uslugi-mobile h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: var(--black); margin-bottom: 40px;
}
@media (min-width: 640px) { .uslugi-mobile h2 { font-size: 42px; } }

.uslugi-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) {
  .uslugi-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Uslugi card */
.uslugi-card {
  position: relative;
  width: 100%; height: 460px;
  overflow: hidden;
  background: #fff;
  transition: background 0.5s ease-out;
  cursor: pointer;
}
@media (min-width: 1024px) { .uslugi-card { width: 441px; height: 468px; } }

.uslugi-card:hover,
.uslugi-card:focus-within { background: var(--yellow); }

.uslugi-card-skeleton {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transform: translateX(16px);
}
.uslugi-card:hover .uslugi-card-skeleton,
.uslugi-card:focus-within .uslugi-card-skeleton { opacity: 1; transform: translateX(0); }

.uslugi-card-skeleton img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.uslugi-card-skeleton.mix-multiply img { mix-blend-mode: multiply; }

.uslugi-card-badge {
  position: absolute; top: 32px; right: 32px;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  z-index: 20;
  background: var(--yellow);
  transition: background 0.5s;
}
.uslugi-card:hover .uslugi-card-badge,
.uslugi-card:focus-within .uslugi-card-badge { background: var(--gray-light); }

.uslugi-card-badge span {
  font-weight: 600; font-size: 14px; letter-spacing: 0.28px;
  color: var(--gray-mid);
  transition: color 0.5s;
}
.uslugi-card:hover .uslugi-card-badge span,
.uslugi-card:focus-within .uslugi-card-badge span { color: var(--yellow); }
@media (min-width: 1024px) { .uslugi-card-badge { top: 38px; right: 38px; } }

.uslugi-card-title {
  position: absolute; top: 90px; left: 24px; right: 80px;
  z-index: 10;
  transition: all 0.5s ease-out;
}
@media (min-width: 1024px) { .uslugi-card-title { top: 100px; left: 32px; } }

.uslugi-card-title p {
  font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: 0.4px;
  color: var(--black);
  transition: color 0.5s;
}
@media (min-width: 1024px) { .uslugi-card-title p { font-size: 27px; letter-spacing: 0.54px; } }
.uslugi-card:hover .uslugi-card-title p,
.uslugi-card:focus-within .uslugi-card-title p { color: var(--gray-dark); }

.uslugi-card-details {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  z-index: 10;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: 0.1s;
}
@media (min-width: 1024px) { .uslugi-card-details { left: 30px; right: 30px; bottom: 32px; } }
.uslugi-card:hover .uslugi-card-details,
.uslugi-card:focus-within .uslugi-card-details { opacity: 1; transform: translateY(0); }

.uslugi-card-subheader {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--black); margin-bottom: 12px;
}
@media (min-width: 1024px) { .uslugi-card-subheader { font-size: 14px; letter-spacing: 1.4px; margin-bottom: 16px; } }

.uslugi-card-details ul {
  list-style: disc; padding-left: 20px;
  font-weight: 500; font-size: 13px; line-height: 1.45;
  color: var(--gray-dark);
}
@media (min-width: 1024px) { .uslugi-card-details ul { font-size: 14px; line-height: 1.5; } }

.uslugi-card-focus-btn {
  position: absolute; inset: 0; z-index: 30;
  background: transparent; border: none;
  outline: none;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta-section { height: 600px; } }

.cta-bg {
  position: absolute; inset: 0; overflow: hidden;
  background: #2a3240;
}
.cta-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(139deg, rgba(68,81,101,0.85) 10.5%, rgba(68,81,101,0.35) 54.2%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
}

/* Desktop CTA */
.cta-desktop { display: none; }
@media (min-width: 1024px) { .cta-desktop { display: block; } }

.cta-desktop-h2 {
  position: absolute; left: 40px; top: 106px;
  width: 662px;
  font-weight: 500; font-size: 48px; line-height: 1.2;
  background-image: linear-gradient(139deg, rgb(255,255,255) 35.6%, rgb(253,248,222) 78.6%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.cta-desktop-right {
  position: absolute; right: 40px; top: 318px;
  width: 463px;
  display: flex; flex-direction: column; gap: 30px;
}
.cta-desktop-text {
  font-weight: 600; font-size: 20px; line-height: 1.5; color: #fff;
}
.cta-desktop-cta { width: 288px; }

/* Mobile CTA */
.cta-mobile {
  position: relative; z-index: 10;
  padding: 56px 20px;
  display: flex; flex-direction: column; gap: 32px;
}
@media (min-width: 640px) { .cta-mobile { padding: 56px 32px; gap: 40px; } }
@media (min-width: 768px) { .cta-mobile { padding: 80px 48px; } }
@media (min-width: 1024px) { .cta-mobile { display: none; } }

.cta-mobile-h2 {
  font-weight: 500; font-size: 32px; line-height: 1.15;
  background-image: linear-gradient(139deg, rgb(255,255,255) 35.6%, rgb(253,248,222) 78.6%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  max-width: 720px;
}
@media (min-width: 640px) { .cta-mobile-h2 { font-size: 38px; } }
@media (min-width: 768px) { .cta-mobile-h2 { font-size: 44px; } }

.cta-mobile-text {
  font-weight: 600; font-size: 16px; line-height: 1.5; color: #fff;
  max-width: 560px;
}
@media (min-width: 640px) { .cta-mobile-text { font-size: 18px; } }

/* ===================================================
   PROCES
   =================================================== */
.proces {
  background: #fff;
  padding: 64px 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .proces { padding: 106px 0; } }

.proces-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .proces-container { padding: 0 32px; } }
@media (min-width: 1024px) { .proces-container { padding: 0 40px; } }

.proces-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: var(--black); text-align: center;
  margin-bottom: 56px;
}
.proces-h2 span { color: var(--gray-mid); }
@media (min-width: 640px) { .proces-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .proces-h2 { font-size: 48px; margin-bottom: 125px; } }

/* Desktop timeline */
.proces-timeline-desktop {
  display: none; position: relative; margin-bottom: 107px;
}
@media (min-width: 768px) { .proces-timeline-desktop { display: block; } }

.proces-dashed-line {
  position: absolute;
  left: 5%; right: 5%; top: 43px;
  border-top: 2px dashed var(--gray-light);
}

.proces-steps-desktop {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}

.proces-step-desktop {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  transition: transform 0.5s;
}

.proces-step-icon {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 10;
  transition: transform 0.5s;
}
.proces-step-icon:hover { transform: scale(1.05); }

.proces-step-icon.first {
  width: 87px; height: 87px;
  background: var(--yellow);
}
.proces-step-icon.rest {
  width: 53px; height: 53px;
  background: var(--bg);
  border: 2px solid #fff;
  margin-top: 17px;
}
.proces-step-icon.first img { width: 51px; height: 38px; object-fit: contain; }
.proces-step-icon.rest img { width: 36px; height: 32px; object-fit: contain; }

.proces-step-num {
  font-weight: 500; font-size: 17px; line-height: 1.5;
  color: var(--gray-light);
}
.proces-step-label {
  font-weight: 500; font-size: 15px; line-height: 1.5;
  color: var(--gray-dark); max-width: 160px;
}
@media (min-width: 1024px) { .proces-step-label { font-size: 17px; } }

/* Mobile timeline */
.proces-timeline-mobile {
  display: block; position: relative; margin-bottom: 56px;
}
@media (min-width: 768px) { .proces-timeline-mobile { display: none; } }

.proces-vert-line {
  position: absolute; left: 30px; top: 16px; bottom: 16px;
  border-left: 2px dashed var(--gray-light);
}

.proces-steps-mobile {
  display: flex; flex-direction: column; gap: 32px;
}

.proces-step-mobile {
  display: flex; gap: 20px; align-items: flex-start; position: relative;
}

.proces-step-mobile-icon {
  position: relative; z-index: 10; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.proces-step-mobile-icon.first {
  width: 60px; height: 60px; background: var(--yellow);
}
.proces-step-mobile-icon.rest {
  width: 60px; height: 60px;
  background: #fff; border: 2px solid #E8E7E1;
}
.proces-step-mobile-icon img { width: 30px; height: 26px; object-fit: contain; }

.proces-step-mobile-num {
  font-weight: 500; font-size: 14px; color: var(--gray-light); margin-bottom: 4px;
}
.proces-step-mobile-label {
  font-weight: 500; font-size: 16px; line-height: 1.45; color: var(--gray-dark);
}

.proces-bottom {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center; max-width: 510px; margin: 0 auto;
}
.proces-bottom-main {
  font-weight: 600; font-size: 18px; line-height: 1.5; color: var(--gray-dark);
}
@media (min-width: 1024px) { .proces-bottom-main { font-size: 20px; } }
.proces-bottom-sub {
  font-weight: 500; font-size: 14px; line-height: 1.5; color: var(--gray-dark);
}

/* ===================================================
   DOSTEPNOSC
   =================================================== */
.dostepnosc {
  background: var(--bg);
  overflow: hidden; position: relative;
}
@media (min-width: 1024px) { .dostepnosc { height: 690px; } }

.dostepnosc-heading {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  max-width: 559px; margin: 0 auto;
  padding: 56px 20px;
}
@media (min-width: 640px) { .dostepnosc-heading { padding: 56px 32px; gap: 30px; } }
@media (min-width: 1024px) {
  .dostepnosc-heading {
    position: absolute; top: 93px;
    left: 0; right: 0; margin-left: auto; margin-right: auto;
    padding: 0;
  }
}

.dostepnosc-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15; color: var(--black);
}
@media (min-width: 640px) { .dostepnosc-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .dostepnosc-h2 { font-size: 48px; } }

.dostepnosc-sub {
  font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--black);
}
@media (min-width: 640px) { .dostepnosc-sub { font-size: 16px; } }

.dostepnosc-panels {
  position: relative;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) {
  .dostepnosc-panels {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 400px; flex-direction: row;
  }
}

.dostepnosc-unimed {
  position: relative; overflow: hidden;
  background: var(--gray-light);
  padding: 24px; min-height: 340px;
}
@media (min-width: 640px) { .dostepnosc-unimed { padding: 40px; } }
@media (min-width: 1024px) {
  .dostepnosc-unimed { width: 50%; padding: 0; min-height: 0; }
}

.dostepnosc-unimed-title {
  font-weight: 500; font-size: 28px; line-height: 1.15; color: #fff;
}
@media (min-width: 640px) { .dostepnosc-unimed-title { font-size: 36px; } }
@media (min-width: 1024px) {
  .dostepnosc-unimed-title {
    position: absolute; top: 50px; left: 41px;
    font-size: 48px;
  }
}

.dostepnosc-unimed-info {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 20px; color: #fff;
}
@media (min-width: 1024px) {
  .dostepnosc-unimed-info {
    margin-top: 0;
    position: absolute; bottom: 50px; left: 39px;
    gap: 22px;
  }
}

.dostepnosc-info-label {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
}
@media (min-width: 1024px) { .dostepnosc-info-label { font-size: 14px; letter-spacing: 1.4px; } }

.dostepnosc-info-val {
  font-weight: 600; font-size: 18px; line-height: 1.5;
  transition: color 0.2s;
}
.dostepnosc-info-val:hover { color: var(--yellow); }
@media (min-width: 1024px) { .dostepnosc-info-val { font-size: 20px; } }

.dostepnosc-unimed-btn {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .dostepnosc-unimed-btn {
    margin-top: 0;
    position: absolute; bottom: 50px; right: 39px;
    width: 167px;
  }
}

.dostepnosc-remote {
  position: relative; overflow: hidden;
  min-height: 340px; padding: 24px;
}
@media (min-width: 640px) { .dostepnosc-remote { padding: 40px; } }
@media (min-width: 1024px) { .dostepnosc-remote { width: 50%; padding: 0; min-height: 0; } }

.dostepnosc-remote-bg {
  position: absolute; inset: 0;
}
.dostepnosc-remote-bg img {
  position: absolute;
  width: 127.88%; height: 153.53%; max-width: none;
  left: -22.1%; top: -10.03%;
  object-fit: cover;
}
.dostepnosc-remote-saturation {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3); mix-blend-mode: saturation;
}
.dostepnosc-remote-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(102,102,102,0) 68.333%, rgba(0,0,0,0.3) 100%),
    linear-gradient(107.7deg, rgb(68,81,101) 7.5%, rgba(68,81,101,0) 56.2%),
    linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.25) 100%);
}

.dostepnosc-remote-title {
  position: relative;
  font-weight: 500; font-size: 28px; line-height: 1.15; color: #fff;
}
@media (min-width: 640px) { .dostepnosc-remote-title { font-size: 36px; } }
@media (min-width: 1024px) {
  .dostepnosc-remote-title {
    position: absolute; top: 50px; left: 45px;
    font-size: 48px;
  }
}

.dostepnosc-remote-text {
  position: relative; margin-top: 24px;
  font-weight: 600; font-size: 16px; line-height: 1.5; color: #fff;
  max-width: 398px;
}
@media (min-width: 1024px) {
  .dostepnosc-remote-text {
    position: absolute; bottom: 116px; left: 45px;
    font-size: 20px; margin-top: 0;
  }
}

.dostepnosc-remote-btn {
  position: relative; z-index: 10; margin-top: 24px;
  width: 200px;
}
@media (min-width: 1024px) {
  .dostepnosc-remote-btn {
    position: absolute; bottom: 50px; left: 45px; margin-top: 0;
  }
}

/* ===================================================
   DLACZEGO WARTO
   =================================================== */
.dlaczego-warto {
  position: relative; overflow: hidden;
  padding: 64px 0;
}
@media (min-width: 1024px) { .dlaczego-warto { height: 800px; padding: 0; } }

.dlaczego-warto-bg {
  position: absolute; inset: 0;
}
.dlaczego-warto-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.dlaczego-warto-saturation {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45); mix-blend-mode: saturation;
}
.dlaczego-warto-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(130.8deg, rgb(68,81,101) 10.5%, rgba(68,81,101,0) 54.2%),
    linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.25) 100%);
}

.dlaczego-warto h2 {
  position: relative;
  padding: 0 20px;
  font-weight: 500; font-size: 32px; line-height: 1.15;
  background-image: linear-gradient(160deg, rgb(255,255,255) 35.6%, rgb(253,248,222) 78.6%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 640px) { .dlaczego-warto h2 { font-size: 40px; padding: 0 32px; } }
@media (min-width: 1024px) {
  .dlaczego-warto h2 {
    position: absolute; left: 40px; top: 152px;
    font-size: 48px; padding: 0;
  }
}

.dlaczego-warto-card {
  flex-shrink: 0;
  width: 280px; height: 344px;
  position: relative; overflow: hidden;
  border: 1px solid #63748B;
  scroll-snap-align: start;
  backdrop-filter: blur(16px);
  background: rgba(68,81,101,0.2);
  transition: transform 0.5s;
}
.dlaczego-warto-card:hover { transform: translateY(-4px); }
@media (min-width: 640px) { .dlaczego-warto-card { width: 340px; } }
@media (min-width: 1024px) { .dlaczego-warto-card { width: 395px; } }

.dlaczego-warto-card img { position: absolute; top: 32px; right: 24px; height: 93px; object-fit: contain; }
.dlaczego-warto-card p {
  position: absolute; bottom: 90px; left: 26px; right: 26px;
  font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: 0.4px; color: #fff;
}
@media (min-width: 1024px) { .dlaczego-warto-card p { font-size: 27px; letter-spacing: 0.54px; } }

/* ===================================================
   PORADY / FAQ
   =================================================== */
.porady {
  background: var(--bg);
  padding: 64px 0;
  overflow: hidden; position: relative;
}
@media (min-width: 1024px) { .porady { padding: 103px 0; } }

.porady h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: var(--black); text-align: center;
  margin-bottom: 40px; padding: 0 20px;
}
@media (min-width: 640px) { .porady h2 { font-size: 42px; } }
@media (min-width: 1024px) { .porady h2 { font-size: 48px; margin-bottom: 80px; } }

.faq-list {
  max-width: 883px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 20px;
}
@media (min-width: 640px) { .faq-list { padding: 0 32px; gap: 16px; } }

.faq-item { overflow: hidden; border-radius: 6px; }

.faq-item .faq-inner {
  overflow: hidden;
  border-radius: 6px;
  transition: background 0.3s;
  background: #fff;
  border-bottom: 1px solid rgba(167,178,186,0.6);
}
.faq-item .faq-inner:hover { background: rgba(167,178,186,0.15); }
.faq-item.faq-open .faq-inner {
  background: var(--gray-mid);
  box-shadow: 0 10px 24px -16px rgba(33,33,34,0.35);
  border-bottom: none;
}

.faq-trigger {
  width: 100%; display: flex; align-items: center;
  gap: 16px; padding: 20px 16px; text-align: left; cursor: pointer;
  background: transparent; border: none;
}
@media (min-width: 640px) { .faq-trigger { gap: 24px; padding: 24px 20px; } }

.faq-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--gray-light);
  transition: background 0.3s, border-color 0.3s;
}
@media (min-width: 640px) { .faq-icon { width: 42px; height: 42px; } }
.faq-open .faq-icon { background: var(--yellow); border-color: var(--yellow); }

.faq-icon svg { transition: transform 0.3s; }
.faq-icon .faq-v-bar { transition: transform 0.3s; transform-origin: center; }
.faq-open .faq-v-bar { transform: scaleY(0); }

.faq-question {
  font-weight: 500; font-size: 15px; line-height: 1.45; color: var(--black);
  transition: color 0.3s;
}
@media (min-width: 640px) { .faq-question { font-size: 17px; line-height: 1.5; } }
.faq-trigger:hover .faq-question { color: var(--gray-mid); }
.faq-open .faq-question { color: #fff; }

.faq-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}
.faq-open .faq-panel { opacity: 1; }

.faq-answer {
  font-weight: 500; font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.9);
  padding: 0 16px 20px 58px;
}
@media (min-width: 640px) { .faq-answer { font-size: 15px; padding: 0 20px 24px 74px; } }

/* ===================================================
   OPINIE KLIENTOW
   =================================================== */
.opinie-klientow {
  background: var(--gray-mid);
  overflow: hidden; position: relative;
  display: flex; align-items: center;
  padding: 64px 0;
}
@media (min-width: 1024px) { .opinie-klientow { height: 478px; padding: 0; } }

.opinie-klientow-left {
  position: relative;
  display: flex; flex-direction: column;
  gap: 24px;
  padding: 0 20px; margin-bottom: 32px;
}
@media (min-width: 640px) { .opinie-klientow-left { padding: 0 32px; gap: 51px; } }
@media (min-width: 1024px) {
  .opinie-klientow-left {
    position: absolute; left: 40px; top: 50%; transform: translateY(-50%);
    padding: 0; margin-bottom: 0; gap: 51px;
  }
}

.opinie-klientow-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: var(--cream);
}
@media (min-width: 640px) { .opinie-klientow-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .opinie-klientow-h2 { font-size: 48px; } }

.opinie-klientow-controls { display: flex; gap: 15px; }

.opinie-klientow-btn-prev {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: none;
  background: #48545D; transition: background 0.3s, transform 0.3s;
}
.opinie-klientow-btn-prev:hover:not(:disabled) { background: #3e4951; transform: scale(1.1); }
.opinie-klientow-btn-prev:disabled { opacity: 0.4; cursor: not-allowed; }

.opinie-klientow-btn-next {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: none;
  background: var(--yellow); transition: background 0.3s, transform 0.3s;
}
.opinie-klientow-btn-next:hover:not(:disabled) { background: var(--yellow-dark); transform: scale(1.1); }
.opinie-klientow-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.opinie-klientow-track {
  position: relative;
  display: flex; gap: 40px;
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-right: 32px; padding-left: 20px;
  scrollbar-width: none;
  width: 100%;
}
.opinie-klientow-track::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .opinie-klientow-track { padding-left: 32px; gap: 80px; } }
@media (min-width: 1024px) {
  .opinie-klientow-track {
    position: absolute; left: 381px; right: 0;
    padding-left: 0; padding-right: 80px;
    gap: 80px; width: auto;
  }
}

.opinie-review {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  gap: 20px;
  scroll-snap-align: start;
  width: 280px;
}
@media (min-width: 640px) { .opinie-review { width: 329px; gap: 33px; } }

.opinie-review-top { display: flex; gap: 22px; align-items: flex-start; }
.opinie-review-top img { width: 32px; height: 22px; flex-shrink: 0; margin-top: 4px; }
.opinie-review-text {
  font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--cream);
}
@media (min-width: 1024px) { .opinie-review-text { font-size: 16px; } }

.opinie-review-author { padding-left: 55px; }
.opinie-review-date {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gray-light);
}
@media (min-width: 1024px) { .opinie-review-date { font-size: 14px; letter-spacing: 1.4px; } }
.opinie-review-name {
  font-weight: 600; font-size: 18px; line-height: 1.5; color: var(--cream);
}
@media (min-width: 1024px) { .opinie-review-name { font-size: 20px; } }

.opinie-klientow-fade {
  display: none;
  position: absolute; right: 0; top: 0; bottom: 0; width: 173px;
  background: linear-gradient(to left, var(--gray-mid), transparent);
  pointer-events: none;
}
@media (min-width: 1024px) { .opinie-klientow-fade { display: block; } }

/* ===================================================
   CERTYFIKATY I PUBLIKACJE
   =================================================== */
.certpub {
  background: var(--bg);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .certpub { flex-direction: row; height: 536px; } }

.certpub-left {
  position: relative; overflow: hidden;
  padding: 48px 20px; min-height: 340px;
}
@media (min-width: 640px) { .certpub-left { padding: 48px 32px; } }
@media (min-width: 1024px) {
  .certpub-left {
    width: 50%; padding: 78px 40px;
    min-height: 0;
  }
}

.certpub-skeleton {
  position: absolute;
  left: 141px; top: -270px;
  width: 646px; height: 824px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
@media (min-width: 1024px) { .certpub-skeleton { left: 241px; } }
.certpub-skeleton img {
  width: 320px; height: auto; object-fit: cover; opacity: 0.9;
  transform: rotate(17.4deg);
}
@media (min-width: 1024px) { .certpub-skeleton img { width: 451px; } }

.certpub-left h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15;
  color: var(--black); position: relative; z-index: 10;
}
@media (min-width: 640px) { .certpub-left h2 { font-size: 42px; } }
@media (min-width: 1024px) { .certpub-left h2 { font-size: 48px; } }

.certpub-left-btn {
  margin-top: 32px; position: relative; z-index: 10;
}
@media (min-width: 1024px) {
  .certpub-left-btn {
    position: absolute; bottom: 99px; left: 40px;
    margin-top: 0; width: 190px;
  }
}

.certpub-right {
  position: relative; overflow: hidden;
  background: var(--gray-light);
  padding: 48px 20px; min-height: 340px;
}
@media (min-width: 640px) { .certpub-right { padding: 48px 32px; } }
@media (min-width: 1024px) { .certpub-right { width: 50%; padding: 0; min-height: 0; } }

.certpub-right-skeleton {
  position: absolute;
  right: -200px; top: -135px;
  width: 406px; height: 649px;
  overflow: hidden; pointer-events: none;
}
@media (min-width: 1024px) { .certpub-right-skeleton { right: -164px; } }
.certpub-right-skeleton img {
  position: absolute;
  width: 188.14%; height: 117.52%;
  left: -40.34%; top: -6.16%;
}

.certpub-right h2 {
  position: relative; font-weight: 500; font-size: 36px; line-height: 1.15; color: #fff;
}
@media (min-width: 640px) { .certpub-right h2 { font-size: 42px; } }
@media (min-width: 1024px) {
  .certpub-right h2 {
    position: absolute; top: 78px; left: 64px; font-size: 48px;
  }
}

.certpub-right-btn {
  position: relative; z-index: 10; margin-top: 32px;
  width: 180px;
}
@media (min-width: 1024px) {
  .certpub-right-btn {
    position: absolute; bottom: 96px; left: 64px; margin-top: 0;
  }
}

/* ===================================================
   KONTAKT
   =================================================== */
.kontakt { background: #fff; overflow: hidden; position: relative; }

/* Desktop */
.kontakt-desktop { display: none; }
@media (min-width: 1024px) {
  .kontakt-desktop {
    display: block; height: 1014px; position: relative;
  }
}

.kontakt-desktop-contacts {
  position: absolute; left: 40px; top: 283px;
  display: flex; flex-direction: column; gap: 57px; width: 342px;
}

.contact-row {
  display: flex; gap: 24px; align-items: center;
}
@media (min-width: 640px) { .contact-row { gap: 32px; } }

.contact-row-icon {
  background: var(--yellow);
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s;
}
.contact-row:hover .contact-row-icon { transform: scale(1.05); }
@media (min-width: 640px) { .contact-row-icon { width: 88px; height: 88px; } }

.contact-row-icon img { width: 36px; height: 36px; object-fit: contain; }
@media (min-width: 640px) { .contact-row-icon img { width: 46px; height: 46px; } }

.contact-row-label {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gray-mid);
}
@media (min-width: 640px) { .contact-row-label { font-size: 14px; letter-spacing: 1.4px; } }

.contact-row-value {
  font-weight: 600; font-size: 17px; line-height: 1.4;
  color: var(--black);
}
@media (min-width: 640px) { .contact-row-value { font-size: 20px; } }

a.contact-row { transition: opacity 0.2s; }
a.contact-row:hover { opacity: 0.9; }

.kontakt-form-panel {
  position: absolute; top: 93px; right: 0;
  width: 809px; height: 758px;
  background: var(--bg); overflow: hidden;
}

.kontakt-form-header {
  position: absolute; top: 53px; left: 48px; width: 357px;
  display: flex; flex-direction: column; gap: 26px;
}
.kontakt-form-header-sub {
  font-weight: 700; font-size: 14px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gray-mid);
}
.kontakt-form-header h2 {
  font-weight: 500; font-size: 48px; line-height: 1.2; color: var(--black);
}
.kontakt-form-header h2 span { color: var(--gray-mid); }

.kontakt-form {
  position: absolute; top: 220px; left: 48px; right: 48px;
  display: flex; flex-direction: column; gap: 6px;
}

.form-row {
  border-bottom: 1px solid var(--gray-light);
  height: 65px;
  display: flex; align-items: center;
  transition: border-color 0.2s;
}
.form-row:focus-within { border-color: var(--gray-mid); }

.form-row.two-cols { display: flex; gap: 19px; height: auto; border: none; }
.form-row.two-cols .form-field { flex: 1; min-width: 0; }

.form-field {
  display: flex; align-items: center; height: 65px;
  border-bottom: 1px solid var(--gray-light);
  transition: border-color 0.2s;
}
.form-field:focus-within { border-color: var(--gray-mid); }

.form-label {
  font-weight: 500; font-size: 14px; line-height: 1.5;
  color: var(--gray-mid); flex-shrink: 0;
}

.form-input {
  flex: 1; min-width: 0;
  background: transparent;
  font-family: 'Epilogue', sans-serif;
  font-weight: 500; font-size: 14px; line-height: 1.5;
  color: var(--black);
  border: none; outline: none;
}
.form-input::placeholder { color: var(--gray-light); }

.kontakt-rodo {
  position: absolute; top: 448px; left: 44px; right: 44px;
  display: flex; align-items: flex-start; justify-content: space-between;
}

.rodo-left { display: flex; gap: 14px; align-items: flex-start; }

.rodo-checkbox {
  flex-shrink: 0; width: 16px; height: 16px;
  margin-top: 2px; border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  background: transparent; transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.rodo-checkbox.is-checked {
  background: var(--gray-mid); border-color: var(--gray-mid);
}
.rodo-checkbox img { width: 100%; height: 100%; object-fit: contain; }

.rodo-text {
  font-weight: 400; font-size: 12px; line-height: 1.5;
  color: var(--gray-mid); text-align: justify; width: 589px;
}
.rodo-expand-text { display: none; }

.rodo-expand-btn {
  font-weight: 400; font-size: 12px; line-height: 1.5;
  color: var(--gray-mid); white-space: nowrap;
  margin-left: 16px; margin-top: 2px;
  background: transparent; border: none;
  cursor: pointer; transition: color 0.2s;
}
.rodo-expand-btn:hover { color: var(--black); }

.kontakt-submit-desktop {
  position: absolute; top: 649px; left: 520px;
  width: 235px;
}

.kontakt-footer-bar {
  position: absolute; bottom: 0; left: 591px; right: 0;
  height: 164px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 41px;
}
.kontakt-footer-bar p {
  font-weight: 400; font-size: 12px; line-height: 1.5; color: var(--gray-mid);
}
.kontakt-footer-bar a { cursor: pointer; transition: color 0.2s; }
.kontakt-footer-bar a:hover { color: var(--black); }

.kontakt-logo-desktop {
  position: absolute; bottom: 73px; left: 40px;
  display: flex; flex-direction: column; gap: 6px;
}
.kontakt-logo-desktop-sub {
  font-weight: 700; font-size: 14px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gray-light);
}
.kontakt-logo-desktop-name {
  font-weight: 600; font-size: 29px; letter-spacing: 0.87px; color: var(--gray-dark);
}

/* Mobile kontakt */
.kontakt-mobile { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .kontakt-mobile { display: none; } }

.kontakt-mobile-contacts {
  padding: 56px 20px;
  display: flex; flex-direction: column; gap: 40px;
}
@media (min-width: 640px) { .kontakt-mobile-contacts { padding: 56px 32px; } }

.kontakt-mobile-form {
  background: var(--bg);
  padding: 56px 20px;
  display: flex; flex-direction: column; gap: 32px;
}
@media (min-width: 640px) { .kontakt-mobile-form { padding: 56px 32px; } }

.kontakt-mobile-form-header { display: flex; flex-direction: column; gap: 16px; }
.kontakt-mobile-form-sub {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gray-mid);
}
.kontakt-mobile-form h2 {
  font-weight: 500; font-size: 36px; line-height: 1.15; color: var(--black);
}
@media (min-width: 640px) { .kontakt-mobile-form h2 { font-size: 42px; } }
.kontakt-mobile-form h2 span { color: var(--gray-mid); }

.form-field-mobile {
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s;
}
.form-field-mobile:focus-within { border-color: var(--gray-mid); }

.form-label-mobile {
  font-weight: 500; font-size: 12px; line-height: 1.3;
  color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.05em;
}
.form-input-mobile {
  background: transparent; border: none; outline: none;
  font-family: 'Epilogue', sans-serif;
  font-weight: 500; font-size: 15px; line-height: 1.4;
  color: var(--black); padding: 4px 0;
}
.form-input-mobile::placeholder { color: var(--gray-light); }

.rodo-mobile {
  display: flex; gap: 12px; align-items: flex-start;
}
.rodo-checkbox-mobile {
  flex-shrink: 0; width: 20px; height: 20px;
  margin-top: 2px; border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  background: transparent; transition: all 0.2s; cursor: pointer;
}
.rodo-checkbox-mobile.is-checked { background: var(--gray-mid); border-color: var(--gray-mid); }
.rodo-checkbox-mobile img { width: 100%; height: 100%; object-fit: contain; }

.rodo-text-mobile {
  font-weight: 400; font-size: 12px; line-height: 1.5; color: var(--gray-mid);
}
.rodo-expand-text-mobile { display: none; }
.rodo-expand-btn-mobile {
  text-decoration: underline; background: transparent; border: none;
  cursor: pointer; font-size: 12px; color: var(--gray-mid); transition: color 0.2s;
}
.rodo-expand-btn-mobile:hover { color: var(--black); }

.kontakt-mobile-footer {
  padding: 40px 20px;
  border-top: 1px solid #E8E7E1;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) { .kontakt-mobile-footer { padding: 40px 32px; } }

.kontakt-mobile-logo-sub {
  font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gray-light);
}
.kontakt-mobile-logo-name {
  font-weight: 600; font-size: 22px; letter-spacing: 0.6px; color: var(--gray-dark);
}
.kontakt-mobile-legal {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; color: var(--gray-mid); margin-top: 16px;
}
@media (min-width: 640px) {
  .kontakt-mobile-legal { flex-direction: row; align-items: center; justify-content: space-between; }
}
.kontakt-mobile-legal a:hover { color: var(--black); }

/* ===================================================
   CERTYFIKATY LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(3px);
  cursor: pointer; border: none;
}

.lightbox-close {
  position: absolute; right: 16px; top: 16px;
  z-index: 10; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; border: none; background: transparent;
  transition: background 0.2s;
}
@media (min-width: 640px) { .lightbox-close { right: 24px; top: 20px; } }
.lightbox-close:hover { background: rgba(255,255,255,0.1); }

.lightbox-stage {
  position: relative; flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 64px 48px;
}
@media (min-width: 640px) { .lightbox-stage { padding: 80px; } }

.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none; background: transparent; border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
@media (min-width: 640px) { .lightbox-prev, .lightbox-next { width: 56px; height: 56px; } }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
@media (min-width: 640px) { .lightbox-prev { left: 24px; } .lightbox-next { right: 24px; } }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--yellow); background: rgba(255,255,255,0.1); }

.lightbox-counter {
  position: absolute; left: 50%; transform: translateX(-50%); top: 16px;
  color: rgba(255,255,255,0.8); font-size: 13px; letter-spacing: 0.05em;
}
@media (min-width: 640px) { .lightbox-counter { top: 20px; } }

.lightbox-img-wrap {
  position: relative; max-width: min(92vw, 960px); max-height: 70vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-main-img {
  max-width: 100%; max-height: 70vh; width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}

.lightbox-thumbs {
  position: relative; z-index: 1;
  width: 100%; overflow-x: auto; overflow-y: hidden;
  padding-bottom: 20px; padding-top: 8px;
  scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumbs-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px; min-width: max-content;
}
@media (min-width: 640px) { .lightbox-thumbs-inner { padding: 0 40px; } }

.lightbox-thumb {
  height: 72px; flex-shrink: 0;
  border: none; background: transparent; padding: 0;
  opacity: 0.6; outline: none; transition: opacity 0.2s;
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .lightbox-thumb { height: 88px; } }
.lightbox-thumb:hover { opacity: 1; }
.lightbox-thumb.active { outline: 2px solid var(--yellow); opacity: 1; }
.lightbox-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}

/* ===================================================
   PUBLIKACJE MODAL
   =================================================== */
.pub-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
@media (min-width: 640px) { .pub-modal { padding: 24px; } }
.pub-modal.is-open { opacity: 1; pointer-events: auto; }

.pub-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  cursor: pointer; border: none;
}

.pub-modal-dialog {
  position: relative; width: 100%; max-width: 960px;
  background: var(--gray-light);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  transform: translateY(12px) scale(0.98);
}
.pub-modal.is-open .pub-modal-dialog { transform: translateY(0) scale(1); }

.pub-modal-close {
  position: absolute; right: 16px; top: 16px;
  width: 42px; height: 42px;
  background: var(--yellow); border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
@media (min-width: 640px) { .pub-modal-close { right: 30px; top: 38px; } }
.pub-modal-close:hover { background: var(--yellow-dark); }
.pub-modal-close:active { transform: translateY(1px); }

.pub-modal-title {
  padding-top: 64px; text-align: center;
  font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: 0.54px;
  color: #fff; padding-left: 56px; padding-right: 56px;
}
@media (min-width: 640px) { .pub-modal-title { padding-top: 66px; font-size: 27px; } }

.pub-modal-body {
  padding: 40px 20px 32px;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  position: relative;
}
@media (min-width: 640px) { .pub-modal-body { padding: 92px 53px 53px; } }
@media (min-width: 768px) {
  .pub-modal-body {
    grid-template-columns: 1fr 1fr; gap: 48px;
  }
}

.pub-modal-divider {
  display: none;
  position: absolute; top: 20px; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 1px; background: rgba(255,255,255,0.35);
}
@media (min-width: 768px) { .pub-modal-divider { display: block; } }

.pub-article { display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 768px) { .pub-article { min-height: 242px; gap: 40px; } }

.pub-article-text {
  font-weight: 500; font-size: 13px; line-height: 1.5; color: #fff;
}
@media (min-width: 640px) { .pub-article-text { font-size: 14px; } }
.pub-article-text .highlight { color: var(--cream); }

/* ===================================================
   ORTOPEDA HERO
   =================================================== */
.hero-ortopeda {
  position: relative;
  height: 100svh; min-height: 700px;
  overflow: hidden; background: #2a3240;
}
@media (min-width: 1024px) { .hero-ortopeda { height: 900px; } }

.hero-ort-photo-desktop {
  display: none;
  position: absolute; top: 0; bottom: 0; left: -32px;
  z-index: 0;
}
@media (min-width: 1024px) {
  .hero-ort-photo-desktop {
    display: block;
    width: calc(43% + 32px);
  }
}
.hero-ort-photo-desktop img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  border-radius: 0 30px 30px 0;
}
.hero-ort-photo-desktop-overlay {
  position: absolute; inset: 0; border-radius: 0 30px 30px 0;
  background-image:
    linear-gradient(to right, rgba(42,50,64,0) 60%, rgba(42,50,64,0.55) 100%),
    linear-gradient(to bottom, rgba(42,50,64,0.3) 0%, rgba(42,50,64,0) 30%, rgba(42,50,64,0) 60%, rgba(42,50,64,0.5) 100%);
}

.hero-ort-photo-mobile {
  position: absolute; inset: 0; z-index: 0;
}
@media (min-width: 1024px) { .hero-ort-photo-mobile { display: none; } }
.hero-ort-photo-mobile img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-ort-photo-mobile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #2a3240 0%, rgba(42,50,64,0.7) 40%, transparent 100%);
}

.hero-ort-right-overlay {
  display: none;
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(to left, rgba(42,50,64,0.85) 35%, rgba(42,50,64,0) 65%);
}
@media (min-width: 1024px) { .hero-ort-right-overlay { display: block; } }

.hero-ort-text-desktop {
  display: none;
  position: absolute; z-index: 10;
  flex-direction: column;
  left: 43%; top: 422px;
}
@media (min-width: 1024px) { .hero-ort-text-desktop { display: flex; } }

.hero-ort-sub {
  font-weight: 500; font-size: 70px; line-height: 1.2; color: #fff; text-transform: uppercase;
}
.hero-ort-name {
  font-weight: 700; font-size: 120px; line-height: 1.2; white-space: nowrap;
  background-image: linear-gradient(155.5deg, rgb(255,255,255) 35.62%, rgb(253,248,222) 78.571%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-ort-specialty {
  font-weight: 600; font-size: 27px; line-height: 1.3; letter-spacing: 0.54px;
  color: #fff; white-space: nowrap; margin-top: 4px;
}

.hero-ort-quote {
  display: none;
  position: absolute; z-index: 10;
  right: 40px; top: 737px; max-width: 458px;
  font-weight: 600; font-size: 20px; line-height: 1.5;
  color: #fff; text-align: right;
}
@media (min-width: 1024px) { .hero-ort-quote { display: block; } }

.hero-ort-ctas {
  display: none;
  position: absolute; z-index: 10;
  left: 40px; bottom: 80px;
  gap: 20px; align-items: center;
}
@media (min-width: 1024px) { .hero-ort-ctas { display: flex; } }

.hero-ort-mobile {
  position: relative; z-index: 10;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 20px 56px;
}
@media (min-width: 1024px) { .hero-ort-mobile { display: none; } }

.hero-ort-mobile-specialty {
  font-weight: 600; font-size: 13px; letter-spacing: 0.54px;
  color: rgba(255,255,255,0.8); text-transform: uppercase; margin-bottom: 8px;
}
.hero-ort-mobile-title {
  font-weight: 500; font-size: 36px; line-height: 1.2; color: #fff; text-transform: uppercase;
}
@media (min-width: 640px) { .hero-ort-mobile-title { font-size: 48px; } }
.hero-ort-mobile-name {
  font-weight: 700; font-size: 52px; line-height: 1.1;
  background-image: linear-gradient(155.5deg, rgb(255,255,255) 35.62%, rgb(253,248,222) 78.571%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .hero-ort-mobile-name { font-size: 72px; } }
.hero-ort-mobile-btns {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) { .hero-ort-mobile-btns { flex-direction: row; } }

/* ===================================================
   JESTEM LEKARZEM
   =================================================== */
.jestem-lekarzem {
  background: #fff; width: 100%; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .jestem-lekarzem { flex-direction: row; height: 800px; } }

.jestem-lekarzem-text {
  width: 100%; flex-shrink: 0; position: relative;
  padding: 56px 20px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 640px) { .jestem-lekarzem-text { padding: 56px 40px; } }
@media (min-width: 1024px) { .jestem-lekarzem-text { width: 50%; } }

.jestem-lekarzem-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.2; color: var(--black);
}
.jestem-lekarzem-h2 span { color: var(--gray-mid); }
@media (min-width: 640px) { .jestem-lekarzem-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .jestem-lekarzem-h2 { font-size: 48px; } }

.jestem-lekarzem-body {
  margin-top: 32px;
  font-weight: 500; font-size: 15px; line-height: 1.5;
  color: var(--gray-dark); max-width: 580px;
}
@media (min-width: 640px) { .jestem-lekarzem-body { font-size: 16px; } }
@media (min-width: 1024px) { .jestem-lekarzem-body { margin-top: 40px; } }
.jestem-lekarzem-body + .jestem-lekarzem-body { margin-top: 16px; }

.jestem-lekarzem-photo {
  width: 100%; flex-shrink: 0; position: relative;
  background: var(--gray-light); overflow: hidden;
  min-height: 400px;
}
@media (min-width: 1024px) { .jestem-lekarzem-photo { width: 50%; min-height: 0; } }

.jestem-lekarzem-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.jestem-lekarzem-photo-saturation {
  position: absolute; inset: 0; background: rgba(0,0,0,0.2); mix-blend-mode: saturation;
}
.jestem-lekarzem-photo-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(130.8deg, rgba(68,81,101,0.5) 10.5%, rgba(68,81,101,0) 54.2%);
}
.jestem-lekarzem-quote {
  position: absolute; bottom: 32px; left: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) { .jestem-lekarzem-quote { bottom: 56px; left: 40px; right: 40px; } }
@media (min-width: 1024px) { .jestem-lekarzem-quote { bottom: 106px; } }

.jestem-lekarzem-quote-text {
  font-weight: 500; font-size: 15px; line-height: 1.5; color: #fff; max-width: 416px;
}
@media (min-width: 1024px) { .jestem-lekarzem-quote-text { font-size: 17px; } }
.jestem-lekarzem-quote-sub { padding-left: 56px; }
.jestem-lekarzem-quote-sub-label {
  font-weight: 700; font-size: 13px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--cream);
}
.jestem-lekarzem-quote-name {
  font-weight: 600; font-size: 27px; letter-spacing: 0.54px; color: #fff;
}

/* ===================================================
   ZAKRES LECZENIA
   =================================================== */
.zakres-leczenia {
  width: 100%; overflow: hidden; display: flex; flex-direction: column;
}

.zakres-leczenia-heading {
  font-weight: 500; font-size: 36px; line-height: 1.2; color: var(--black);
  text-align: center; padding: 56px 20px;
}
@media (min-width: 640px) { .zakres-leczenia-heading { font-size: 42px; } }
@media (min-width: 1024px) { .zakres-leczenia-heading { font-size: 48px; padding: 143px 20px; } }

.zakres-row {
  width: 100%; display: flex; flex-direction: column; align-items: stretch;
}
@media (min-width: 1024px) { .zakres-row { flex-direction: row; } }

.zakres-photo {
  position: relative; width: 100%; height: 320px; overflow: hidden; background: #2a3240;
  flex-shrink: 0;
}
@media (min-width: 640px) { .zakres-photo { height: 380px; } }
@media (min-width: 1024px) { .zakres-photo { width: 50%; height: 433px; } }

.zakres-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.zakres-photo-saturation {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45); mix-blend-mode: saturation;
}
.zakres-photo-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(102,102,102,0) 68.333%, rgba(0,0,0,0.2) 100%),
    linear-gradient(106.4deg, rgb(68,81,101) 7.5%, rgba(68,81,101,0) 56.2%),
    linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
}
.zakres-photo-sublabel {
  position: absolute; bottom: 24px; left: 24px;
  font-weight: 700; font-size: 13px; letter-spacing: 1.4px; color: #fff; text-transform: uppercase;
}
@media (min-width: 640px) { .zakres-photo-sublabel { bottom: 40px; left: 40px; } }
@media (min-width: 1024px) { .zakres-photo-sublabel { font-size: 14px; } }

.zakres-photo-title {
  position: absolute; bottom: 40px; left: 20px;
  font-weight: 500; font-size: 48px; line-height: 1.2; color: #fff;
  white-space: pre-line;
}
@media (min-width: 640px) { .zakres-photo-title { bottom: 56px; left: 40px; font-size: 56px; } }
@media (min-width: 1024px) { .zakres-photo-title { font-size: 70px; } }

.zakres-content {
  width: 100%; flex-shrink: 0;
  padding: 40px 20px; display: flex; flex-direction: column; gap: 28px; justify-content: center;
}
@media (min-width: 640px) { .zakres-content { padding: 40px; } }
@media (min-width: 1024px) { .zakres-content { width: 50%; padding: 40px 57px; } }
.zakres-content.bg-cream { background: var(--bg); }
.zakres-content.bg-white { background: #fff; }

.zakres-content-h3 {
  font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: 0.54px; color: var(--black);
}
@media (min-width: 640px) { .zakres-content-h3 { font-size: 24px; } }
@media (min-width: 1024px) { .zakres-content-h3 { font-size: 27px; } }

.zakres-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.zakres-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); height: 41px; padding: 0 8px;
  font-weight: 500; font-size: 17px; line-height: 1.5; color: var(--black); white-space: nowrap;
}
.zakres-tag svg { flex-shrink: 0; }

.zakres-content-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 8px;
}
.zakres-link-placowki {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--black); height: 56px; padding: 8px 0;
  font-weight: 500; font-size: 16px; color: var(--black); white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.zakres-link-placowki:hover { color: var(--gray-mid); border-color: var(--gray-mid); }
.zakres-link-placowki svg { transition: transform 0.3s; }
.zakres-link-placowki:hover svg { transform: translateX(4px); }

/* ===================================================
   CENNIK ORTOPEDA (shared .cennik styles)
   =================================================== */
.cennik-ort-text {
  margin-top: 32px;
  font-weight: 600; font-size: 20px; line-height: 1.3; letter-spacing: 0.54px; color: #fff;
}
@media (min-width: 640px) { .cennik-ort-text { font-size: 24px; } }
@media (min-width: 1024px) { .cennik-ort-text { font-size: 27px; } }

/* ===================================================
   LECZENIE TECHNIKA
   =================================================== */
.leczenie-technika {
  background: #fff; width: 100%; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .leczenie-technika { flex-direction: row; min-height: 749px; } }

.leczenie-dark {
  position: relative; width: 100%; background: var(--navy);
  padding: 56px 20px; min-height: 480px; overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 640px) { .leczenie-dark { padding: 56px 40px; } }
@media (min-width: 1024px) { .leczenie-dark { width: 63%; padding: 0; min-height: 0; } }

.leczenie-dark video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.leczenie-dark-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120.2deg, rgba(68,81,101,0.80) 10.5%, rgba(68,81,101,0.35) 54.2%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
}
.leczenie-dark-content {
  position: relative;
}
@media (min-width: 1024px) {
  .leczenie-dark-content {
    position: absolute; top: 106px; left: 40px; width: 761px;
  }
}
.leczenie-dark-h2 {
  font-weight: 500; font-size: 28px; line-height: 1.2; color: #fff;
}
@media (min-width: 640px) { .leczenie-dark-h2 { font-size: 36px; } }
@media (min-width: 1024px) { .leczenie-dark-h2 { font-size: 48px; } }

.leczenie-dark-bottom {
  position: relative; margin-top: 32px;
  display: flex; flex-direction: column; gap: 28px;
}
@media (min-width: 1024px) {
  .leczenie-dark-bottom {
    position: absolute; bottom: 96px; left: 38px; margin-top: 0;
  }
}
.leczenie-dark-text {
  font-weight: 600; font-size: 18px; line-height: 1.5; color: #fff; max-width: 360px;
}
@media (min-width: 1024px) { .leczenie-dark-text { font-size: 20px; } }

.leczenie-widget {
  width: 100%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px; background: #fff; overflow: auto;
}
@media (min-width: 1024px) { .leczenie-widget { width: 37%; padding: 32px 20px; } }

/* ===================================================
   ZAUFANIE PACJENTOW / DLA KOGO ORTOPEDA (shared carousel sections)
   =================================================== */
.ort-carousel-section {
  position: relative; overflow: hidden;
  background: #2a3240;
  padding-bottom: 80px;
}
@media (min-width: 1024px) { .ort-carousel-section { height: 800px; padding-bottom: 0; } }

.ort-carousel-section video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ort-carousel-section-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(130.8deg, rgba(68,81,101,0.82) 10.5%, rgba(68,81,101,0.35) 54.2%),
    linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 100%);
}
.ort-carousel-overlay-45 {
  background-image:
    linear-gradient(130.8deg, rgba(68,81,101,0.82) 10.5%, rgba(68,81,101,0.35) 54.2%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%);
}

.ort-ellipse {
  pointer-events: none; position: absolute;
  bottom: 0; right: 200px; width: 569px; height: 374px;
  transform: translateY(50%);
}
.ort-ellipse-inner { position: absolute; inset: -40.53% -26.64%; }
.ort-ellipse img { display: block; max-width: none; width: 100%; height: 100%; }

.ort-carousel-heading {
  position: relative; z-index: 10;
  padding: 64px 20px 0;
}
@media (min-width: 640px) { .ort-carousel-heading { padding: 64px 40px 0; } }
@media (min-width: 1024px) { .ort-carousel-heading { position: relative; padding: 92px 40px 0; } }

.ort-carousel-h2 {
  font-weight: 500; font-size: 32px; line-height: 1.2;
  background-clip: text; -webkit-background-clip: text; color: transparent;
  white-space: nowrap;
}
@media (min-width: 640px) { .ort-carousel-h2 { font-size: 40px; } }
@media (min-width: 1024px) { .ort-carousel-h2 { font-size: 48px; } }

.ort-carousel-h2-dla-kogo {
  white-space: normal;
}

.ort-carousel-nav {
  position: absolute; left: 20px; bottom: 24px; z-index: 10;
  display: flex; gap: 15px;
}
@media (min-width: 640px) { .ort-carousel-nav { left: 40px; } }
@media (min-width: 1024px) { .ort-carousel-nav { bottom: 53px; } }

.ort-nav-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: background 0.2s;
}
.ort-nav-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ort-nav-btn.active-btn { background: var(--yellow); }
.ort-nav-btn.active-btn:not(:disabled):hover { background: var(--yellow-dark); }
.ort-nav-btn.inactive-btn { background: var(--gray-mid); opacity: 0.5; cursor: not-allowed; }

.ort-carousel-track {
  display: flex; gap: 40px;
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth; scrollbar-width: none;
  padding: 0 20px 80px;
  align-items: stretch;
}
.ort-carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .ort-carousel-track { padding: 0 40px 80px; } }
@media (min-width: 1024px) {
  .ort-carousel-track {
    position: absolute; right: 0; top: 359px;
    width: calc(100% - 270px);
    height: 344px;
    padding: 0 40px 0 0;
  }
}

.ort-card {
  flex-shrink: 0;
  width: 300px; height: auto;
  backdrop-filter: blur(16px);
  background: rgba(68,81,101,0.2);
  border: 1px solid #63748B;
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .ort-card { width: 350px; } }
@media (min-width: 1024px) { .ort-card { width: 395px; height: 344px; } }

.ort-card-icon {
  position: absolute; top: 24px; right: 24px;
  width: 80px; height: 80px;
}
.ort-card-icon.ort-card-icon-lg { width: 91px; height: 97px; }
.ort-card-icon img { width: 100%; height: 100%; object-fit: contain; }

.ort-card-content {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-weight: 500; font-size: 16px; line-height: 1.5; color: #fff;
}
.ort-card-content p { margin: 0; }
.ort-card-content ul { list-style: disc; padding-left: 20px; margin-top: 4px; }

.ort-card-title {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-weight: 600; font-size: 24px; line-height: 1.3; letter-spacing: 0.54px; color: #fff;
}
@media (min-width: 1024px) { .ort-card-title { font-size: 27px; } }

.ort-card-text-center {
  position: absolute; inset: 24px;
  display: flex; align-items: center;
  font-weight: 600; font-size: 24px; line-height: 1.3; letter-spacing: 0.54px; color: #fff;
}
@media (min-width: 1024px) { .ort-card-text-center { font-size: 27px; } }

/* ===================================================
   PLACOWKI ORTOPEDA
   =================================================== */
.placowki {
  background: var(--bg); overflow: hidden; position: relative;
}
@media (min-width: 1024px) { .placowki { height: 690px; } }

.placowki-heading {
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center;
  max-width: 700px; margin: 0 auto;
  padding: 56px 20px;
}
@media (min-width: 640px) { .placowki-heading { padding: 56px 32px; } }
@media (min-width: 1024px) {
  .placowki-heading {
    position: absolute; top: 93px;
    left: 0; right: 0; margin-left: auto; margin-right: auto;
    padding: 0;
  }
}

.placowki-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.2; color: var(--black);
}
.placowki-h2 span { color: var(--gray-mid); }
@media (min-width: 640px) { .placowki-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .placowki-h2 { font-size: 48px; } }

.placowki-sub {
  font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--black);
}
@media (min-width: 640px) { .placowki-sub { font-size: 16px; } }

.placowki-panels {
  position: relative; display: flex; flex-direction: column;
}
@media (min-width: 1024px) {
  .placowki-panels {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 400px; flex-direction: row;
  }
}

.placowki-unimed {
  position: relative; overflow: hidden;
  background: var(--gray-light);
  padding: 48px 20px; min-height: 340px;
}
@media (min-width: 640px) { .placowki-unimed { padding: 48px 40px; } }
@media (min-width: 1024px) { .placowki-unimed { width: 50%; padding: 0; min-height: 0; } }

.placowki-unimed-title {
  font-weight: 500; font-size: 28px; line-height: 1.15; color: #fff;
}
@media (min-width: 640px) { .placowki-unimed-title { font-size: 36px; } }
@media (min-width: 1024px) {
  .placowki-unimed-title { position: absolute; top: 50px; left: 41px; font-size: 48px; }
}

.placowki-unimed-info {
  margin-top: 32px; display: flex; flex-direction: column; gap: 20px; color: #fff;
}
@media (min-width: 1024px) {
  .placowki-unimed-info {
    position: absolute; bottom: 50px; left: 39px; margin-top: 0;
  }
}

.placowki-szpital {
  position: relative; overflow: hidden;
  background: #48545D;
  padding: 48px 20px; min-height: 340px;
}
@media (min-width: 640px) { .placowki-szpital { padding: 48px 40px; } }
@media (min-width: 1024px) { .placowki-szpital { width: 50%; padding: 0; min-height: 0; } }

.placowki-szpital-deco {
  pointer-events: none; position: absolute;
  bottom: -97px; right: 360px; width: 569px; height: 374px;
}
.placowki-szpital-deco-inner { position: absolute; inset: -40.53% -26.64%; }
.placowki-szpital-deco-inner img { display: block; max-width: none; width: 100%; height: 100%; }

.placowki-szpital-title {
  position: relative;
  font-weight: 500; font-size: 28px; line-height: 1.15; color: #fff;
}
@media (min-width: 640px) { .placowki-szpital-title { font-size: 36px; } }
@media (min-width: 1024px) {
  .placowki-szpital-title { position: absolute; top: 50px; left: 45px; font-size: 48px; }
}

.placowki-szpital-content {
  margin-top: 24px; display: flex; flex-direction: column; gap: 24px; max-width: 422px;
}
@media (min-width: 1024px) {
  .placowki-szpital-content { position: absolute; top: 140px; left: 45px; margin-top: 0; }
}
.placowki-szpital-name {
  font-weight: 600; font-size: 20px; line-height: 1.3; letter-spacing: 0.54px; color: #fff;
}
@media (min-width: 640px) { .placowki-szpital-name { font-size: 24px; } }
@media (min-width: 1024px) { .placowki-szpital-name { font-size: 27px; } }

.placowki-szpital-hours {
  display: flex; align-items: center; gap: 12px;
}
.placowki-szpital-hours-label {
  font-weight: 700; font-size: 13px; letter-spacing: 1.4px;
  text-transform: uppercase; color: #fff; white-space: nowrap;
}
@media (min-width: 1024px) { .placowki-szpital-hours-label { font-size: 14px; } }

.placowki-szpital-registration {
  font-weight: 600; font-size: 18px; line-height: 1.5; color: #fff;
}
@media (min-width: 1024px) { .placowki-szpital-registration { font-size: 20px; } }

/* ===================================================
   JAK WYGLADA WIZYTA
   =================================================== */
.wizyta {
  background: #fff; overflow: hidden;
  padding: 64px 20px;
}
@media (min-width: 640px) { .wizyta { padding: 64px 40px; } }
@media (min-width: 1024px) { .wizyta { padding: 124px 40px; } }

.wizyta-header { text-align: center; margin-bottom: 56px; }
@media (min-width: 1024px) { .wizyta-header { margin-bottom: 189px; } }

.wizyta-h2 {
  font-weight: 500; font-size: 36px; line-height: 1.2; color: var(--black);
}
.wizyta-h2 span { color: var(--gray-mid); }
@media (min-width: 640px) { .wizyta-h2 { font-size: 42px; } }
@media (min-width: 1024px) { .wizyta-h2 { font-size: 48px; } }

.wizyta-sub {
  margin-top: 20px; font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--black);
}
@media (min-width: 640px) { .wizyta-sub { font-size: 16px; } }

/* Desktop timeline */
.wizyta-timeline-desktop {
  display: none;
  align-items: flex-start; justify-content: space-between;
  gap: 16px; max-width: 1252px; margin: 0 auto; position: relative;
}
@media (min-width: 768px) { .wizyta-timeline-desktop { display: flex; } }

.wizyta-timeline-line {
  position: absolute; top: 43px; left: 87px; right: 87px;
  height: 1px; background: rgba(167,178,186,0.5);
}

.wizyta-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center; max-width: 220px;
}

.wizyta-step-icon {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.wizyta-step-icon.first { width: 87px; height: 87px; background: var(--yellow); }
.wizyta-step-icon.rest {
  width: 53px; height: 53px; background: var(--bg);
  border: 2px solid #fff;
}
.wizyta-step-icon.first img { width: 50%; height: 50%; object-fit: contain; }
.wizyta-step-icon.rest img { width: 50%; height: 50%; object-fit: contain; }

.wizyta-step-label {
  font-weight: 700; font-size: 11px; line-height: 1.5; letter-spacing: 1.2px;
  color: var(--gray-dark); text-transform: uppercase;
}
@media (min-width: 640px) { .wizyta-step-label { font-size: 13px; } }
.wizyta-step-desc {
  font-weight: 500; font-size: 14px; line-height: 1.5; color: var(--gray-dark);
}
@media (min-width: 640px) { .wizyta-step-desc { font-size: 15px; } }
@media (min-width: 1024px) { .wizyta-step-desc { font-size: 17px; } }

/* Mobile timeline */
.wizyta-timeline-mobile {
  display: flex; flex-direction: column; gap: 32px;
}
@media (min-width: 768px) { .wizyta-timeline-mobile { display: none; } }

.wizyta-step-mobile { display: flex; gap: 16px; }
.wizyta-step-mobile-icon {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 4px;
}
.wizyta-step-mobile-icon.first { width: 48px; height: 48px; background: var(--yellow); }
.wizyta-step-mobile-icon.rest { width: 40px; height: 40px; background: var(--bg); border: 1px solid var(--gray-light); }
.wizyta-step-mobile-icon img { width: 55%; height: 55%; object-fit: contain; }

.wizyta-step-mobile-label {
  font-weight: 700; font-size: 11px; line-height: 1.5; letter-spacing: 1.2px;
  color: var(--gray-dark); text-transform: uppercase;
}
.wizyta-step-mobile-desc {
  margin-top: 4px; font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--gray-dark);
}

/* ===================================================
   FOOTER ORTOPEDA
   =================================================== */
.footer-ort {
  background: #fff; overflow: hidden; position: relative;
  min-height: 419px;
  display: flex; flex-direction: column; justify-content: space-between;
}

.footer-ort-contacts {
  display: flex; flex-direction: column; align-items: center;
  gap: 48px; padding: 56px 20px 40px;
}
@media (min-width: 640px) { .footer-ort-contacts { flex-direction: row; justify-content: center; gap: 57px; padding: 80px 20px 40px; } }

.footer-ort-contact { display: flex; align-items: center; gap: 32px; }
.footer-ort-contact-icon {
  width: 88px; height: 88px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-ort-contact-icon img { width: 46px; height: 46px; object-fit: contain; }

.footer-ort-contact-label {
  font-weight: 700; font-size: 14px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gray-mid);
}
.footer-ort-contact-value {
  font-weight: 600; font-size: 20px; line-height: 1.5;
  color: var(--black); transition: color 0.2s;
}
.footer-ort-contact-value:hover { color: var(--gray-mid); }

.footer-ort-bar {
  border-top: 1px solid var(--bg);
  padding: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
@media (min-width: 640px) {
  .footer-ort-bar { flex-direction: row; justify-content: space-between; padding: 20px 40px; }
}

.footer-ort-logo-sub {
  font-weight: 700; font-size: 14px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gray-light);
}
.footer-ort-logo-name {
  font-weight: 600; font-size: 27px; letter-spacing: 0.81px; color: var(--gray-mid);
}

.footer-ort-legal {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  font-size: 12px; line-height: 1.5; color: var(--gray-mid);
}
.footer-ort-legal a:hover { text-decoration: underline; }

/* ===================================================
   MISC UTILITY
   =================================================== */
.text-clip-gradient {
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
