/* ==========================================================================
   POKOLENIE PIEGÓW v2 — klimat urodziny.bajkapanakleksa.pl
   biel + kobalt + magenta, zdjęcia z granatową nakładką, karty cennika
   ========================================================================== */

:root {
  --navy: #182F7A;
  --navy-deep: #102050;
  --cobalt: #244BB5;
  --magenta: #CC0066;
  --pink-soft: #FFB3DA;
  --bg-gray: #F1F4FB;
  --line: #E0E5F3;
  --teal: #40B9BB;
  --mango: #FF6600;

  --header-height: 86px;

  --cta-a: #2B4BD7;
  --cta-b: #E5239A;
  --cta-ink: #FFFFFF;
  --overlay-strength: 0.78;

  --font-display: "Mulish", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Mulish", "Segoe UI", sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; margin: 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ===================== TOP BAR ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 50px; height: 50px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--magenta);
}
.topnav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-weight: 700;
  font-size: 15px;
}
.topnav a { text-decoration: none; opacity: 0.85; white-space: nowrap; }
.topnav a:hover { opacity: 1; color: var(--cobalt); }
@media (max-width: 1080px) { .topnav { display: none; } }

/* ===================== PRZYCISKI ===================== */
.btn {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(100deg, var(--cta-a), var(--cta-b));
  color: var(--cta-ink);
  box-shadow: 0 8px 20px rgba(27, 42, 107, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27, 42, 107, 0.32); }
.btn:active { transform: translateY(1px); }
.btn-sm { font-size: 13.5px; padding: 11px 22px; }
.btn-lg { font-size: 16px; padding: 17px 36px; }
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); box-shadow: none; }

/* ===================== HERO (foto + granatowa nakładka) ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}
.hero > .wrap {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(19, 29, 78, calc(var(--overlay-strength) + 0.12)) 0%,
    rgba(27, 42, 107, var(--overlay-strength)) 45%,
    rgba(43, 75, 215, calc(var(--overlay-strength) - 0.28)) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: 20px;
  transform: translateY(16px);
  padding-top: 50px;
  padding-bottom: 96px;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
}
.chip-outline { border: 2px solid rgba(255, 255, 255, 0.55); color: #fff; }
.chip-solid { background: var(--magenta); color: #fff; }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(19, 29, 78, 0.45);
  line-height: 1.05;
  max-width: 760px;
}
.hero p.sub {
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 660px;
  margin: 24px 0 0;
  text-wrap: pretty;
}

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 32px 0 20px; }
.hero-cta-row .btn-lg { flex: 1 1 auto; max-width: 340px; min-height: 64px; text-align: center; display: inline-flex; justify-content: center; align-items: center; padding: 0 38px; }
.hero-cta-row .btn-lg:first-child { font-size: 16.5px; }
.hero .micro {
  display: block;
  margin-top: 18px;
  font-family: var(--font-hand);
  font-size: 21px;
  font-weight: 600;
  color: var(--pink-soft);
  opacity: 0.95;
  letter-spacing: 0.3px;
  padding-left: 4px;
}

@media (min-width: 1024px) and (max-height: 850px) {
  .hero {
    min-height: calc(100vh - var(--header-height));
  }
  .hero-content {
    margin: 10px 0 0 15px;
    padding-top: 24px;
    padding-bottom: 60px;
    transform: none;
  }
  .hero h1 {
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.05;
  }
  .hero p.sub {
    font-size: 19px;
    margin-top: 20px;
  }
  .hero-cta-row {
    margin-top: 26px;
  }
}

@media (max-width: 880px) {
  .hero { min-height: auto; }
  .hero-content { max-width: 100%; margin: 0; transform: none; padding-top: 40px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(36px, 9vw, 48px); }
  .hero-cta-row .btn-lg { max-width: 100%; }
  .hero p.sub { font-size: 18px; margin-top: 20px; }
  .hero-cta-row { margin-top: 32px; flex-direction: column; align-items: stretch; }
}

/* ===================== PASEK WYRÓŻNIKÓW ===================== */
.stats { background: #fff; padding: 54px 0 50px; border-bottom: 1px solid var(--line); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
@media (max-width: 980px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }
.stat h3 { font-size: 24px; color: var(--cobalt); margin-bottom: 4px; }
.stat h4 { font-size: 15.5px; font-weight: 600; color: var(--magenta); margin-bottom: 8px; }
.stat p { margin: 0; font-size: 15.5px; color: rgba(27, 42, 107, 0.8); }

/* ===================== SEKCJE — wspólne ===================== */
.kicker {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 3.4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-head { max-width: 760px; margin: 0 auto 52px; }
.section-head p { text-align: center; font-size: 18.5px; color: rgba(27, 42, 107, 0.85); text-wrap: pretty; }

/* ===================== MANIFEST ===================== */
.manifest { background: var(--bg-gray); padding: 88px 0; position: relative; overflow: hidden; }
.manifest-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.manifest p { font-size: 19px; text-wrap: pretty; }
.manifest p.lead { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 26px 0 14px; }
.manifest .accent { color: var(--magenta); font-weight: 700; }

/* ===================== PILLARS ===================== */
.pillars { background: var(--bg-gray); padding: 92px 0; position: relative; overflow: hidden; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 920px) { .pillar-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.pillar {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 40px rgba(27, 42, 107, 0.18);
}
.pillar img.ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 29, 78, 0.1) 0%, rgba(19, 29, 78, 0.55) 45%, rgba(19, 29, 78, 0.92) 100%);
}
.pillar-body { position: relative; z-index: 2; color: #fff; padding: 28px 26px 26px; }
.pillar-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  background: var(--magenta);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.pillar h3 { font-size: 23px; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 10px; }
.pillar p { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.92); }

