/* ===================== RESET & ROOT ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #1A3A6B;
  --navy-dark:  #0F2240;
  --blue:       #2D8FD4;
  --blue-light: #E8F4FD;
  --blue-mid:   #B5D4F4;
  --white:      #FFFFFF;
  --text:       #1A1A2E;
  --text-muted: #5F6B7A;
  --gold:       #E8A33D;
  --radius:     12px;
  --shadow:     0 2px 20px rgba(26,58,107,0.08);
  --shadow-md:  0 8px 40px rgba(26,58,107,0.14);
  --transition: 0.22s ease;
  --font: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
.eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 560px; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #2278b8; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(45,143,212,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,58,107,0.12);
  transition: all var(--transition);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; margin-right: auto; min-width: 0; }
.nav-logo-img { width: clamp(190px, 22vw, 285px); height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { padding: 0.5rem 0.85rem; color: var(--navy); font-size: 0.88rem; font-weight: 600; border-radius: 6px; transition: all var(--transition); white-space: nowrap; position: relative; }
.nav-link:hover { color: var(--blue); background: var(--blue-light); }
.nav-soon { font-size: 0.68rem; background: var(--blue-light); color: var(--blue); padding: 1px 6px; border-radius: 4px; margin-left: 0.25rem; }
.nav-cta { display: flex; align-items: center; gap: 0.4rem; background: var(--blue); color: var(--white); padding: 0.55rem 1.1rem; border-radius: 7px; font-weight: 700; font-size: 0.9rem; transition: all var(--transition); white-space: nowrap; margin-left: 0.5rem; }
.nav-cta:hover { background: #2278b8; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; background: var(--white); padding: 1rem 1.5rem 1.5rem; flex-direction: column; gap: 0.25rem; box-shadow: 0 16px 30px rgba(26,58,107,0.12); border-top: 1px solid #EEF3F8; }
.mobile-menu.open { display: flex; }
.mobile-link { color: var(--navy); padding: 0.65rem 0; font-size: 0.95rem; font-weight: 600; border-bottom: 1px solid #EEF3F8; }
.mobile-link:last-child { border-bottom: none; }
.mobile-cta { margin-top: 0.75rem; background: var(--blue); color: var(--white); text-align: center; padding: 0.85rem; border-radius: 8px; font-weight: 700; font-size: 1rem; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4d8c 50%, #2D8FD4 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(45,143,212,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.06; background: var(--white); }
.hero-shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -50px; right: 200px; }
.hero-shape-3 { width: 200px; height: 200px; top: 30%; left: -60px; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 0.4rem 0.9rem; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; backdrop-filter: blur(8px); }
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-trust-item svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.hero-card-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.hero-card-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.hero-card-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.hero-nfz-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--navy-dark); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.82rem; font-weight: 700; margin-top: 0.75rem; }

/* Wave divider */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; background: var(--navy); }
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* ===================== SECTIONS SHARED ===================== */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0.75rem auto 0; }

