/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --bg2:       #101010;
  --bg3:       #181818;
  --bg4:       #202020;
  --border:    #272727;
  --border2:   #333333;
  --gold:      #c9a84c;
  --gold-lt:   #e8c96a;
  --gold-dim:  rgba(201,168,76,.15);
  --white:     #f0ede8;
  --gray:      #777777;
  --gray-lt:   #a8a49e;
  --radius:    14px;
  --tr:        .22s ease;
  --font-body: 'DM Sans', sans-serif;
  --font-head: 'DM Serif Display', serif;
  --font-alt:  'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, #1a1200, #2a1e00, #1a1200);
  border-bottom: 1px solid rgba(201,168,76,.3);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-lt);
  position: relative;
  z-index: 200;
}
.urgency-bar strong { color: var(--gold-lt); }
.urgency-bar s { color: var(--gray); }

.urgency-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.urgency-bar__timer {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.urgency-bar__timer strong { color: var(--gold); font-variant-numeric: tabular-nums; }

.urgency-bar__cta {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(201,168,76,.4);
  padding: 3px 12px;
  border-radius: 20px;
  transition: var(--tr);
  white-space: nowrap;
}
.urgency-bar__cta:hover { background: var(--gold-dim); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: #161616;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 13px;
  color: var(--gray-lt);
  line-height: 1.5;
  flex: 1;
}
.cookie-banner__text strong { color: var(--white); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__reject {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--gray-lt);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--tr);
}
.cookie-banner__reject:hover { border-color: var(--gray); color: var(--white); }
.cookie-banner__accept {
  background: var(--gold);
  border: none;
  color: #080808;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--tr);
}
.cookie-banner__accept:hover { background: var(--gold-lt); }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-cta__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #161616;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.7);
}
.floating-cta__title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.floating-cta__sub {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 17px 38px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, #b8922e 0%, var(--gold-lt) 50%, #b8922e 100%);
  background-size: 200% 100%;
  color: #080808;
  font-weight: 700;
}
.btn--gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border2);
}
.btn--ghost:hover { border-color: var(--gray); background: rgba(255,255,255,.04); }

.btn--accent {
  background: var(--bg4);
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,.4);
  font-weight: 600;
}
.btn--accent:hover {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.3);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-alt);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: .01em;
}
.nav__logo span { color: var(--gold); font-style: italic; }

.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  color: var(--gray-lt);
  transition: var(--tr);
  font-weight: 400;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 100px 0; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-lt);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 64px - 41px);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.38) saturate(.9);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,8,8,.96) 0%,
    rgba(8,8,8,.78) 50%,
    rgba(8,8,8,.2) 100%
  );
}
/* grain */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 80px 28px;
  margin-left: max(28px, calc(50vw - 600px));
  max-width: 660px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fade-up .7s ease .1s forwards;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
  opacity: 0;
  animation: fade-up .7s ease .2s forwards;
}
.hero__title span {
  color: var(--gold);
  font-style: italic;
}

.hero__desc {
  font-size: 18px;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 300;
  opacity: 0;
  animation: fade-up .7s ease .3s forwards;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up .7s ease .4s forwards;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up .7s ease .45s forwards;
}
.hero__trust-item {
  font-size: 12px;
  color: var(--gray);
}
.hero__trust-sep { color: var(--border2); }

.hero__stats {
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fade-up .7s ease .55s forwards;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 26px;
}
.hero__stat:first-child { padding-left: 0; }

.hero__stat-num {
  font-family: var(--font-alt);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  font-weight: 400;
}
.hero__stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--bg2); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.why__item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.why__item:hover {
  border-color: rgba(201,168,76,.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.why__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--gold);
}
.why__icon svg { width: 100%; height: 100%; display: block; }

.why__item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.why__item p {
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   DIETY
   ============================================================ */
.diety { background: var(--bg); }

.diety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.book-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .35s ease, box-shadow .35s ease;
}
.book-card:hover {
  border-color: rgba(201,168,76,.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.5);
}

