/* ============================================================
   BioGardino — design tokens & wspólny system wizualny
   Zieleń marki + żółto-złoty akcent · Poppins / Source Sans 3
   ============================================================ */

:root {
  /* — Kolory marki (z logo) — */
  --c-forest: #1c4f2c;        /* ciemna zieleń — sekcje kontrastowe, stopka */
  --c-forest-deep: #143b20;   /* najciemniejszy odcień */
  --c-leaf: #3f9d49;          /* soczysta zieleń — linki, akcenty */
  --c-leaf-deep: #2e7d36;     /* hover zieleni */
  --c-gold: #f4b41a;          /* żółto-złoty — CTA, wyróżnienia (litera „o”) */
  --c-gold-deep: #d99c07;
  --c-ink: #182d1d;           /* tekst główny */
  --c-ink-soft: #4d5f51;      /* tekst drugorzędny */
  --c-sage: #eef4ec;          /* bardzo jasna szałwiowa zieleń — tła sekcji */
  --c-cream: #fbfaf6;         /* ciepła biel */
  --c-white: #ffffff;
  --c-line: #dde7da;

  /* — Typografia — */
  --f-head: "Poppins", sans-serif;
  --f-body: "Source Sans 3", sans-serif;
  --f-hand: "Caveat", cursive;

  /* — Layout — */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 30px rgba(24, 45, 29, 0.08);
  --shadow-lift: 0 14px 44px rgba(24, 45, 29, 0.14);
  --header-h: 84px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--c-ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em 0; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-leaf-deep); }

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

/* — Etykieta sekcji + akcent odręczny — */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-leaf-deep);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}
.hand {
  font-family: var(--f-hand);
  font-weight: 600;
  color: var(--c-leaf-deep);
  font-size: 1.35em;
  line-height: 1;
}
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p { color: var(--c-ink-soft); font-size: 1.06rem; }