/* ===================== WYRÓŻNIKI ===================== */
.features { background: transparent; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card { text-align: center; padding: 2rem 1.25rem; border-radius: var(--radius); border: 1px solid #EEF3F8; transition: all var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-mid); }
.feature-icon { width: 60px; height: 60px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.6rem; }
.feature-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ===================== OFERTA ===================== */
.oferta { background: transparent; position: relative; }
.oferta .section-inner { position: relative; z-index: 1; }
.oferta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.oferta-card {display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.oferta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.oferta-card-top { background: var(--navy); padding: 1.75rem 1.5rem; }
.oferta-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.oferta-card-title { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.oferta-card-subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }
.oferta-card-body {flex: 1; padding: 1.5rem; }
.oferta-list { display: flex; flex-direction: column; gap: 0.55rem; }
.oferta-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; }
.oferta-list li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 0.45em; }
.oferta-card-cta { display: block; margin: auto 1.5rem 1.5rem; padding: 0.7rem; background: var(--blue-light); color: var(--navy); font-weight: 700; font-size: 0.88rem; border-radius: 8px; text-align: center; transition: all var(--transition); }
.oferta-card-cta:hover { background: var(--blue); color: var(--white); }

/* ===================== NFZ BANER ===================== */
.nfz-section { background: var(--navy); position: relative; overflow: hidden; }
.nfz-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(45,143,212,0.3) 0%, transparent 70%); pointer-events: none; }
.nfz-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.nfz-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.nfz-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.nfz-title span { color: var(--gold); }
.nfz-desc { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 2rem; }
.nfz-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.nfz-step { display: flex; align-items: flex-start; gap: 1rem; }
.nfz-step-num { width: 32px; height: 32px; background: var(--gold); color: var(--navy-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.nfz-step-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; padding-top: 0.35rem; }
.nfz-step-text strong { color: var(--white); display: block; font-weight: 700; margin-bottom: 0.1rem; }
.nfz-cards { display: flex; flex-direction: column; gap: 1rem; }
.nfz-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.5rem; backdrop-filter: blur(8px); }
.nfz-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.nfz-card-badge { background: var(--gold); color: var(--navy-dark); font-weight: 800; font-size: 0.85rem; padding: 0.2rem 0.7rem; border-radius: 6px; }
.nfz-card-title { font-weight: 700; color: var(--white); font-size: 1rem; }
.nfz-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ===================== WYRÓŻNIONE PRODUKTY ===================== */
.featured-products { background: var(--navy); position: relative; overflow: hidden; }
.featured-products::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(45,143,212,0.28) 0%, transparent 70%); pointer-events: none; }
.featured-products .section-inner { position: relative; z-index: 1; }
.featured-products .section-title { color: var(--white); }
.featured-products .section-desc { color: rgba(255,255,255,0.68); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.featured-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(15,34,64,0.24); transition: all var(--transition); }
.featured-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.22); }
.featured-image { height: 300px; background: var(--white); overflow: hidden; }
.featured-image img { width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; }
.featured-body { padding: 1.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem;}
.featured-title { min-height: 2em; font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1.3; }
.featured-card .btn { background: var(--gold); color: var(--navy-dark); }
.featured-card .btn:hover { background: #f0b45a; box-shadow: 0 6px 24px rgba(232,163,61,0.28); }
#schodolaz { background-color: #E8A33D; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(15,34,64,0.24); transition: all var(--transition); }
#schodolaz .btn{background-color: #1e4d8c; color: white;}
#MDH-text{color: #E8A33D; font-size: 1.1em;}
#MDH-link{font-weight: bold; transition: all 0.3s ease;}
#schodolaz-producent-wrzutka{font-size: 1.25rem;}

/* ===================== MARKI ===================== */
.marki { background: transparent; padding: 4rem 1.5rem; }
.marki-inner { max-width: 1200px; margin: 0 auto; }
.marki-header { text-align: center; margin-bottom: 2.5rem; }
.marki-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: center; }
.marka-item { display: flex; align-items: center; justify-content: center; padding: 1rem 1.5rem; border: 1px solid var(--blue-mid); border-radius: 10px; font-weight: 700; font-size: 0.88rem; color: var(--navy); background: var(--blue-light); min-height: 60px; letter-spacing: 0.02em; }
.marki-note { text-align: center; margin-top: 1.5rem; font-size: 0.82rem; color: var(--text-muted); }

