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

    :root {
      --green:      #3d6b22;
      --green-dark: #2d4f18;
      --gold:       #c8922a;
      --white:      #ffffff;
      --text:       #222222;
      --nav-h:      72px;
	    --bg:       #f5f7e8;   

    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #f0f0f0;
      padding-top: var(--nav-h);
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 1000;
      transition: box-shadow .3s;
    }
    header.scrolled {
      box-shadow: 0 2px 16px rgba(0,0,0,.12);
    }

    /* ── LOGO ── */
    .logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .logo img {
      height: 48px;
      width: auto;
      display: block;
    }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-size: .95rem;
      font-weight: 500;
      padding: 6px 14px;
      white-space: nowrap;
      position: relative;
      transition: color .2s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 14px; right: 14px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      width: 0;
      transition: width .3s ease;
    }
    nav a:hover { color: var(--green); }
    nav a:hover::after { width: calc(100% - 28px); }

    /* ── SEPARATOR ── */
    .nav-sep {
      width: 1px;
      height: 20px;
      background: #ddd;
      margin: 0 8px;
    }

    /* ── B2B button ── */
    .btn-b2b {
      background: var(--green);
      color: var(--white) !important;
      padding: 7px 20px !important;
      border-radius: 4px;
      font-weight: 600 !important;
      font-size: .9rem !important;
      transition: background .2s, transform .15s !important;
    }
    .btn-b2b::after { display: none !important; }
    .btn-b2b:hover {
      background: var(--green-dark) !important;
      transform: translateY(-1px);
    }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 4px;
    }

    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .88rem;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      padding: 5px 9px;
      border-radius: 4px;
      border: 2px solid transparent;
      background: none;
      transition: background .2s, border-color .2s, color .2s;
      white-space: nowrap;
    }
    .lang-btn:hover { background: #f4f4f4; }
    .lang-btn.active {
      border-color: var(--green);
      color: var(--green);
      font-weight: 700;
    }
    .lang-btn svg {
      flex-shrink: 0;
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    }

    .lang-divider {
      color: #ccc;
      font-size: .9rem;
      user-select: none;
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: .3s;
    }

    /* ── MOBILE ── */
    @media (max-width: 860px) {
      header { padding: 0 20px; }
      .hamburger { display: flex; }

      nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        padding: 12px 20px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
      }
      nav.open { display: flex; }

      nav a {
        width: 100%;
        padding: 13px 4px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
      }
      nav a::after { bottom: 0; left: 0; right: 0; }
      nav a:hover::after { width: 100%; }

      .nav-sep { display: none; }
      .btn-b2b { margin-top: 8px; }
      .lang-switcher { padding: 10px 0 4px; }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      aspect-ratio: 1680 / 638;
      min-height: 320px;
      max-height: 638px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../img/baner.png') center center / cover no-repeat;
      z-index: 0;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.15) 55%,
        rgba(0,0,0,0)   100%
      );
    }

    /* ── TREŚĆ GŁÓWNA ── */
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 6% 5% 0;
      max-width: 560px;
    }

    .hero-content h1 {
      font-size: clamp(1.6rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1.4em;
      text-shadow: 0 2px 8px rgba(0,0,0,.25);
      font-style: italic;
    }

    .btn-cta {
      display: inline-block;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      font-size: clamp(.8rem, 1.4vw, 1rem);
      font-weight: 700;
      padding: .75em 1.8em;
      border-radius: 30px;
      letter-spacing: .03em;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
    }
    .btn-cta:hover {
      background: #a87420;
      transform: translateY(-2px);
    }

    .hero-bar {
      position: relative;
      z-index: 1;
      background: var(--green-dark);
      display: flex;
      align-items: stretch;
    }

    .hero-bar-item {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 1em;
      padding: 1.2em 2em;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .hero-bar-item:last-child { border-right: none; }

    .bar-icon {
      flex-shrink: 0;
      width: clamp(32px, 4vw, 48px);
      height: clamp(32px, 4vw, 48px);
      opacity: .9;
    }

    .bar-text strong {
      display: block;
      font-size: clamp(.75rem, 1.2vw, .95rem);
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: .2em;
    }
    .bar-text span {
      font-size: clamp(.65rem, 1vw, .82rem);
      color: rgba(255,255,255,.7);
      line-height: 1.4;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 700px) {
      .hero { aspect-ratio: auto; min-height: 280px; max-height: none; }
      .hero-content { padding: 32px 20px 20px; }

      .hero-bar {
        flex-direction: column;
      }
      .hero-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: 1em 1.2em;
      }
      .hero-bar-item:last-child { border-bottom: none; }
    }
	
    /* ── SEKCJA ── */
 .oferta {
      background: var(--bg) url('../img/tlo-oferta.png') center top / cover no-repeat;
      padding: 60px 5%;
    }
 
    .oferta h2 {
      text-align: center;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--green-dark);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 48px;
      position: relative;
    }

    .oferta h2::before,
    .oferta h2::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 18%;
      height: 2px;
      background: var(--gold);
    }
    .oferta h2::before { left: 5%; }
    .oferta h2::after  { right: 5%; }
 
    /* ── GRID ── */
    .oferta-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    /* ── KARTA ── */
    .oferta-card {
      background: var(--white);
      border-radius: 12px;
      overflow: visible;       
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
      transition: transform .25s, box-shadow .25s;
    }
    .oferta-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 28px rgba(0,0,0,.13);
    }
 
    /* zdjęcie */
    .oferta-card-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;       
      background: #eee;
      border-radius: 12px 12px 0 0;
      position: relative;
    }
    .oferta-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s;
    }
    .oferta-card:hover .oferta-card-img img {
      transform: scale(1.05);
    }
 
     .oferta-card-icon {
      position: relative;
      z-index: 2;
      width: 48px;
      height: 48px;
      background: var(--green-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,.25);
      margin: -24px auto 0;
      flex-shrink: 0;
    }
    .oferta-card-icon svg {
      width: 22px;
      height: 22px;
    }
 
    .oferta-card-body {
      padding: 30px 20px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
 
    .oferta-card-body h3 {
      font-size: .95rem;
      font-weight: 800;
      color: var(--green-dark);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 10px;
    }
 
    .oferta-card-body p {
      font-size: .88rem;
      color: #444;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 16px;
    }
 
    .oferta-card-body a {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: .85rem;
      font-weight: 700;
      color: var(--green);
      text-decoration: none;
      transition: gap .2s, color .2s;
    }
    .oferta-card-body a:hover {
      color: var(--gold);
      gap: 8px;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .oferta-grid { grid-template-columns: repeat(2, 1fr); }
      .oferta h2::before,
      .oferta h2::after { width: 8%; }
    }
    @media (max-width: 500px) {
      .oferta-grid { grid-template-columns: 1fr; }
      .oferta h2::before,
      .oferta h2::after { display: none; }
    }
	
	    /* ── SEKCJA GŁÓWNA ── */
    .o-firmie {
      background: url('../img/tlo-o-firmie.png') center center / cover no-repeat;
      padding: 60px 6%;
      position: relative;
    }
 
    .o-firmie-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: center;
    }
 
    /* ── LEWA: TEKST ── */
    .o-firmie-text .section-label {
      display: block;
      text-align: center;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--green-dark);
      margin-bottom: 1.5rem;
      position: relative;
    }
    /* linie po bokach "O FIRMIE" */
    .o-firmie-text .section-label::before,
    .o-firmie-text .section-label::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 30%;
      height: 2px;
      background: var(--gold);
    }
    .o-firmie-text .section-label::before { left: 0; }
    .o-firmie-text .section-label::after  { right: 0; }
 
    .o-firmie-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 900;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }
 
    .o-firmie-text p {
      font-size: .95rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 1.1rem;
    }
    .o-firmie-text p:last-of-type {
      margin-bottom: 2rem;
    }
 
    .btn-contact {
      display: inline-block;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 700;
      padding: .75em 2em;
      border-radius: 30px;
      transition: background .2s, transform .15s;
    }
    .btn-contact:hover {
      background: #a87420;
      transform: translateY(-2px);
    }
 
    /* ── PRAWA: OKRĄGŁE ZDJĘCIE ── */
    .o-firmie-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
 
    /* zewnętrzna dekoracyjna obwódka — dwa łuki jak w projekcie */
    .circle-deco {
      position: relative;
      width: 380px;
      height: 380px;
    }
 
    /* obracający się łuk dekoracyjny */
    .circle-deco::before,
    .circle-deco::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 3px solid transparent;
    }
    .circle-deco::before {
      border-top-color: var(--gold);
      border-right-color: var(--gold);
      transform: rotate(-30deg);
    }
    .circle-deco::after {
      border-bottom-color: var(--green-dark);
      border-left-color: var(--green-dark);
      transform: rotate(-30deg);
    }
 
    /* samo zdjęcie w kółku */
    .circle-img {
      position: absolute;
      inset: 16px;
      border-radius: 50%;
      overflow: hidden;
      background: #ddd;
    }
    .circle-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
    /* ── PASEK STATYSTYK ── */
    .o-firmie-stats {
      background: var(--green-dark);
      padding: 32px 6%;
    }
 
    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
 
    .stat-item {
      display: flex;
      align-items: center;
      gap: 20px;
    }
 
    .stat-icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      opacity: .9;
    }
 
    .stat-text strong {
      display: block;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: .2rem;
    }
 
    .stat-text span {
      font-size: .78rem;
      font-weight: 700;
      color: rgba(255,255,255,.7);
      text-transform: uppercase;
      letter-spacing: .1em;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .o-firmie-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .o-firmie-visual {
        order: -1;
      }
      .circle-deco {
        width: 280px;
        height: 280px;
      }
      .stats-inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .o-firmie-text .section-label::before,
      .o-firmie-text .section-label::after { width: 20%; }
    }
 
    @media (max-width: 500px) {
      .circle-deco { width: 220px; height: 220px; }
    }
	    /* ── SEKCJA KONTAKT ── */
    .kontakt {
		margin-top: 20px;
      background: url('../img/tlo-o-firmie.png') center top / cover no-repeat;
      padding: 60px 6%;
    }
 
    .kontakt-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
 
    /* tytuł */
    .section-label {
      display: block;
      text-align: center;
      font-size: .85rem;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--green-dark);
      margin-bottom: 48px;
      position: relative;
    }
    .section-label::before,
    .section-label::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 35%;
      height: 2px;
      background: var(--gold);
    }
    .section-label::before { left: 0; }
    .section-label::after  { right: 0; }
 
    /* grid 3 kolumny */
    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap: 40px;
      align-items: start;
    }
 
    /* ── KOLUMNA LEWA ── */
    .col-dane h3 {
      font-size: .78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--green-dark);
      margin-bottom: .5rem;
    }
    .col-dane address {
      font-style: normal;
      font-size: .88rem;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 1.6rem;
    }
 
    /* pinezka mapy */
    .mapa-pin {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.8rem;
      color: var(--text);
      font-size: .85rem;
      font-weight: 600;
    }
    .mapa-pin svg { flex-shrink: 0; }
 
    /* kontakty działowe */
    .dzial {
      margin-bottom: 1.2rem;
    }
    .dzial strong {
      display: block;
      font-size: .82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--green-dark);
      margin-bottom: .2rem;
    }
    .dzial a {
      display: block;
      font-size: .88rem;
      color: var(--text);
      text-decoration: none;
      transition: color .2s;
    }
    .dzial a:hover { color: var(--gold); }
 
    /* ── KOLUMNA ŚRODKOWA ── */
    .col-handlowe {
      background: rgba(245, 240, 220, 0.85);
      border-radius: 12px;
      padding: 28px 24px;
      backdrop-filter: blur(4px);
    }
 
    .handlowy-dzial {
      margin-bottom: 1.6rem;
      padding-bottom: 1.6rem;
      border-bottom: 1px solid rgba(200,146,42,.2);
    }
    .handlowy-dzial:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
 
    .handlowy-dzial h3 {
      font-size: .82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--green-dark);
      margin-bottom: .8rem;
    }
 
    .handlowy-osoba {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2px 12px;
      margin-bottom: .7rem;
      align-items: start;
    }
    .handlowy-osoba:last-child { margin-bottom: 0; }
 
    .handlowy-osoba .nazwa {
      font-size: .83rem;
      color: var(--text);
      grid-column: 1;
    }
    .handlowy-osoba .region {
      font-size: .78rem;
      font-weight: 700;
      color: var(--gold);
      grid-column: 2;
      grid-row: 1 / 3;
      align-self: center;
      white-space: nowrap;
    }
    .handlowy-osoba a {
      font-size: .88rem;
      font-weight: 700;
      color: var(--green-dark);
      text-decoration: none;
      grid-column: 1;
      transition: color .2s;
    }
    .handlowy-osoba a:hover { color: var(--gold); }
 
    /* ── KOLUMNA PRAWA: FORMULARZ ── */
    .col-formularz h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 1.2rem;
    }
 
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }
    .form-row.full { grid-template-columns: 1fr; }
 
    .form-row input,
    .form-row textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: .88rem;
      font-family: inherit;
      background: rgba(255,255,255,.85);
      color: var(--text);
      transition: border-color .2s;
      outline: none;
    }
    .form-row input:focus,
    .form-row textarea:focus {
      border-color: var(--gold);
    }
    .form-row textarea {
      resize: vertical;
      min-height: 100px;
    }
 
    .form-zgoda {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 12px 0 16px;
      font-size: .78rem;
      color: #555;
      line-height: 1.5;
    }
    .form-zgoda input[type="checkbox"] {
      margin-top: 2px;
      flex-shrink: 0;
      accent-color: var(--green);
    }
 
    .btn-submit {
      display: inline-block;
      background: var(--gold);
      color: var(--white);
      border: none;
      cursor: pointer;
      font-size: .95rem;
      font-weight: 700;
      font-family: inherit;
      padding: .7em 2.2em;
      border-radius: 30px;
      transition: background .2s, transform .15s;
    }
    .btn-submit:hover {
      background: #a87420;
      transform: translateY(-2px);
    }
 
    /* ── PASEK STOPKI ── */
    .kontakt-bar {
      background: var(--green-dark);
      padding: 20px 6%;
    }
 
    .kontakt-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
 
    .bar-ows {
      display: inline-flex;
      align-items: center;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      font-size: .88rem;
      font-weight: 700;
      padding: .55em 1.6em;
      border-radius: 30px;
      transition: background .2s;
    }
    .bar-ows:hover { background: #a87420; }
 
    .bar-social {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .bar-social a {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--white);
      font-size: .9rem;
      font-weight: 600;
      transition: opacity .2s;
    }
    .bar-social a:hover { opacity: .75; }
 
    .social-icon {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
 
    .bar-cta {
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 900;
      color: var(--white);
      letter-spacing: .03em;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .kontakt-grid {
        grid-template-columns: 1fr 1fr;
      }
      .col-formularz {
        grid-column: 1 / -1;
      }
    }
 
    @media (max-width: 600px) {
      .kontakt-grid { grid-template-columns: 1fr; }
      .col-formularz { grid-column: auto; }
      .section-label::before,
      .section-label::after { width: 18%; }
      .kontakt-bar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
      .form-row { grid-template-columns: 1fr; }
    }
	
	    /* ══════════════════════════════
       STOPKA
    ══════════════════════════════ */
    footer {
      background: var(--green-dark);
      color: rgba(255,255,255,.75);
      padding: 48px 6% 0;
    }
 
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
 
    /* logo + opis */
    .footer-brand img {
      height: 44px;
      width: auto;
      margin-bottom: 16px;
      filter: brightness(0) invert(1);
      opacity: .9;
    }
    .footer-brand p {
      font-size: .85rem;
      line-height: 1.75;
      max-width: 280px;
      margin-bottom: 20px;
    }
    .footer-social {
      display: flex;
      gap: 10px;
    }
    .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .footer-social a:hover { background: var(--gold); }
 
    /* kolumny linków */
    .footer-col h4 {
      font-size: .75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      font-size: .87rem;
      color: rgba(255,255,255,.7);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--white); }
 
    /* adres */
    .footer-col address {
      font-style: normal;
      font-size: .87rem;
      line-height: 1.85;
      color: rgba(255,255,255,.7);
    }
    .footer-col address strong {
      display: block;
      color: var(--white);
      margin-bottom: 4px;
    }
 
    /* pasek dolny */
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: .78rem;
      color: rgba(255,255,255,.45);
    }
    .footer-bottom a {
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-bottom a:hover { color: var(--white); }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
 
    /* ══════════════════════════════
       BANER COOKIES
    ══════════════════════════════ */
    #cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: var(--green-dark);
      color: rgba(255,255,255,.85);
      padding: 16px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      box-shadow: 0 -4px 20px rgba(0,0,0,.2);
      transform: translateY(0);
      transition: transform .4s ease;
    }
    #cookie-banner.hidden {
      transform: translateY(110%);
    }
 
    .cookie-text {
      flex: 1;
      min-width: 260px;
      font-size: .83rem;
      line-height: 1.6;
    }
    .cookie-text strong {
      display: block;
      color: var(--white);
      font-size: .9rem;
      margin-bottom: 4px;
    }
    .cookie-text a {
      color: var(--gold);
      text-decoration: underline;
    }
 
    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }
 
    .btn-cookie {
      padding: .55em 1.4em;
      border-radius: 30px;
      font-size: .85rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      border: none;
      transition: background .2s, transform .15s;
    }
    .btn-cookie:hover { transform: translateY(-1px); }
 
    .btn-cookie-accept {
      background: var(--gold);
      color: var(--white);
    }
    .btn-cookie-accept:hover { background: #a87420; }
 
    .btn-cookie-necessary {
      background: rgba(255,255,255,.12);
      color: var(--white);
      border: 1px solid rgba(255,255,255,.25) !important;
    }
    .btn-cookie-necessary:hover { background: rgba(255,255,255,.2); }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
      .footer-brand {
        grid-column: 1 / -1;
      }
    }
    @media (max-width: 500px) {
      .footer-inner { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
	 /* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 1000;
      transition: box-shadow .3s;
    }
    header.scrolled {
      box-shadow: 0 2px 16px rgba(0,0,0,.12);
    }
 
    /* ── LOGO ── */
    .logo {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .logo img {
      height: 48px;
      width: auto;
      display: block;
    }
    .logo-certs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 20px;
      padding-left: 20px;
      border-left: 1px solid #ddd;
    }
    .logo-certs img {
      height: 36px;
      width: auto;
      display: block;
    }
 
    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }
 
    nav a {
      text-decoration: none;
      color: var(--text);
      font-size: .95rem;
      font-weight: 500;
      padding: 6px 14px;
      white-space: nowrap;
      position: relative;
      transition: color .2s;
    }
    /* animowana linia pod linkiem */
    nav a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 14px; right: 14px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      width: 0;
      transition: width .3s ease;
    }
    nav a:hover { color: var(--green); }
    nav a:hover::after { width: calc(100% - 28px); }
 
    /* ── SEPARATOR ── */
    .nav-sep {
      width: 1px;
      height: 20px;
      background: #ddd;
      margin: 0 8px;
    }
 
    /* ── B2B button ── */
    .btn-b2b {
      background: var(--green);
      color: var(--white) !important;
      padding: 7px 20px !important;
      border-radius: 4px;
      font-weight: 600 !important;
      font-size: .9rem !important;
      transition: background .2s, transform .15s !important;
    }
    .btn-b2b::after { display: none !important; }
    .btn-b2b:hover {
      background: var(--green-dark) !important;
      transform: translateY(-1px);
    }
 
    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: 4px;
    }
 
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .88rem;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      padding: 5px 9px;
      border-radius: 4px;
      border: 2px solid transparent;
      background: none;
      transition: background .2s, border-color .2s, color .2s;
      white-space: nowrap;
    }
    .lang-btn:hover { background: #f4f4f4; }
    .lang-btn.active {
      border-color: var(--green);
      color: var(--green);
      font-weight: 700;
    }
    .lang-btn svg {
      flex-shrink: 0;
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(0,0,0,.1);
    }
 
    .lang-divider {
      color: #ccc;
      font-size: .9rem;
      user-select: none;
    }
 
    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: .3s;
    }
 
    /* ── MOBILE ── */
    @media (max-width: 860px) {
      header { padding: 0 20px; }
      .hamburger { display: flex; }
 
      nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        padding: 12px 20px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
      }
      nav.open { display: flex; }
 
      nav a {
        width: 100%;
        padding: 13px 4px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
      }
      nav a::after { bottom: 0; left: 0; right: 0; }
      nav a:hover::after { width: 100%; }
 
      .nav-sep { display: none; }
      .btn-b2b { margin-top: 8px; }
      .lang-switcher { padding: 10px 0 4px; }
    }
 