/* ============================================================
   Przyciski
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-buy {
  background: var(--c-gold);
  color: var(--c-forest-deep);
  box-shadow: 0 6px 20px rgba(244, 180, 26, 0.35);
}
.btn-buy:hover { background: #ffc73a; box-shadow: 0 10px 26px rgba(244, 180, 26, 0.45); }

.btn-green {
  background: var(--c-forest);
  color: #fff;
}
.btn-green:hover { background: var(--c-forest-deep); }

.btn-ghost {
  background: transparent;
  color: var(--c-forest);
  border-color: var(--c-forest);
}
.btn-ghost:hover { background: var(--c-sage); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.24); }

.btn .arr { font-family: var(--f-body); font-weight: 700; }

/* ============================================================
   Header / nawigacja
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header .bar {
  /*max-width: 1340px;*/
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-chip {
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  display: flex; align-items: center;
}
.logo-chip img { height: 58px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.main-nav a.nav-link {
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  color: var(--c-ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a.nav-link:hover { color: var(--c-leaf-deep); }
.main-nav a.nav-link[aria-current="page"] {
  color: var(--c-leaf-deep);
  border-bottom-color: var(--c-gold);
}

/* przełącznik języka */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 600;
  width: max-content;
}
.lang-switch a {
  padding: 6px 12px;
  text-decoration: none;
  color: var(--c-ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch a.active { background: var(--c-forest); color: #fff; }
.lang-switch a:not(.active):hover {  background: rgba(238, 244, 236, 0.15);  color: var(--c-ink); }

.header-cta { flex-shrink: 0; padding: 11px 22px; font-size: 0.88rem; }

.header-phone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-leaf-deep);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.header-phone svg { width: 18px; height: 18px; }
.header-phone:hover { color: var(--c-forest); }
header.on-hero:not(.scrolled) .header-phone {color: var(--c-gold);}
header.on-hero:not(.scrolled) .header-phone:hover { color: #fff; }

/* — wariant przezroczysty (na hero) — */
.site-header.on-hero:not(.scrolled) { background: transparent; }
.site-header.on-hero:not(.scrolled) .nav-link { color: #fff; }
.site-header.on-hero:not(.scrolled) .nav-link:hover { color: var(--c-gold); }
.site-header.on-hero:not(.scrolled) .nav-link[aria-current="page"] { color: #fff; border-bottom-color: var(--c-gold); }
.site-header.on-hero:not(.scrolled) .lang-switch { border-color: rgba(255,255,255,0.45); }
.site-header.on-hero:not(.scrolled) .lang-switch a { color: rgba(255,255,255,0.8); }
.site-header.on-hero:not(.scrolled) .lang-switch a.active { background: rgba(255,255,255,0.95); color: var(--c-forest); }
.site-header.on-hero:not(.scrolled).menu-open { background: #fff; }
.site-header.menu-open { transition: none;}

.site-header.solid,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--c-line), 0 6px 24px rgba(24, 45, 29, 0.06);
}

/* — hamburger — */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 34px; 
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 3px;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}
.site-header.on-hero:not(.scrolled):not(.menu-open) .nav-toggle span { background: #fff; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* — menu mobilne — */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--c-white);
  z-index: 99;
  padding: 28px 24px 120px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a.m-link {
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  padding: 14px 6px;
  border-bottom: 1px solid var(--c-sage);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a.m-link[aria-current="page"] { color: var(--c-leaf-deep); }
.mobile-menu a.m-link::after { content: "→"; color: var(--c-gold); font-weight: 700; }
.mobile-menu .m-extra { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

/* — pasek CTA mobile (przyklejony dół) — */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(24, 45, 29, 0.12);
}
.mobile-cta .btn { width: 100%; padding: 15px 20px; font-size: 1rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: -12% 0 0 0;
  z-index: 0;
  will-change: transform;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(13, 33, 18, 0.92) 0%, rgba(13, 33, 18, 0.66) 34%, rgba(13, 33, 18, 0.30) 60%, rgba(13, 33, 18, 0.38) 100%);
}
.hero .container { position: relative; z-index: 2; padding-bottom: 72px; padding-top: 140px; text-shadow: 0 1px 18px rgba(10, 26, 14, 0.45); width: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 49, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); }
.hero h1 { color: #fff; max-width: none; margin-bottom: 0.45em; }
.hero h1 .hand { color: var(--c-gold); font-size: 0.94em; line-height: 1.35; display: block; width: max-content; max-width: 100%; transform: rotate(-2deg); transform-origin: left bottom; margin-top: 2px; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  right: 28px; bottom: 26px;
  z-index: 2;
  font-family: var(--f-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
  display: none;
}

/* ============================================================
   Sekcje
   ============================================================ */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.sage { background: var(--c-sage); }
.section.cream { background: var(--c-cream); }
.section.forest { background: var(--c-forest); color: #e9f1e8; }
.section.forest h2, .section.forest h3 { color: #fff; }
.section.forest .kicker { color: var(--c-gold); }
.section.forest p { color: rgba(233, 241, 232, 0.85); }

/* — pasek 4 korzyści — */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.benefit .b-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--c-sage);
  color: var(--c-leaf-deep);
  display: flex; align-items: center; justify-content: center;
}
.benefit .b-icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.02rem; margin: 0; }
.benefit p { font-size: 0.94rem; color: var(--c-ink-soft); margin: 0; }

/* — jak to działa: 3 kroki — */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.step .s-img { aspect-ratio: 4 / 3; overflow: hidden; }
.step .s-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.step:hover .s-img img { transform: scale(1.045); }
.step .s-body { padding: 24px 26px 28px; }
.step .s-num {
  font-family: var(--f-hand);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold-deep);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.step p { font-size: 0.97rem; color: var(--c-ink-soft); margin: 0; }

/* — 4 poziomy uprawy — */
.levels-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.levels-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.levels-photo img { width: 100%; height: 100%; object-fit: cover; }
.levels-list { display: flex; flex-direction: column; gap: 14px; }
.level {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.level:hover, .level.active {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-soft);
  /*transform: translateX(6px);*/
}
.level .lv-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.9rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-forest);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.level h3 { margin: 0; font-size: 1.05rem; }
.level p { margin: 0; font-size: 0.9rem; color: var(--c-ink-soft); }
.level .lv-thumb {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  margin-left: auto;
  flex-shrink: 0;
}

/* — galeria — */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery .g-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-lg-tall { grid-row: span 2; }
.gallery .g-lg-wide { grid-column: span 2; }
.gallery .g-tall.g-lg-wide { grid-row: span 1; }
.g-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 16px 12px;
  background: linear-gradient(to top, rgba(15, 38, 21, 0.72), transparent);
  color: #fff;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 500;
}

/* — opinie — */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.quote {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-line);
}
.quote .q-mark { font-family: var(--f-hand); font-size: 2.6rem; color: var(--c-gold); line-height: 0.5; display: block; margin-bottom: 14px; }
.quote p { font-size: 0.99rem; }
.quote .q-author { font-family: var(--f-head); font-size: 0.84rem; font-weight: 600; color: var(--c-leaf-deep); margin-top: 14px; }

/* — specyfikacja — */
.spec-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.spec-photo { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.spec-photo img { width: 100%; object-fit: cover; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 15px 6px;
  border-bottom: 1px solid var(--c-line);
  font-size: 1rem;
}
.spec-table th {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--c-ink-soft);
  width: 42%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spec-table td { font-weight: 600; }

/* — dla kogo (persony) — */
.personas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.persona {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.persona img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.persona:hover img { transform: scale(1.05); }
.persona .p-body {
  position: relative;
  z-index: 1;
  padding: 22px;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 38, 21, 0.85), rgba(15, 38, 21, 0.0));
}
.persona h3 { color: #fff; margin: 0 0 4px; font-size: 1.05rem; }
.persona p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin: 0; }

/* — CTA końcowe — */
.cta-banner {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  color: #fff;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px);
}
.cta-banner .cta-bg { position: absolute; inset: 0; }
.cta-banner .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner .cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 59, 32, 0.93) 0%, rgba(20, 59, 32, 0.72) 55%, rgba(20, 59, 32, 0.35) 100%);
}
.cta-banner .cta-inner { position: relative; z-index: 1; max-width: 560px; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 28px; }

