/* =========================================================
   KRZEPKI RZEPAK — wspólny arkusz stylów (design system)
   Wszystkie klasy i zmienne namespace'owane prefiksem apa- / --apa-
   Kompatybilne z WordPress + Divi 5 (Code Module / Shortcode)
   ========================================================= */

/* ====== DESIGN SYSTEM — tokeny globalne ====== */
:root {
  --apa-blue:        #2f7bd6;
  --apa-blue-dark:   #1f5fa8;
  --apa-green:       #2e8b3a;
  --apa-green-dark:  #1e7a2e;
  --apa-ink:         #1a1c1e;   /* ciemny tekst / "Konkurs" */
  --apa-white:       #ffffff;

  --apa-container:   1200px;
  --apa-radius:      12px;
  --apa-radius-pill: 8px;

  /* stack systemowy — brandowy font mozna podpiac osobno (patrz README) */
  --apa-font: "Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* ====== Fundamenty wspoldzielone przez wszystkie sekcje ====== */
.apa-section {
  position: relative;
  font-family: var(--apa-font);
  box-sizing: border-box;
}
.apa-section *,
.apa-section *::before,
.apa-section *::after { box-sizing: border-box; }

.apa-container {
  max-width: var(--apa-container);
  margin: 0 auto;
  padding-inline: 24px;
  width: 100%;
}

/* ====== Przycisk (komponent wielokrotnego uzytku) ====== */
.apa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--apa-radius);
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color .2s ease, transform .2s ease;
}
.apa-button--green { background: var(--apa-green); color: var(--apa-white); }
.apa-button--green:hover { background: var(--apa-green-dark); transform: translateY(-1px); }

/* ====== Nawigacja ====== */
.apa-navbar { background: var(--apa-white); }
.apa-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.apa-logo { display: inline-flex; align-items: center; }
.apa-logo__img { display: block; height: 56px; width: auto; }

.apa-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.apa-nav__link {
  font-weight: 700;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  text-decoration: none;
  color: var(--apa-ink);
  transition: color .2s ease;
}
.apa-nav__link--active { color: var(--apa-blue); }
.apa-nav__link:hover { color: var(--apa-blue); }

/* ====== Hero ====== */
.apa-hero__media {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 60vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.apa-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.apa-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(40px, 8vh, 96px);
}
.apa-hero__title {
  margin: 0;
  color: var(--apa-blue);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .5px;
  font-size: clamp(2rem, 6vw, 4.5rem);
  text-shadow: 0 2px 12px rgba(255, 255, 255, .35);
}
.apa-hero__divider {
  display: block;
  width: clamp(90px, 12vw, 150px);
  height: 6px;
  border-radius: 4px;
  background: var(--apa-white);
  margin: clamp(18px, 3vh, 32px) auto;
}
.apa-hero__subtitle {
  margin: 0;
  color: var(--apa-white);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.4rem, 4vw, 3rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

/* Wskaznik scrollowania */
.apa-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--apa-radius);
  background: var(--apa-white);
  color: var(--apa-green);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  transition: transform .2s ease;
}
.apa-hero__scroll:hover { transform: translate(-50%, 60%); }
.apa-icon { display: block; }

/* ====== Responsywnosc ====== */
@media (max-width: 980px) {
  .apa-hero__title { font-size: clamp(1.8rem, 7vw, 3rem); }
}
@media (max-width: 768px) {
  .apa-navbar__inner { flex-wrap: wrap; row-gap: 14px; justify-content: center; }
  .apa-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .apa-logo__img { height: 48px; }
  .apa-hero__scroll { width: 48px; height: 48px; }
}

/* =========================================================
   KOMPONENTY WSPÓLNE — dokładane w kolejnych sekcjach
   ========================================================= */

/* Sekcja z odstępami pionowymi (blokowa) */
.apa-section--pad { padding-block: clamp(48px, 7vw, 96px); }
.apa-section--tint { background: #f7f9fb; }

/* Nagłówek sekcji z bocznymi liniami + dwukolorowy */
.apa-heading {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  margin: 0 auto clamp(32px, 5vw, 56px);
  max-width: 900px;
}
.apa-heading::before, .apa-heading::after {
  content: ""; height: 2px; flex: 1; max-width: 170px;
  background: var(--apa-green);
}
.apa-heading__title {
  margin: 0; text-align: center; line-height: 1.2;
  font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.3rem);
}
.apa-heading__title .apa-green { color: var(--apa-green-dark); }
.apa-heading__title .apa-blue  { color: var(--apa-blue); }