/* ===================== HARMONOGRAM ===================== */
.schedule {
  background: #fff;
  color: var(--navy);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.schedule .section-title { color: var(--navy); }
.schedule .kicker { color: var(--magenta); }
.schedule p { color: rgba(27, 42, 107, 0.85); }

.timeline-wrap {
  position: relative;
  max-width: 760px;
  margin: 64px auto 0;
}
.timeline-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 140px;
  width: 2px;
  background: rgba(27, 42, 107, 0.15);
}
.timeline-item {
  display: flex;
  position: relative;
  margin-bottom: 56px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-time {
  width: 120px;
  text-align: right;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--magenta);
  padding-top: 6px;
  padding-right: 32px;
}
.timeline-icon {
  position: absolute;
  left: 140px;
  top: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--cobalt);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  z-index: 2;
  box-shadow: 0 0 15px rgba(27, 42, 107, 0.08);
}
.timeline-icon svg { width: 20px; height: 20px; stroke-width: 2.5; }
.timeline-content {
  padding-left: 56px;
  flex: 1;
}
.timeline-content h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timeline-content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(27, 42, 107, 0.8);
}

/* Wyróżniony punkt: 20:00 Start gry */
.timeline-main .timeline-icon {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
  box-shadow: 0 0 20px rgba(229, 35, 154, 0.4);
}
.timeline-main .timeline-time { color: var(--magenta); }
.timeline-main .timeline-content h3 { color: var(--magenta); }

@media (max-width: 640px) {
  .timeline-wrap { margin-top: 48px; }
  .timeline-line { left: 22px; }
  .timeline-item { flex-direction: column; padding-left: 64px; margin-bottom: 40px; }
  .timeline-time { width: auto; text-align: left; padding: 0 0 8px; font-size: 20px; }
  .timeline-icon { left: 22px; width: 36px; height: 36px; top: 0; }
  .timeline-icon svg { width: 16px; height: 16px; }
  .timeline-content { padding-left: 0; }
}