.book-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold);
  color: #080808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.book-card__cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.book-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,8,8,.7));
}
.book-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.book-card:hover .book-card__cover img { transform: scale(1.06); }

.book-card__body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tag-color, var(--gold));
  margin-bottom: 8px;
}

.book-card__title {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.book-card__desc {
  font-size: 13.5px;
  color: var(--gray-lt);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.book-card__features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
  flex: 1;
}
.book-card__features li {
  font-size: 13px;
  color: var(--gray-lt);
}

.book-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.book-card__price {
  font-family: var(--font-alt);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.book-card__price span { font-size: 16px; }

.book-card__per {
  font-size: 11px;
  color: var(--gray);
  background: var(--gold-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

.card__trust {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   ZESTAW
   ============================================================ */
.zestaw {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* złoty blask w tle */
.zestaw::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.zestaw__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.zestaw__cover {
  position: relative;
}
.zestaw__cover img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(0,0,0,.6);
}

.zestaw__cover-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: linear-gradient(135deg, #b8922e, var(--gold-lt));
  color: #080808;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,168,76,.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #080808;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

.zestaw__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 58px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.zestaw__title span { color: var(--gold); font-style: italic; }

.zestaw__desc {
  font-size: 16px;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}

.zestaw__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 30px;
}
.zestaw__list li {
  font-size: 14.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.zestaw__check { color: var(--gold); font-weight: 700; }

.zestaw__pricing {
  margin-bottom: 22px;
}
.zestaw__old-price {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 4px;
}
.zestaw__old-price s { color: var(--gray); }

.zestaw__price {
  font-family: var(--font-alt);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.zestaw__price span { font-size: 28px; }

.zestaw__saving {
  font-size: 13px;
  color: #5ae09a;
  font-weight: 600;
}

.zestaw__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.trust-badge {
  font-size: 12px;
  color: var(--gray-lt);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================================
   SAMPLE
   ============================================================ */
.sample { background: var(--bg); }

.sample__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.sample__item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .3s ease;
}
.sample__item:hover { border-color: var(--border2); }

.sample__num {
  font-family: var(--font-alt);
  font-size: 52px;
  font-weight: 700;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 14px;
}

.sample__item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.sample__item p {
  font-size: 13.5px;
  color: var(--gray-lt);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg2); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.faq__item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq__item[open] { border-color: rgba(201,168,76,.35); }

.faq__q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--tr);
  font-family: var(--font-alt);
}
details[open] .faq__q::after { content: '−'; }

.faq__a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  background: linear-gradient(135deg, #080808 0%, #130f00 50%, #080808 100%);
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
}

.finalcta__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 68px);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.finalcta__desc {
  font-size: 20px;
  color: var(--gray-lt);
  margin-bottom: 36px;
  font-weight: 300;
  font-family: var(--font-alt);
  font-style: italic;
  position: relative;
}

.finalcta__note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
  position: relative;
}
.finalcta__note a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040404;
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
  font-weight: 300;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.footer__links a {
  font-size: 14px;
  color: var(--gray-lt);
  transition: var(--tr);
  font-weight: 300;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }
.reveal-delay-4 { transition-delay: .34s; }
.reveal-delay-5 { transition-delay: .42s; }
.reveal-delay-6 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .diety__grid { grid-template-columns: repeat(2, 1fr); }
  .sample__grid { grid-template-columns: repeat(2, 1fr); }
  .zestaw__inner { grid-template-columns: 1fr; gap: 40px; }
  .zestaw__cover { max-width: 440px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav__links { display: none; }
  .urgency-bar { font-size: 12px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .why__grid { grid-template-columns: 1fr; }
  .diety__grid { grid-template-columns: 1fr; }
  .sample__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .floating-cta { left: 16px; right: 16px; bottom: 16px; }
  .cookie-banner { flex-direction: column; gap: 14px; left: 12px; right: 12px; }
}