/* Karta wielokrotnego użytku */
.apa-card {
  background: var(--apa-white);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 8px 24px rgba(20, 40, 80, .08);
}
.apa-card--dashed { border: 1px dashed #cdd6e0; box-shadow: 0 10px 26px rgba(20,40,80,.06); }
.apa-card__title { margin: 0 0 12px; font-weight: 800; font-size: clamp(1.15rem,1.6vw,1.4rem); color: var(--apa-blue); line-height: 1.15; }
.apa-card__text  { margin: 0; color: #33414f; font-size: clamp(.9rem,1vw,1rem); line-height: 1.5; }
.apa-card__text strong { font-weight: 700; }

/* Uniwersalny grid kolumnowy */
.apa-grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.apa-grid--3 { grid-template-columns: repeat(3, 1fr); }
.apa-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Warianty przycisku */
.apa-button--blue  { background: var(--apa-blue);  color: #fff; }
.apa-button--blue:hover  { background: var(--apa-blue-dark); transform: translateY(-1px); }
.apa-button--green-dark { background: var(--apa-green-dark); color: #fff; }
.apa-button--green-dark:hover { background: #16621f; transform: translateY(-1px); }
.apa-button--wide { width: 100%; }

/* Znaczniki tak/nie */
.apa-mark { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 6px; flex: 0 0 auto; }
.apa-mark--yes { background: var(--apa-green-dark); color: #fff; }
.apa-mark--no  { background: #e23b3b; color: #fff; }

/* =========================================================
   SEKCJA 02 — Jak uzyskać krzepki rzepak
   ========================================================= */
.apa-plant { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(16px, 3vw, 40px); }
.apa-plant__col { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 40px); }
.apa-plant__img { width: clamp(180px, 22vw, 300px); height: auto; display: block; margin: 0 auto; }
.apa-feature { display: flex; gap: 16px; align-items: flex-start; }
.apa-feature__media { flex: 0 0 auto; width: 90px; height: 100px; object-fit: contain; }
.apa-feature__body { min-width: 0; }
.apa-feature__title { color: var(--apa-blue); font-weight: 800; font-size: clamp(1.1rem,1.5vw,1.35rem); margin: 0 0 8px; line-height: 1.1; }
.apa-feature__text { margin: 0; font-size: clamp(.85rem,.95vw,.95rem); line-height: 1.45; color: #33414f; }
.apa-feature__text strong { color: var(--apa-green-dark); }
.apa-feature--danger .apa-feature__text { color: #c0392b; }
.apa-feature--danger .apa-feature__text strong { color: #c0392b; }
.apa-feature__measure { display: inline-block; margin-top: 6px; font-weight: 800; color: var(--apa-green-dark); }
.apa-feature__badge { position: relative; }
.apa-feature__badge::after {
  content: ""; position: absolute; top: -6px; left: -6px; width: 34px; height: 34px;
  border-radius: 8px; background: #e23b3b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E") center/18px no-repeat;
}

/* =========================================================
   SEKCJA 03 — 5 składników (akordeon natywny <details>)
   ========================================================= */
.apa-acc { display: flex; flex-direction: column; gap: 14px; }
.apa-acc__item { background: var(--apa-blue); border-radius: 18px; color: #fff; overflow: hidden; }
.apa-acc__item[open] { box-shadow: 0 14px 30px rgba(20,40,80,.18); }
.apa-acc__head { list-style: none; cursor: pointer; display: flex; align-items: center; gap: clamp(16px,3vw,40px); padding: clamp(14px,2vw,22px) clamp(18px,3vw,32px); }
.apa-acc__head::-webkit-details-marker { display: none; }
.apa-acc__num { font-weight: 800; font-size: clamp(2.4rem,6vw,4.5rem); line-height: .9; letter-spacing: -2px; min-width: 1.6em; }
.apa-acc__label { flex: 1; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: clamp(.95rem,1.4vw,1.25rem); }
.apa-acc__icon { width: 46px; height: 46px; background: rgba(255,255,255,.15); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.apa-acc__play { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid #fff; transition: transform .2s ease; }
.apa-acc__item[open] .apa-acc__play { transform: rotate(90deg); }
.apa-acc__body { padding: 0 clamp(18px,3vw,32px) clamp(20px,3vw,30px) calc(clamp(18px,3vw,32px) + clamp(16px,3vw,40px) + 1.6em); }
.apa-acc__body p { margin: 0 0 14px; line-height: 1.55; font-size: clamp(.9rem,1vw,1rem); }
.apa-acc__body p:last-child { margin-bottom: 0; }

/* =========================================================
   SEKCJA 04 / 09 — Bannery pełnej szerokości ze skryptowym tekstem
   ========================================================= */
.apa-banner { position: relative; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: clamp(320px, 40vw, 560px); }
.apa-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.apa-banner__text { position: relative; z-index: 1; color: #fff; text-align: center; font-family: "Segoe Script", "Brush Script MT", cursive; font-size: clamp(1.4rem, 3.4vw, 2.6rem); padding-inline: 24px; text-shadow: 0 2px 10px rgba(0,0,0,.15); }
.apa-banner--solid { background: var(--apa-blue); }

/* =========================================================
   SEKCJA 05 — Tabela porównawcza posiewne vs powschodowe
   ========================================================= */
.apa-compare__intro { background: var(--apa-blue); color: #fff; text-align: center; border-radius: 16px 16px 0 0; padding: clamp(24px,4vw,40px) clamp(20px,4vw,60px); line-height: 1.5; font-size: clamp(.95rem,1.2vw,1.15rem); }
.apa-compare__table { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 10px; margin-top: 14px; }
.apa-compare__cell { background: #fff; box-shadow: 0 6px 16px rgba(20,40,80,.06); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; min-height: 84px; }
.apa-compare__cell--h { background: var(--apa-blue); color: #fff; justify-content: center; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; min-height: 64px; }
.apa-compare__cell--hg { background: var(--apa-green-dark); }
.apa-compare__factor { color: var(--apa-blue); font-weight: 800; font-size: clamp(1rem,1.3vw,1.2rem); }
.apa-compare__ico { width: 46px; height: 46px; background: var(--apa-blue); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: #fff; }
.apa-compare__val { font-size: clamp(.82rem,.95vw,.95rem); color: #2f5b2f; line-height: 1.35; }
.apa-compare__val strong { color: var(--apa-green-dark); }
.apa-compare__foot { background: var(--apa-green-dark); color: #fff; text-align: center; padding: 14px 20px; border-radius: 0 0 16px 16px; margin-top: 14px; font-size: clamp(.85rem,1vw,1rem); font-weight: 600; }

/* =========================================================
   SEKCJA 06 — Dowody słuszności (filmy)
   ========================================================= */
.apa-video { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/8; display: block; }
.apa-video__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.apa-video__label { position: absolute; top: 24px; left: 24px; z-index: 2; color: var(--apa-blue); }
.apa-video__label--right { left: auto; right: 24px; text-align: right; color: var(--apa-blue); }
.apa-video__name { font-weight: 800; font-size: clamp(1.4rem,2.4vw,2rem); margin: 0 0 6px; }
.apa-video__sub { margin: 0; font-size: clamp(.85rem,1vw,1rem); color: #33414f; max-width: 12em; }
.apa-video__play { position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%,-50%); width: clamp(56px,7vw,84px); height: clamp(56px,7vw,84px); background: #fff; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,.15); }

/* =========================================================
   SEKCJA 07 — Karty produktów
   ========================================================= */
.apa-product { background: #fff; border-radius: 18px; box-shadow: 0 12px 30px rgba(20,40,80,.1); display: flex; flex-direction: column; overflow: hidden; }
.apa-product__imgwrap { padding: clamp(20px,3vw,32px); display: flex; align-items: flex-end; justify-content: center; min-height: 220px; }
.apa-product__img { max-height: 220px; width: auto; object-fit: contain; }
.apa-product__band { background: var(--apa-green-dark); color: #fff; text-align: center; letter-spacing: 6px; font-weight: 700; font-size: .8rem; padding: 10px; }
.apa-product__band--blue { background: var(--apa-blue); }
.apa-product__body { padding: clamp(20px,3vw,30px); display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; flex: 1; }
.apa-product__name { margin: 0; color: var(--apa-blue); font-weight: 800; font-size: clamp(1.4rem,2vw,1.8rem); }
.apa-product__name small { display: block; font-size: .95rem; color: #33414f; font-weight: 600; }
.apa-product__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.apa-product__list li { position: relative; padding-top: 18px; color: var(--apa-blue); font-weight: 700; font-size: clamp(.9rem,1.05vw,1rem); }
.apa-product__list li::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--apa-green-dark); }
.apa-product__body .apa-button { margin-top: auto; }

/* =========================================================
   SEKCJA 08 — FAQ (natywne <details>)
   ========================================================= */
.apa-faq { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,22px); }
.apa-faq__item { position: relative; border-radius: 16px; overflow: hidden; color: #fff; background: var(--apa-blue); min-height: 360px; }
.apa-faq__item > summary { list-style: none; cursor: pointer; height: 100%; display: block; position: relative; }
.apa-faq__item > summary::-webkit-details-marker { display: none; }
.apa-faq__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(1.1); }
.apa-faq__num { position: absolute; top: 0; left: 18px; z-index: 2; background: #fff; color: var(--apa-blue); font-weight: 800; font-size: clamp(2rem,3vw,2.6rem); width: 74px; height: 88px; border-radius: 0 0 12px 12px; display: flex; align-items: center; justify-content: center; }
.apa-faq__q { position: absolute; left: 18px; right: 18px; bottom: 64px; z-index: 2; font-weight: 800; font-size: clamp(1rem,1.2vw,1.15rem); line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.apa-faq__more { position: absolute; left: 18px; bottom: 18px; z-index: 2; background: #fff; color: var(--apa-blue); font-weight: 700; letter-spacing: .5px; font-size: .72rem; padding: 8px 14px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; }
.apa-faq__answer { position: relative; z-index: 3; background: #fff; color: #33414f; padding: 74px 18px 22px; font-size: .82rem; line-height: 1.5; }
.apa-faq__answer p { margin: 0 0 12px; }
.apa-faq__answer p:last-child { margin-bottom: 0; }
.apa-faq__item[open] { background: #fff; color: #33414f; }
.apa-faq__item[open] .apa-faq__bg,
.apa-faq__item[open] .apa-faq__q,
.apa-faq__item[open] .apa-faq__more { display: none; }
.apa-faq__item[open] .apa-faq__num { background: var(--apa-blue); color: #fff; }
.apa-faq__qtitle { display: block; padding: 0 18px 10px; margin-top: -54px; position: relative; z-index: 4; color: var(--apa-blue); font-weight: 800; font-size: 1rem; }

/* =========================================================
   RESPONSYWNOŚĆ — nowe sekcje
   ========================================================= */
@media (max-width: 980px) {
  .apa-faq { grid-template-columns: repeat(2, 1fr); }
  .apa-compare__factor { font-size: 1rem; }
}
@media (max-width: 768px) {
  .apa-grid--3, .apa-grid--2 { grid-template-columns: 1fr; }
  .apa-plant { grid-template-columns: 1fr; }
  .apa-plant__img { order: -1; }
  .apa-compare__table { grid-template-columns: 1fr; }
  .apa-compare__cell--h { display: none; }
  .apa-compare__cell { min-height: 0; }
  .apa-faq { grid-template-columns: 1fr; }
  .apa-heading::before, .apa-heading::after { max-width: 40px; }
}

/* Utility */
.apa-center { text-align: center; }
.apa-mt-lg  { margin-top: clamp(28px, 4vw, 44px); }

/* =========================================================
   REFINEMENTS v2 — spójna typografia, symetria, placeholdery
   (blok nadpisujący — świadomie na końcu pliku)
   ========================================================= */
:root {
  --apa-fs-h2:    clamp(1.8rem, 3.2vw, 2.6rem);
  --apa-fs-h3:    clamp(1.15rem, 1.5vw, 1.45rem);
  --apa-fs-body:  clamp(0.95rem, 1.05vw, 1.05rem);
  --apa-fs-small: clamp(0.82rem, 0.95vw, 0.92rem);
  --apa-grey:      #dfe3e8;   /* placeholder jasny (miniatury) */
  --apa-grey-line: #b6bfca;
  --apa-grey-txt:  #7a8593;
}

/* Nagłówki — jeden rozmiar w całym serwisie */
.apa-heading { margin-bottom: clamp(36px, 5vw, 60px); }
.apa-heading__title { font-size: var(--apa-fs-h2); letter-spacing: .2px; }

/* Placeholder „miejsce na zdjęcie" — komponent współdzielony */
.apa-ph {
  background: var(--apa-grey);
  border: 1px dashed var(--apa-grey-line);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--apa-grey-txt);
  font-size: var(--apa-fs-small); font-weight: 600; letter-spacing: .3px;
  padding: 10px;
}
.apa-ph__cap { pointer-events: none; }

/* ===== Sekcja 02 — karty symetryczne (nadpisanie) ===== */
.apa-plant { align-items: stretch; }
.apa-plant__col { justify-content: center; }
.apa-feature {
  background: #fff; border: 1px dashed #cdd6e0; border-radius: 16px;
  box-shadow: 0 10px 26px rgba(20,40,80,.07);
  padding: clamp(18px, 2vw, 24px);
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.apa-feature__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.apa-feature__media { width: 84px; height: 92px; border-radius: 10px; flex: 0 0 auto; }
.apa-feature__title { font-size: var(--apa-fs-h3); margin: 0; }
.apa-feature__text { font-size: var(--apa-fs-small); }
.apa-plant__img { align-self: center; }

/* Ujednolicenie rozmiarów treści */
.apa-card__text, .apa-compare__val { font-size: var(--apa-fs-small); }
.apa-acc__body p, .apa-faq__answer p { font-size: var(--apa-fs-small); }
.apa-product__list li { font-size: var(--apa-fs-body); }
.apa-product__name { font-size: clamp(1.35rem, 1.9vw, 1.75rem); }

/* Symetria kart produktów — równe strefy */
.apa-product__imgwrap { min-height: 240px; }
.apa-product__list { min-height: 130px; justify-content: center; }

/* Odstęp sekcji spójny */
.apa-section--pad { padding-block: clamp(56px, 7vw, 100px); }

/* =========================================================
   HERO v3 — realistyczne tło pola + logo tekstowe (nadpisanie)
   ========================================================= */
/* Tło pola malowane CSS-em (niebo -> żółty rzepak). Aby użyć zdjęcia,
   podmień <div class="apa-hero__bg apa-hero__bg--field"> na
   <img class="apa-hero__bg" src="images/hero-rzepak-pole.webp" alt="..."> */
.apa-hero__bg--field {
  background-image:
    radial-gradient(90% 46% at 72% 43%, rgba(150,135,20,.30), rgba(150,135,20,0) 60%),
    radial-gradient(70% 40% at 22% 44%, rgba(120,150,60,.25), rgba(120,150,60,0) 60%),
    linear-gradient(to bottom,
      #8dbde9 0%, #a9d2f2 26%, #d3e7f7 39%,
      #f6e263 45%, #edc81d 57%, #dcb70c 78%, #cea908 100%);
}
/* subtelna „faktura" kwiatostanu przy dolnej krawędzi */
.apa-hero__media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(6px 10px at 10% 90%, rgba(255,238,120,.9), transparent 60%),
    radial-gradient(6px 10px at 25% 96%, rgba(255,238,120,.8), transparent 60%),
    radial-gradient(6px 10px at 40% 88%, rgba(255,238,120,.8), transparent 60%),
    radial-gradient(6px 10px at 60% 95%, rgba(255,238,120,.85), transparent 60%),
    radial-gradient(6px 10px at 78% 90%, rgba(255,238,120,.8), transparent 60%),
    radial-gradient(6px 10px at 92% 96%, rgba(255,238,120,.85), transparent 60%);
  opacity: .5;
}

/* Logo tekstowe z ikoną (zamiast szarego prostokąta) */
.apa-logo { gap: 12px; text-decoration: none; }
.apa-logo__icon { width: 46px; height: 46px; color: var(--apa-green); display: inline-flex; flex: 0 0 auto; }
.apa-logo__text {
  font-weight: 800; text-transform: uppercase; line-height: .95; letter-spacing: .5px;
  color: var(--apa-ink); font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

/* Dociągnięcie proporcji hero do makiety */
.apa-hero__media { min-height: clamp(460px, 64vh, 760px); }
.apa-hero__title { font-size: clamp(2.2rem, 6.2vw, 4.6rem); letter-spacing: 1px; text-shadow: 0 3px 16px rgba(255,255,255,.4); }
.apa-hero__subtitle { font-size: clamp(1.5rem, 4.2vw, 3rem); letter-spacing: .5px; }
.apa-hero__content { z-index: 1; }

/* =========================================================
   SEKCJA „5 SKŁADNIKÓW" v2 — kaskada + naprzemienne kolory (nadpisanie apa-acc)
   ========================================================= */
.apa-acc {
  --acc-pad-x: clamp(24px, 3vw, 46px);
  --acc-gap:   clamp(16px, 3vw, 44px);
  --acc-numw:  clamp(1.9ch, 8vw, 2.4ch);
  display: flex; flex-direction: column; gap: 0;
}
.apa-acc__item {
  border-radius: clamp(24px, 3vw, 42px);
  margin-top: clamp(-30px, -2.2vw, -16px);
  box-shadow: 0 12px 26px rgba(20, 40, 80, .12);
  overflow: hidden;
  position: relative;
}
.apa-acc__item:first-child { margin-top: 0; }
/* kaskada: wcześniejsze karty na wierzchu */
.apa-acc__item:nth-child(1) { z-index: 60; }
.apa-acc__item:nth-child(2) { z-index: 50; }
.apa-acc__item:nth-child(3) { z-index: 40; }
.apa-acc__item:nth-child(4) { z-index: 30; }
.apa-acc__item:nth-child(5) { z-index: 20; }
/* naprzemienne kolory (nieparzyste = niebieskie, parzyste = białe) */
.apa-acc__item:nth-child(odd)  { background: var(--apa-blue); color: #fff; }
.apa-acc__item:nth-child(even) { background: #fff; color: var(--apa-blue); }

/* nagłówek karty */
.apa-acc__head {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: var(--acc-gap);
  padding: clamp(18px, 2.4vw, 30px) var(--acc-pad-x);
  min-height: clamp(96px, 9vw, 150px);
}
.apa-acc__head::-webkit-details-marker { display: none; }
.apa-acc__num {
  font-weight: 800; line-height: .82; letter-spacing: -1px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  min-width: var(--acc-numw); text-align: left;
}
.apa-acc__label {
  flex: 1; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  font-size: clamp(.95rem, 1.4vw, 1.3rem);
}

/* miejsce na ikonkę — pusty kafel (biały na niebieskiej karcie, niebieski na białej) */
.apa-acc__icon {
  width: clamp(48px, 5vw, 66px); aspect-ratio: 1; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.apa-acc__item:nth-child(odd)  .apa-acc__icon { background: #fff; color: #b9d2ee; }
.apa-acc__item:nth-child(even) .apa-acc__icon { background: var(--apa-blue); color: #fff; }
.apa-acc__icon svg { width: 55%; height: 55%; opacity: .5; }   /* subtelny znacznik slotu */

/* trójkąt „play" po prawej */
.apa-acc__play {
  width: 0; height: 0; flex: 0 0 auto;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
  transition: transform .2s ease;
}
.apa-acc__item:nth-child(odd)  .apa-acc__play { color: #1f5fa8; }
.apa-acc__item:nth-child(even) .apa-acc__play { color: var(--apa-blue); }
.apa-acc__item[open] .apa-acc__play { display: none; }

/* rozwinięta treść */
.apa-acc__body {
  padding: 4px var(--acc-pad-x) 0;
  padding-left: calc(var(--acc-pad-x) + var(--acc-numw) + var(--acc-gap));
}
.apa-acc__body p { margin: 0 0 16px; line-height: 1.6; max-width: 62ch; }
.apa-acc__item:nth-child(even) .apa-acc__body { color: #2b3a4a; }

/* strzałka zwijania (▼) na dole rozwiniętej karty */
.apa-acc__collapse { display: none; }
.apa-acc__item[open] .apa-acc__collapse {
  display: flex; justify-content: center;
  padding: 6px 0 clamp(18px, 2.4vw, 30px);
  padding-left: calc(var(--acc-pad-x) + var(--acc-numw) + var(--acc-gap));
}
.apa-acc__collapse i {
  width: 0; height: 0;
  border-left: 12px solid transparent; border-right: 12px solid transparent;
  border-top: 15px solid currentColor;
}

@media (max-width: 768px) {
  .apa-acc__body, .apa-acc__item[open] .apa-acc__collapse { padding-left: var(--acc-pad-x); }
  .apa-acc__num { font-size: clamp(2.4rem, 12vw, 3.4rem); }
}

/* =========================================================
   SEKCJA 4 — Zabieg powschodowy (panel + tabela porównawcza) v2
   ========================================================= */
.apa-cmp { --cmp-green:#2f8a3e; --cmp-green-dk:#2f7d32; --cmp-cols: 1.15fr 1fr 1fr; }

/* Niebieski panel wprowadzający z sylwetkami roślin */
.apa-lead {
  position: relative; background: var(--apa-blue); color: #fff; overflow: hidden;
  padding: clamp(26px,4vw,46px) clamp(24px,7vw,150px) clamp(30px,4vw,48px);
  text-align: center;
}
.apa-lead__text { margin: 0 auto; max-width: 660px; line-height: 1.55; position: relative; z-index: 2;
  font-size: clamp(.95rem,1.2vw,1.18rem); }
.apa-lead__arrow { display: block; width: 0; height: 0; margin: 16px auto 0; position: relative; z-index: 2;
  border-left: 13px solid transparent; border-right: 13px solid transparent; border-top: 16px solid #fff; }
.apa-lead__flora { position: absolute; top: 0; bottom: 0; width: clamp(90px,14vw,240px); z-index: 1;
  opacity: .9; pointer-events: none; }
.apa-lead__flora svg { width: 100%; height: 100%; display: block; }
.apa-lead__flora--l { left: 0; }
.apa-lead__flora--r { right: 0; transform: scaleX(-1); }

/* Pasek zakładek */
.apa-cmp__tabs { display: grid; grid-template-columns: var(--cmp-cols); gap: clamp(8px,1.2vw,16px);
  margin-top: clamp(22px,3vw,36px); }
.apa-cmp__tab { position: relative; border-radius: 16px 16px 0 0; color: #fff; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: clamp(1rem,1.5vw,1.35rem);
  padding: clamp(16px,2vw,26px); display: flex; align-items: center; justify-content: center; gap: 12px; }
.apa-cmp__tab::after { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(255,255,255,.6);
  border-radius: 10px 10px 0 0; pointer-events: none; }
.apa-cmp__tab--factor { background: var(--apa-blue); justify-content: flex-start; padding-left: clamp(22px,3vw,44px); }
.apa-cmp__tab--green { background: var(--cmp-green); }
.apa-cmp__tabarrow { width: 0; height: 0; flex: 0 0 auto;
  border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: 11px solid #fff; }

/* Biała karta z wierszami */
.apa-cmp__card { background: #fff; border-radius: 4px 4px 22px 22px; padding: clamp(14px,1.8vw,20px);
  box-shadow: 0 22px 44px rgba(20,40,80,.10); position: relative; z-index: 1; }
.apa-cmp__row { display: grid; grid-template-columns: var(--cmp-cols); align-items: stretch;
  background: #fff; border-radius: 14px; box-shadow: 0 6px 16px rgba(20,40,80,.07); overflow: hidden; }
.apa-cmp__row + .apa-cmp__row { margin-top: clamp(10px,1.4vw,16px); }
.apa-cmp__c { padding: clamp(16px,1.8vw,22px) clamp(16px,2vw,26px); display: flex; align-items: center; gap: 14px; }
.apa-cmp__c + .apa-cmp__c { border-left: 2px solid #d7e5f5; }
.apa-cmp__ico { width: clamp(44px,4.5vw,58px); aspect-ratio: 1; border-radius: 12px; background: var(--apa-blue);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.apa-cmp__ico svg { width: 56%; height: 56%; opacity: .55; }   /* MIEJSCE NA IKONKĘ */
.apa-cmp__factor { color: var(--apa-blue); font-weight: 800; font-size: clamp(1rem,1.3vw,1.2rem); }
.apa-cmp__txt { color: #2f6b3a; font-size: clamp(.85rem,1vw,.98rem); line-height: 1.38; }
.apa-cmp__txt strong { color: var(--cmp-green-dk); font-weight: 800; }

/* Znaczniki tak/nie (nadpisanie rozmiaru + SVG) */
.apa-mark { width: 28px; height: 28px; border-radius: 7px; }
.apa-mark svg { width: 16px; height: 16px; }

/* Zielona stopka (wsuwa się pod zaokrąglony dół karty = zielony „prześwit") */
.apa-cmp__foot { background: var(--cmp-green-dk); color: #fff; text-align: center; font-weight: 600;
  border-radius: 0 0 22px 22px; margin-top: -22px; position: relative; z-index: 0;
  padding: calc(22px + clamp(12px,1.6vw,18px)) 20px clamp(14px,1.8vw,18px);
  font-size: clamp(.9rem,1.1vw,1.05rem); }

@media (max-width: 768px) {
  .apa-cmp__tabs { grid-template-columns: 1fr; gap: 6px; }
  .apa-cmp__tab { border-radius: 12px; }
  .apa-cmp__row { grid-template-columns: 1fr; }
  .apa-cmp__c + .apa-cmp__c { border-left: none; border-top: 2px solid #d7e5f5; }
}

/* =========================================================
   SEKCJA 5 — Dowody słuszności (karty filmowe) v2
   ========================================================= */
.apa-proof { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2.4vw,28px); }
.apa-proof__card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/9;
  box-shadow: 0 12px 30px rgba(20,40,80,.10); }

/* szare wypełnienie zamiast zdjęcia */
.apa-proof__bg { position: absolute; inset: 0; background: #dfe3e8; z-index: 0; }
.apa-proof__cap { position: absolute; top: 0; bottom: 0; width: 56%; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px;
  color: #7a8593; font-size: var(--apa-fs-small); font-weight: 600; text-align: center; }
.apa-proof__card--left  .apa-proof__cap { left: 0; }
.apa-proof__card--right .apa-proof__cap { right: 0; }

/* teksty */
.apa-proof__label { position: absolute; top: 0; bottom: 0; z-index: 3; max-width: 52%;
  display: flex; flex-direction: column; justify-content: center; padding: clamp(20px,3vw,40px); }
.apa-proof__card--left  .apa-proof__label { left: 0; }
.apa-proof__card--right .apa-proof__label { right: 0; text-align: right; align-items: flex-end; }
.apa-proof__name { margin: 0 0 10px; color: var(--apa-blue); font-weight: 800; line-height: 1.05;
  font-size: clamp(1.6rem,2.8vw,2.5rem); }
.apa-proof__sub { margin: 0; color: #33414f; line-height: 1.3; max-width: 11em;
  font-size: clamp(.95rem,1.2vw,1.15rem); }

/* biały trójkąt (play/logo) na styku kart */
.apa-proof__cut { position: absolute; top: 0; bottom: 0; width: 48%; background: #f4f7fa; z-index: 2;
  display: flex; align-items: center; }
.apa-proof__card--left  .apa-proof__cut { right: 0; clip-path: polygon(100% 0, 100% 100%, 0 50%);
  justify-content: flex-end; padding-right: 6%; }
.apa-proof__card--right .apa-proof__cut { left: 0; clip-path: polygon(0 0, 0 100%, 100% 50%);
  justify-content: flex-start; padding-left: 6%; }
.apa-proof__logo { width: clamp(54px,7vw,86px); height: clamp(54px,7vw,86px); display: inline-flex; }
.apa-proof__logo svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .apa-proof { grid-template-columns: 1fr; }
  .apa-proof__label { max-width: 60%; }
}

/* =========================================================
   SEKCJA 6 — Polecane rozwiązania (karty produktów) v2
   ========================================================= */
.apa-prod-sec { background: linear-gradient(180deg, #ffffff 0%, #eef4ee 100%); }
.apa-prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.6vw,34px);
  align-items: stretch; padding-top: clamp(120px,15vw,200px); }
.apa-prod { position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; box-shadow: 0 16px 36px rgba(20,40,80,.10); }

/* wystający „produkt" (szary placeholder) */
.apa-prod__media { position: absolute; z-index: 2; left: 12%; right: 12%;
  bottom: calc(100% - 52px); height: clamp(170px,19vw,240px); }
.apa-prod__media.apa-ph { border-radius: 12px; }

/* pasek HERBICYD */
.apa-prod__band { position: relative; z-index: 1; border-radius: 18px 18px 0 0; text-align: center;
  color: #fff; font-weight: 700; letter-spacing: 7px; font-size: .82rem;
  padding: 58px 10px 15px; }
.apa-prod__band--green { background: #2f7d32; }
.apa-prod__band--blue  { background: var(--apa-blue); }

/* treść */
.apa-prod__body { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(16px,2vw,22px); padding: clamp(22px,3vw,34px); }
.apa-prod__name { margin: 0; font-weight: 800; line-height: 1.1; color: var(--apa-blue);
  font-size: clamp(1.45rem,2.2vw,1.9rem); }
.apa-prod__name small { display: block; margin-top: 4px; font-size: 1rem; font-weight: 600; color: #33414f; }
.apa-prod__name--green { color: #2f7d32; }
.apa-prod__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column;
  gap: clamp(14px,1.8vw,20px); }
.apa-prod__list li { position: relative; padding-top: 20px; color: var(--apa-blue); font-weight: 700;
  line-height: 1.3; font-size: clamp(.95rem,1.1vw,1.05rem); }
.apa-prod__list li::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%; background: #2f7d32; }
.apa-prod__body .apa-button { margin-top: auto; }

@media (max-width: 900px) {
  .apa-prod-grid { grid-template-columns: 1fr; padding-top: clamp(150px,40vw,200px); gap: clamp(160px,42vw,220px); }
}

/* =========================================================
   SEKCJA 7 — FAQ „Najczęściej zadawane pytania" v2 (<details>)
   ========================================================= */
.apa-faq2 { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px,1.8vw,26px); }
.apa-faq2__item { flex: 0 1 calc(25% - 20px); min-width: 240px; max-width: 330px;
  display: flex; flex-direction: column; min-height: clamp(440px,44vw,560px);
  border-radius: 16px; overflow: hidden; background: #fff; position: relative;
  box-shadow: 0 12px 28px rgba(20,40,80,.10); }

.apa-faq2__head { flex: 1; position: relative; display: flex; flex-direction: column; cursor: pointer;
  list-style: none; padding: clamp(18px,2vw,24px); color: #fff; }
.apa-faq2__head::-webkit-details-marker { display: none; }
.apa-faq2__item[open] .apa-faq2__head { flex: 0 0 auto; color: var(--apa-blue);
  align-items: center; text-align: center; padding-bottom: 8px; }

/* szare wypełnienie zamiast zdjęcia */
.apa-faq2__bg { position: absolute; inset: 0; z-index: 0; background: #9aa4b0;
  display: flex; align-items: center; justify-content: center; }
.apa-faq2__bg .cap { color: #fff; font-size: var(--apa-fs-small); font-weight: 600; opacity: .9; }
.apa-faq2__item[open] .apa-faq2__bg { display: none; }

/* numer (biały kafel u góry) */
.apa-faq2__num { position: absolute; top: 0; left: clamp(14px,1.6vw,20px); z-index: 3;
  background: #fff; color: var(--apa-blue); font-weight: 800; font-size: clamp(2rem,2.6vw,2.7rem);
  width: clamp(60px,6vw,78px); height: clamp(74px,7.5vw,94px);
  border-radius: 0 0 14px 14px; display: flex; align-items: center; justify-content: center; }
.apa-faq2__item[open] .apa-faq2__num { display: none; }

/* stan zamknięty: pytanie + „czytaj więcej" na dole */
.apa-faq2__foot { position: relative; z-index: 2; margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.apa-faq2__q { font-weight: 800; font-size: clamp(1rem,1.2vw,1.2rem); line-height: 1.22; text-shadow: 0 2px 8px rgba(0,0,0,.28); }
.apa-faq2__more { align-self: flex-start; background: #fff; color: var(--apa-blue); font-weight: 700; letter-spacing: 1px;
  font-size: .72rem; text-transform: uppercase; padding: 10px 16px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px; }
.apa-faq2__item[open] .apa-faq2__foot { display: none; }
.apa-faq2__dot { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 8px; height: 8px; border-radius: 2px; background: #fff; opacity: .9; }
.apa-faq2__item[open] .apa-faq2__dot { display: none; }

/* stan otwarty: pytanie u góry + chevron */
.apa-faq2__ohead { display: none; }
.apa-faq2__item[open] .apa-faq2__ohead { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.apa-faq2__otitle { color: var(--apa-blue); font-weight: 800; font-size: clamp(1rem,1.2vw,1.2rem); line-height: 1.22; text-align: center; }
.apa-faq2__toggle { width: 34px; height: 34px; border-radius: 50%; background: var(--apa-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; }
.apa-faq2__toggle svg { width: 16px; height: 16px; }

/* odpowiedź */
.apa-faq2__answer { flex: 1; overflow: auto; color: var(--apa-blue); text-align: center;
  padding: 6px clamp(16px,1.8vw,22px) clamp(18px,2vw,24px); }
.apa-faq2__answer p { margin: 0 0 12px; font-size: clamp(.8rem,.95vw,.92rem); line-height: 1.5; }
.apa-faq2__answer p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .apa-faq2__item { flex-basis: 100%; max-width: 420px; }
}

/* =========================================================
   SEKCJA 02 v2 — Jak uzyskać krzepki rzepak (2 karty + środek + 2 karty)
   ========================================================= */
.apa-plant { position: relative; grid-template-columns: 1fr auto 1fr; align-items: stretch;
  gap: clamp(20px,4vw,70px); }
.apa-plant__col { justify-content: center; gap: clamp(24px,3vw,48px); }

/* środek — miejsce na zdjęcie (roślina) */
.apa-plant__img { width: clamp(220px,26vw,360px); height: auto; aspect-ratio: 3/5; align-self: center; }
.apa-plant__img.apa-ph { border-radius: 14px; }

/* karta cechy */
.apa-feat { position: relative; background: #fff; border-radius: 18px; box-shadow: 0 12px 30px rgba(20,40,80,.08);
  padding: clamp(20px,2.4vw,30px); display: grid; gap: clamp(14px,1.6vw,22px); align-items: center; }
.apa-feat::before { content: ""; position: absolute; inset: 10px; border: 1px dashed #cfd8e2; border-radius: 12px; pointer-events: none; }
.apa-feat--left  { grid-template-columns: 1fr auto; }
.apa-feat--right { grid-template-columns: auto 1fr; text-align: right; }
.apa-feat__body { position: relative; z-index: 1; }
.apa-feat__title { margin: 0; color: var(--apa-blue); font-weight: 700; line-height: 1.08;
  font-size: clamp(1.3rem,1.9vw,1.7rem); }
.apa-feat__rule { width: 46px; height: 3px; background: var(--apa-green); border-radius: 2px; margin: 12px 0; }
.apa-feat--right .apa-feat__rule { margin-left: auto; }
.apa-feat__text { margin: 0; color: #33414f; font-size: clamp(.9rem,1vw,1rem); line-height: 1.5; }
.apa-feat__text strong { color: var(--apa-green-dark); }
.apa-feat__measure { display: inline-block; margin-top: 6px; font-weight: 800; color: var(--apa-green-dark); }
.apa-feat--danger .apa-feat__text { color: #c0392b; }
.apa-feat--danger .apa-feat__text strong { color: #c0392b; }
.apa-feat__media { position: relative; z-index: 1; width: clamp(96px,11vw,140px); height: clamp(120px,13vw,160px); }
.apa-feat__media.apa-ph { border-radius: 10px; font-size: .68rem; text-align: center; }

/* łączniki (›, ‹, ✕) między kartą a rośliną */
.apa-feat__conn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 44px; height: 44px; background: #fff; border-radius: 10px; box-shadow: 0 6px 16px rgba(20,40,80,.16);
  display: flex; align-items: center; justify-content: center; color: var(--apa-blue); }
.apa-feat__conn svg { width: 20px; height: 20px; }
.apa-feat--left  .apa-feat__conn { right: -22px; }
.apa-feat--right .apa-feat__conn { left: -22px; }
.apa-feat__conn--x { background: #e23b3b; color: #fff; }
/* przerywana linia łącznika w stronę rośliny */
.apa-feat__conn::after { content: ""; position: absolute; top: 50%; width: clamp(16px,4vw,64px); border-top: 2px dashed #9db8de; }
.apa-feat--left  .apa-feat__conn::after { left: 100%; }
.apa-feat--right .apa-feat__conn::after { right: 100%; }

/* strzałki karuzeli po bokach sekcji */
.apa-plant__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; display: flex;
  background: transparent; border: none; cursor: pointer; }
.apa-plant__nav svg { width: clamp(28px,3vw,46px); height: clamp(28px,3vw,46px); }
.apa-plant__nav--right { right: clamp(-6px,-0.5vw,0px); color: var(--apa-green); }
.apa-plant__nav--left  { left: clamp(-6px,-0.5vw,0px); color: #c3ccd6; }

@media (max-width: 900px) {
  .apa-plant { grid-template-columns: 1fr; }
  .apa-plant__img { order: -1; margin: 0 auto; }
  .apa-feat__conn, .apa-plant__nav { display: none; }
  .apa-feat--right { text-align: left; grid-template-columns: 1fr auto; }
  .apa-feat--right .apa-feat__media { order: 2; }
  .apa-feat--right .apa-feat__rule { margin-left: 0; }
}

/* =========================================================
   SEKCJA — Krzepka Promocja (landing promocyjny)
   ========================================================= */
/* pasek nawigacji: wariant z zielonym CTA (reużywa .apa-navbar/.apa-nav/.apa-button) */
.apa-navbar--promo .apa-button--green { border-radius: 30px; padding: 14px 30px; }

/* Baner promocyjny (pełna szerokość) */
.apa-promo { position: relative; overflow: hidden; }
.apa-promo__bg { position: absolute; inset: 0; z-index: 0; background: #dfe3e8; }
.apa-promo__bg .cap { position: absolute; right: 16px; bottom: 12px; color: #7a8593; font-size: var(--apa-fs-small); font-weight: 600; }
.apa-promo__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto;
  gap: clamp(24px,4vw,60px); align-items: center; padding-block: clamp(34px,5vw,66px); }
.apa-promo__title { margin: 0 0 18px; font-weight: 800; text-transform: uppercase; line-height: .9; letter-spacing: 1px;
  font-size: clamp(2.6rem,7vw,5.6rem); }
.apa-promo__title .l1 { display: block; color: var(--apa-green); }
.apa-promo__title .l2 { display: block; color: var(--apa-blue); }
.apa-promo__lead { margin: 0 0 26px; color: var(--apa-ink); line-height: 1.4; max-width: 22ch;
  font-size: clamp(1.05rem,1.4vw,1.35rem); }
.apa-promo__lead strong { font-weight: 700; }
.apa-button--lg { padding: 16px 34px; border-radius: 12px; font-size: clamp(1rem,1.2vw,1.15rem); }
.apa-promo__perk { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.apa-promo__perk-ico { width: 42px; height: 42px; flex: 0 0 auto; color: var(--apa-green); }
.apa-promo__perk-txt { color: var(--apa-ink); line-height: 1.35; font-size: clamp(.95rem,1.1vw,1.1rem); }
.apa-promo__perk-txt strong { font-weight: 700; }
.apa-promo__media { width: clamp(300px,42vw,600px); aspect-ratio: 16/10; }
.apa-promo__media.apa-ph { border-radius: 14px; }

/* Jak skorzystać z promocji */
.apa-steps__head { display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--apa-blue); font-weight: 800; text-align: center; margin: 0 0 clamp(30px,4vw,50px);
  font-size: clamp(1.4rem,2.2vw,2rem); }
.apa-steps__head svg { width: 26px; height: 26px; color: var(--apa-green); }
.apa-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: clamp(10px,1.4vw,20px); }
.apa-step { position: relative; background: #fff; border-radius: 16px; box-shadow: 0 10px 26px rgba(20,40,80,.08);
  padding: clamp(30px,3vw,42px) clamp(18px,2vw,28px) clamp(24px,3vw,32px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.apa-step__num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%; background: var(--apa-green); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(20,40,80,.18); }
.apa-step__media { width: clamp(84px,9vw,112px); height: clamp(84px,9vw,112px); }
.apa-step__media.apa-ph { border-radius: 12px; font-size: .62rem; text-align: center; }
.apa-step__text { color: #33414f; line-height: 1.45; font-size: clamp(.9rem,1vw,1rem); }
.apa-step__text strong { color: var(--apa-ink); font-weight: 700; }
.apa-steps__arrow { display: flex; align-items: center; justify-content: center; color: var(--apa-blue); }
.apa-steps__arrow svg { width: 26px; height: 26px; }

/* Info-box + link regulaminu */
.apa-note { display: flex; align-items: flex-start; gap: 16px; background: #eef6ee; border: 1px solid #cfe6cf;
  border-radius: 14px; padding: clamp(18px,2vw,24px) clamp(20px,2.5vw,32px); margin-top: clamp(28px,4vw,44px); }
.apa-note__ico { width: 32px; height: 32px; flex: 0 0 auto; color: var(--apa-green); }
.apa-note__txt { color: #33414f; line-height: 1.5; font-size: clamp(.9rem,1.05vw,1.05rem); }
.apa-reglink { display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
  text-align: center; margin-top: clamp(20px,3vw,32px); color: var(--apa-blue); font-weight: 700;
  font-size: clamp(1rem,1.2vw,1.2rem); }
.apa-reglink svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .apa-promo__inner { grid-template-columns: 1fr; }
  .apa-promo__media { width: 100%; margin: 0 auto; }
  /* 3 kafle nadal obok siebie — chowamy strzałki, zwężamy kafle */
  .apa-steps { grid-template-columns: repeat(3, 1fr); gap: clamp(8px,1.4vw,14px); }
  .apa-steps__arrow { display: none; }
  .apa-step { padding: clamp(24px,3vw,32px) clamp(10px,1.4vw,16px) clamp(18px,2vw,24px); gap: 12px; }
  .apa-step__media { width: clamp(60px,14vw,96px); height: clamp(60px,14vw,96px); }
}
/* dopiero na bardzo wąskich ekranach jeden pod drugim */
@media (max-width: 520px) {
  .apa-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   SEKCJA — Konkurs „To nie wszystko"
   ========================================================= */
.apa-contest__head { background: var(--apa-blue); color: #fff; text-align: center;
  padding: clamp(24px,3.5vw,40px) 0 clamp(20px,3vw,32px); }
.apa-contest__title { margin: 0; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
  font-size: clamp(1.4rem,2.6vw,2.1rem); }
.apa-contest__sub { margin: 10px 0 0; font-size: clamp(1rem,1.3vw,1.25rem); opacity: .96; }
.apa-contest__leaf { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; }
.apa-contest__leaf::before, .apa-contest__leaf::after { content: ""; width: clamp(40px,6vw,80px); height: 1px; background: rgba(255,255,255,.55); }
.apa-contest__leaf svg { width: 22px; height: 22px; color: #8fd39a; }

/* karty nagród */
.apa-prizes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.4vw,30px);
  max-width: 900px; margin: 0 auto; }
.apa-prize { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(20,40,80,.10); }
.apa-prize__img { aspect-ratio: 16/9; }
.apa-prize__img.apa-ph { border-radius: 0; }
.apa-prize__cap { text-align: center; color: var(--apa-blue); font-weight: 800; line-height: 1.25;
  padding: clamp(16px,2vw,24px); font-size: clamp(1.05rem,1.4vw,1.3rem); }

/* 4 kafle kroków (reużywa .apa-steps/.apa-step) */
.apa-steps--4 { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.apa-step__ico { color: var(--apa-blue); width: clamp(52px,6vw,72px); height: clamp(52px,6vw,72px); }
.apa-step__ico svg { width: 100%; height: 100%; }

/* opis + link regulaminu */
.apa-contest__desc { margin-top: clamp(24px,3vw,36px); }
.apa-contest__desc p { margin: 0 0 14px; color: #33414f; line-height: 1.6; font-size: clamp(.95rem,1.1vw,1.1rem); }
.apa-reglink--left { justify-content: flex-start; margin-top: 6px; }

@media (max-width: 900px) {
  .apa-steps--4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 620px) {
  .apa-prizes { grid-template-columns: 1fr; }
  .apa-steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .apa-steps--4 { grid-template-columns: 1fr; }
}

.apa-mt-xl { margin-top: clamp(40px,5vw,60px); }

/* =========================================================
   SEKCJA — Formularz zgłoszeniowy
   ========================================================= */
.apa-form-wrap { background: #fff; border: 1px solid #e6ebf1; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(20,40,80,.08); padding: clamp(24px,3vw,44px); }
  /*
.apa-form__grid { display: grid; grid-template-columns: 1.75fr 1fr; gap: clamp(24px,3vw,40px); align-items: stretch; }
*/
.apa-form__title { display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--apa-blue); font-weight: 800; margin: 0 0 clamp(22px,3vw,32px); font-size: clamp(1.4rem,2.2vw,2rem); }
.apa-form__title svg { width: 26px; height: 26px; color: var(--apa-green); }

.apa-form__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,2.5vw,34px); }
.apa-form__col { display: flex; flex-direction: column; gap: clamp(14px,1.6vw,18px); }

.apa-field { display: flex; flex-direction: column; gap: 8px; }
.apa-label { font-weight: 700; color: var(--apa-ink); font-size: clamp(.9rem,1vw,1rem); }
.apa-label .req { color: #e23b3b; }
.apa-input, .apa-textarea { width: 100%; border: 1px solid #d7dee6; border-radius: 10px; padding: 12px 14px;
  font: inherit; color: var(--apa-ink); background: #fff; }
.apa-input::placeholder, .apa-textarea::placeholder { color: #9aa4b0; }
.apa-input:focus, .apa-textarea:focus { outline: none; border-color: var(--apa-blue); box-shadow: 0 0 0 3px rgba(47,123,214,.15); }
.apa-textarea { min-height: 118px; resize: vertical; line-height: 1.4; }
.apa-hint { font-size: .85rem; color: #9aa4b0; }

.apa-upload { border: 2px dashed #b9d2ee; border-radius: 12px; background: #f5f9ff; cursor: pointer;
  padding: clamp(18px,2.5vw,30px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.apa-upload.is-dragover { border-color: var(--apa-blue); background: #ebf4ff; }
.apa-upload__ico { width: 42px; height: 42px; color: var(--apa-blue); }
.apa-upload__txt { font-size: .9rem; line-height: 1.45; color: #7a8593; }
.apa-upload__file { min-height: 1.2em; font-size: .85rem; color: #56708f; }
.apa-upload__file.is-error { color: #b82222; }

.apa-form__agree { margin-top: clamp(18px,2.4vw,26px); display: flex; flex-direction: column; gap: 12px; }
.apa-check { display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; color: var(--apa-ink);
  font-size: clamp(.88rem,1vw,.98rem); }
.apa-check input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--apa-green); flex: 0 0 auto; }
.apa-check a { color: var(--apa-blue); text-decoration: none; font-weight: 600; }
.apa-check .req { color: #e23b3b; }
.apa-form__submit { margin-top: clamp(18px,2.4vw,26px); width: 100%; }
.apa-form__submit[disabled] { opacity: .7; cursor: not-allowed; }
.apa-form__msg { min-height: 1.2em; margin: 12px 0 0; text-align: center; font-weight: 600; }
.apa-form__msg.is-error { color: #b82222; }
.apa-form__msg.is-success { color: #177b35; }
.apa-form__req { margin: 10px 0 0; text-align: center; color: #9aa4b0; font-size: .85rem; }

.apa-form__photo { align-self: stretch; min-height: 100%; }
.apa-form__photo.apa-ph { border-radius: 14px; }

/*
@media (max-width: 900px) {
  .apa-form__grid { grid-template-columns: 1fr; }
  .apa-form__photo { min-height: clamp(220px,40vw,320px); order: -1; }
}
  */
@media (max-width: 560px) {
  .apa-form__cols { grid-template-columns: 1fr; }
}