/* ===================== CENNIK ===================== */
.pricing { background: var(--bg-gray); padding: 92px 0; position: relative; overflow: hidden; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 28px;
  justify-content: center;
  margin-bottom: 34px;
}
.price-grid.single-layout {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto 34px;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: minmax(0, 440px); } }
.price-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(27, 42, 107, 0.12);
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-card.single-card {
  position: relative;
  border: 2px dashed rgba(27, 42, 107, 0.2);
  padding: 48px 56px;
  background: #fff;
  border-radius: 20px;
}
/* Wcięcia biletowe (perforacja) */
.price-card.single-card::before,
.price-card.single-card::after {
  content: "";
  position: absolute;
  top: 145px;
  width: 44px; height: 44px;
  background: var(--bg-gray); /* kolor tła sekcji pricing */
  border-radius: 50%;
  border: 2px dashed rgba(27, 42, 107, 0.2);
  z-index: 5;
}
.price-card.single-card::before {
  left: -24px;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.price-card.single-card::after {
  right: -24px;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
@media (max-width: 640px) {
  .price-card.single-card { padding: 36px 28px; }
  .price-card.single-card::before,
  .price-card.single-card::after { top: 125px; width: 36px; height: 36px; }
  .price-card.single-card::before { left: -20px; }
  .price-card.single-card::after { right: -20px; }
}
.card-header {
  text-align: center;
  border-bottom: 1px dashed rgba(27, 42, 107, 0.15);
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.card-price-section {
  text-align: center;
  margin-bottom: 28px;
}
.card-price-section .price-row {
  justify-content: center;
}
.btn-ticket {
  max-width: 420px;
  margin: 0 auto 36px;
  width: 100%;
}
.ticket-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px dashed rgba(27, 42, 107, 0.15);
}
@media (max-width: 640px) {
  .ticket-info-grid { grid-template-columns: 1fr; }
}
.ticket-box {
  background: rgba(27, 42, 107, 0.03);
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--navy-deep);
  text-align: left;
}
.ticket-box strong {
  display: block;
  color: var(--magenta);
  margin-bottom: 6px;
  font-size: 15.5px;
}
.ticket-checklist {
  gap: 16px;
  margin: 0 auto;
  max-width: 500px;
}
.ticket-checklist li {
  line-height: 1.5;
}
.ticket-box p {
  margin: 0;
}
.price-pool {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(27, 42, 107, 0.6);
}
.price-card h3 { font-size: 26px; text-transform: uppercase; margin: 8px 0 2px; }
.price-card .who { font-size: 15px; color: rgba(27, 42, 107, 0.75); margin: 0 0 18px; }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price-row .od { font-size: 15px; font-weight: 700; color: rgba(27, 42, 107, 0.6); }
.price-row .amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 62px;
  line-height: 1;
  color: var(--magenta);
}
.price-row .zl { font-family: var(--font-display); font-size: 24px; color: var(--magenta); }
.price-next { font-size: 14px; color: rgba(27, 42, 107, 0.6); margin: 8px 0 20px; }
.price-next b { color: var(--navy); }
.checklist { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; }
.checklist .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cobalt);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 3px;
}
.price-card .btn { width: 100%; margin-top: auto; }
.price-card.featured { outline: 3px solid var(--magenta); outline-offset: -3px; position: relative; }
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 16px;
  white-space: nowrap;
}

/* — promo / licznik (różowa ramka dashed jak na stronie urodzin) — */
.melt {
  position: relative;
  max-width: 868px;
  margin: 0 auto;
  background: #fffcf8;
  border: 2px dashed var(--magenta);
  border-radius: 14px;
  padding: 26px 32px 28px;
  text-align: center;
}
.melt h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--magenta);
  margin-bottom: 8px;
}
.melt p { margin: 0 0 14px; font-size: 16.5px; }
.melt p strong { color: var(--magenta); }
.melt-bar { height: 14px; background: var(--line); border-radius: 999px; overflow: hidden; }
.melt-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cobalt), var(--magenta));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.melt .fine { font-size: 13.5px; color: rgba(27, 42, 107, 0.65); margin: 12px 0 0; }