/* ===================== GABINETY ===================== */
.gabinety { background: var(--blue-light); position: relative; }
.gabinety-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.gabinety-visual { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); }
.gabinety-stat { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #EEF3F8; }
.gabinety-stat:last-child { border-bottom: none; }
.gabinety-stat-icon { font-size: 1.5rem; width: 44px; text-align: center; flex-shrink: 0; }
.gabinety-stat-text { font-size: 0.9rem; color: var(--text-muted); }
.gabinety-stat-text strong { display: block; color: var(--navy); font-weight: 700; font-size: 0.95rem; }
.gabinety-content .section-desc { margin-bottom: 1.5rem; }
.gabinety-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.gabinety-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text); }
.gabinety-feature::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ===================== ZESPÓŁ ===================== */
.zespol { background: transparent; position: relative; padding: 5rem 1.5rem; }
.zespol-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.zespol-header { text-align: center; margin-bottom: 3rem; }
.zespol-grid { display: flex; flex-direction: column; gap: 2rem; max-width: 1160px; margin: 0 auto; }
.zespol-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.zespol-tile { width: clamp(220px, 26vw, 360px); aspect-ratio: 1 / 1; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); transition: all var(--transition); }
.zespol-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(15,34,64,0.22); }
.zespol-tile-btn { display: block; width: 100%; height: 100%; padding: 0; border: none; background: none; cursor: zoom-in; }
.zespol-tile-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.zespol-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== LIGHTBOX ZESPOŁU ===================== */
.lightbox { position: fixed; inset: 0; background: rgba(15,34,64,0.92); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ===================== KONTAKT ===================== */
.kontakt { background: var(--navy); }
.kontakt-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; }
.kontakt-header { text-align: center; margin-bottom: 3rem; }
.kontakt-header .section-title { color: var(--white); }
.kontakt-header .section-desc { color: rgba(255,255,255,0.65); margin: 0.75rem auto 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.kontakt-info { display: flex; flex-direction: column; gap: 1rem; }
.kontakt-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.5rem; transition: all var(--transition); }
.kontakt-card:hover { background: rgba(255,255,255,0.11); }
.kontakt-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.kontakt-card-value { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.kontakt-card-value a { color: var(--white); }
.kontakt-card-value a:hover { color: var(--gold); }
.kontakt-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.kontakt-map { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 300px; border: 1px solid rgba(255,255,255,0.12); }
.kontakt-map iframe { width: 100%; height: 100%; min-height: 300px; border: none; display: block; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-dark); padding: 2.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-icon { width: 30px; height: 30px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 16px; height: 16px; fill: white; }
.footer-logo-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.footer-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-link { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-soon { font-size: 0.72rem; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); padding: 2px 8px; border-radius: 4px; }
#creator{
  font-size: 0.8em;
  color: #5F6B7A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3em;

  /* Mental-code note to myself: Remember that, align-items is vertical, justify-content is horizontal */
  a{
    color: #E8A33D;
  }
}

/* ===================== RESPONSIVE ===================== */
/* ===================== DEKORACYJNE TŁA ===================== */
.bg-decor { position: absolute; pointer-events: none; overflow: hidden; inset: 0; z-index: 0; }
.bg-decor > * { position: absolute; }

/* Krzyżyki / plusy */
.decor-cross { width: 20px; height: 20px; opacity: 0.12; }
.decor-cross::before, .decor-cross::after { content: ''; position: absolute; background: var(--blue); border-radius: 2px; }
.decor-cross::before { width: 100%; height: 3px; top: 50%; left: 0; transform: translateY(-50%); }
.decor-cross::after  { width: 3px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

/* Kółka */
.decor-circle { border-radius: 50%; border: 2px solid var(--blue); opacity: 0.1; }
.decor-circle.filled { background: var(--blue); border: none; opacity: 0.07; }

/* Siatka kropek */
.decor-dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.12;
}

/* Fala / łuk */
.decor-arc { border-radius: 50%; border: 2px solid var(--blue-mid); opacity: 0.18; }

/* Trójkąt */
.decor-tri { width: 0; height: 0; opacity: 0.07; border-left: 30px solid transparent; border-right: 30px solid transparent; border-bottom: 52px solid var(--blue); }

/* Linia */
.decor-line { height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: 0.15; border-radius: 2px; }

/* sekcje z position:relative dla bg-decor */
.features, .marki { position: relative; }
.features .section-inner, .marki .marki-inner { position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .marki-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 4rem; }
  .hero-visual { display: none; }
  .oferta-grid { grid-template-columns: 1fr; }
  .nfz-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-image { height: 260px; }
  .featured-title { min-height: auto; }
  .gabinety-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .marki-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .zespol-grid { gap: 1.5rem; }
  .zespol-row { flex-direction: column; align-items: center; gap: 1.5rem; }
  .zespol-tile { width: min(75vw, 320px); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .zespol-grid { gap: 1.1rem; }
  .zespol-row { gap: 1.1rem; }
  .zespol-tile { width: min(80vw, 260px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media (min-width:1024px){

.desktop-medical-bg{

    position:relative;

    overflow:hidden;

}

.desktop-medical-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("grafiki-i-zdjecia/nd-bg.png") center top / cover no-repeat;

    opacity:.30;

    z-index:0;

}

.desktop-medical-bg>*{

    position:relative;

    z-index:1;

}

}

@media (min-width:1024px){

.features .bg-decor,
.oferta .bg-decor,
.zespol .bg-decor,
.marki .bg-decor{

    display:none;

}

}