/* ============================================================
   Stopka
   ============================================================ */
.site-footer {
  background: var(--c-forest-deep);
  color: rgba(233, 241, 232, 0.78);
  padding: 64px 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer .f-brand .logo-chip { display: inline-flex; margin-bottom: 16px; }
.site-footer .f-brand .logo-chip img { height: 52px; }
.site-footer .f-claim { font-family: var(--f-hand); font-size: 1.5rem; color: var(--c-gold); }
.site-footer h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(233, 241, 232, 0.78); text-decoration: none; transition: color 0.15s ease; }
.site-footer a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}
.footer-bottom .f-legal { display: flex; gap: 22px; }
.footer-bottom .f-legal a, .footer-bottom span { white-space: nowrap; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.social-row a:hover { border-color: var(--c-gold); background: rgba(244, 180, 26, 0.12); }
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

/* ============================================================
   Podstrony — nagłówek strony
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background:
    radial-gradient(1100px 420px at 85% -10%, rgba(63, 157, 73, 0.10), transparent),
    var(--c-sage);
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero p.lede { font-size: 1.15rem; color: var(--c-ink-soft); max-width: 36em; }
.breadcrumbs {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumbs a { color: var(--c-leaf-deep); text-decoration: none; }
.breadcrumbs .sep { color: var(--c-gold); }

/* — FAQ — */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: #bcd3b6; }
.faq-item[open] { border-color: var(--c-gold); box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-meta { display: flex; flex-direction: column; gap: 5px; }
.faq-tag {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.faq-tag::after {
  content: "";
  height: 1.5px;
  width: 22px;
  background: var(--c-line);
  border-radius: 2px;
  transition: background 0.2s ease, width 0.2s ease;
}
.faq-item[open] .faq-tag::after { background: var(--c-gold); width: 34px; }
.faq-q {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--c-ink);
  transition: color 0.15s ease;
}
.faq-item:hover .faq-q, .faq-item[open] .faq-q { color: var(--c-leaf-deep); }
.faq-toggle {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-sage);
  color: var(--c-leaf-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-toggle::before { content: "+"; margin-top: -2px; }
.faq-item:hover .faq-toggle { background: #e2ecdf; }
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: var(--c-forest-deep);
}
.faq-item .faq-body {
  margin: 0 26px;
  padding: 18px 50px 24px 0;
  color: var(--c-ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px dashed var(--c-line);
}
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-body { animation: faqIn 0.28s ease both; }
  @keyframes faqIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
  }
}
.faq-body a { font-weight: 600; }
@media (max-width: 560px) {
  .faq-item summary { padding: 18px 18px; gap: 14px; }
  .faq-item .faq-body { margin: 0 18px; padding: 14px 0 20px; }
  .faq-q { font-size: 1rem; }
}

/* — formularz kontaktu — */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--c-ink);
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-leaf);
  box-shadow: 0 0 0 3px rgba(63, 157, 73, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--c-ink-soft);
}
.consent input { margin-top: 3px; accent-color: var(--c-leaf-deep); width: 17px; height: 17px; flex-shrink: 0; }

/* — karty zakupowe (gdzie kupić) — */
.buy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.buy-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.buy-card:hover { border-color: var(--c-gold); box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.buy-card.primary {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, #fffdf4 0%, var(--c-white) 60%);
  box-shadow: var(--shadow-soft);
}
.buy-card.soon { background: var(--c-cream); }
.buy-card.soon h3, .buy-card.soon p { opacity: 0.75; }
.buy-card .bc-tag {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.buy-card p { color: var(--c-ink-soft); font-size: 0.96rem; flex-grow: 1; }

/* ============================================================
   Scroll reveal & misc
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: all 0.65s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
  .reveal.d4 { transition-delay: 0.32s; }
}

::selection { background: rgba(244, 180, 26, 0.4); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .personas { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 860px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  /*.mobile-cta { display: block; }*/
  body { padding-bottom: 76px; } /* miejsce na pasek CTA */
  .steps { grid-template-columns: 1fr; }
  .levels-grid, .spec-grid { grid-template-columns: 1fr; gap: 32px; }
  .levels-photo { aspect-ratio: 4 / 3.4; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .form-grid { grid-template-columns: 1fr; }
  .buy-cards { grid-template-columns: 1fr; }
  .hero .container { padding-bottom: 56px; }
  .hero-scroll { display: none; }
  .gallery .g-lg-tall { grid-row: span 1; }
  .gallery .g-lg-wide { grid-column: span 1; }
  .gallery .g-tall.g-lg-wide { grid-row: span 2; }
}

@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { width: 100%; }
  .gallery { grid-auto-rows: 150px; }
  .persona { aspect-ratio: 1/1;}
}