/* ===================== OPINIE ===================== */
.reviews { background: #fff; padding: 92px 0; position: relative; overflow: hidden; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 960px) { .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(27, 42, 107, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 36px 32px;
}
.review-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.review-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 107, 0.95) 0%, rgba(27, 42, 107, 0.4) 55%, rgba(27, 42, 107, 0.1) 100%);
  z-index: 1;
}
.review-content {
  position: relative;
  z-index: 2;
}
.review-badge {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.review-content blockquote {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

/* ===================== FAQ ===================== */
.faq { background: var(--bg-gray); padding: 92px 0; }
.faq-groups { max-width: 860px; margin: 0 auto; display: grid; gap: 42px; }
.faq-group h3 {
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.faq-group h3 .gdot { width: 13px; height: 13px; border-radius: 50%; background: var(--magenta); flex: none; }
.faq-group:nth-child(2) h3 .gdot { background: var(--cobalt); }
.faq-group:nth-child(3) h3 .gdot { background: var(--teal); }
.faq-group:nth-child(4) h3 .gdot { background: #7A3FD1; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(27, 42, 107, 0.06);
}
details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 56px 16px 22px;
  position: relative;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  background: var(--cobalt);
  color: #fff;
  transition: transform 0.2s ease;
}
details[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); background: var(--magenta); }
details .answer { padding: 0 22px 18px; font-size: 16.5px; }
details .answer p { margin: 0; }
details[open] summary { border-bottom: 1px dashed var(--line); margin-bottom: 12px; }

/* ===================== FINAŁ ===================== */
.finale {
  position: relative;
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(43, 75, 215, 0.5), transparent 60%),
    radial-gradient(600px 360px at 10% 100%, rgba(229, 35, 154, 0.35), transparent 60%),
    var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 88px 0 92px;
  overflow: hidden;
}
.finale h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto 14px;
}
.finale p { color: rgba(255, 255, 255, 0.9); max-width: 56ch; margin: 0 auto 30px; }
.finale .micro {
  display: block;
  margin-top: 18px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--pink-soft);
}

/* ===================== STOPKA ===================== */
footer { background: #ECEEF8; color: var(--navy); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; background: #fff; }
.footer-grid h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 12px; color: var(--cobalt); }
.footer-grid p, .footer-grid li { font-size: 15.5px; line-height: 1.7; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px dashed rgba(27, 42, 107, 0.3);
  font-size: 13.5px;
  opacity: 0.7;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: #111;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: linear-gradient(100deg, var(--cta-a), var(--cta-b));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(229, 35, 154, 0.4);
}
.social-icons svg {
  width: 22px;
  height: 22px;
}

/* ===================== REVEAL ===================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-d1.visible { transition-delay: 0.1s; }
  .reveal-d2.visible { transition-delay: 0.2s; }
}

/* ===================== MEM BANNER ===================== */
.mem-banner {
  background: #fff;
  padding: 92px 0 60px 0;
  position: relative;
  overflow: hidden;
}


.mem-bg {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.mem-bg img {
  width: 100%;
  display: block;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero-content { padding-top: 64px; padding-bottom: 72px; }
  .price-card { padding: 26px 22px 26px; }
}

/* Nowe Sekcje: Strefy i Slider */
.zones-section {
  padding: 60px 0;
  background: #fff;
  position: relative;
  z-index: 2;
  border-top: 2px solid #111;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.zone-card {
  background: #fff;
  border: 2px solid #111;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 4px 4px 0 #111;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.zone-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #111;
}

.zone-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.zone-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.zone-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Slider Section */
.slider-section {
  padding: 60px 0 80px;
  background: var(--bg-gray);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-top: 2px solid #111;
}

.slider-container-wrapper {
  position: relative;
  margin-top: 40px;
}

.retro-swiper {
  padding-bottom: 20px;
  overflow: hidden; /* Swiper usually handles this, but safe to set */
}

.retro-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.zone-icon {
  width: 150px;
  height: auto;
  margin: 0 auto 24px auto;
  display: block;
}

.slider-item {
  width: max-content !important;
  background: #111;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px 15px; /* 16px góra/dół (ramka filmu), 15px bok (łącznie 30px między zdjęciami czarnego tła) */
  margin: 0 !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .slider-item {
    width: max-content !important;
    max-width: none;
  }
}

/* Otwory w taśmie filmowej */
.slider-item::before, .slider-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  /* kolor var(--bg-gray) to "przezroczystość" wychodząca na tło sekcji */
  background-image: repeating-linear-gradient(90deg, 
    var(--bg-gray) 0, var(--bg-gray) 12px, 
    transparent 12px, transparent 24px);
  background-size: 24px 100%;
}
.slider-item::before { top: 3px; }
.slider-item::after { bottom: 3px; }

.slider-item img {
  width: auto;
  height: 400px;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 0;
  filter: sepia(0.3) grayscale(0.2) contrast(1.1); /* lekki efekt starej fotografii */
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: transform 0.2s, background 0.2s;
}

.slider-btn:hover {
  background: #E5239A;
  transform: translateY(-2px);
}

