/*
 * WINMED — front-page.css
 * Zapisz jako: wp-content/themes/TWOJ_MOTYW/css/front-page.css
 *
 * ARCHITEKTURA IZOLACJI:
 * Każdy selektor zaczyna się od "body.home .wmfp"
 * To daje specyficzność (0,2,0) — bije KAŻDY styl motywu
 * który używa .klasy (0,1,0) lub elementu (0,0,1)
 * Jedyne co może bić to "body.home .wmfp h1 span" 
 * dlatego H1 ma własne spany z klasami wmfp__
 */

 html {
    scroll-behavior: smooth;
}

/* ════════════════════════════════════════════════════════
   RESET — tylko w obrębie .wmfp
   ════════════════════════════════════════════════════════ */
body.home .wmfp *,
body.home .wmfp *::before,
body.home .wmfp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body.home .wmfp img { max-width: 100%; display: block; }
body.home .wmfp a   { text-decoration: none; }

/* ════════════════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════════════════ */
body.home .wmfp {
  --red:       #E42D39;
  --red-glow:  rgba(228, 45, 57, 0.45);
  --gold:      #c9a84c;
  --gold-l:    #edd97a;
  --gold-d:    #9a6e28;
  --black:     #060606;
  --white:     #ffffff;
  --silver:    rgba(255, 255, 255, 0.55);
  --glass:     rgba(255, 255, 255, 0.055);
  --glass-b:   rgba(255, 255, 255, 0.12);

  /* Czcionki — Bebas Neue dla H1 */
  --f-disp:    'Bebas Neue', 'Barlow Condensed', 'Oswald', sans-serif;
  --f-cond:    'Barlow Condensed', 'Oswald', sans-serif;
  --f-body:    'Barlow', 'DM Sans', sans-serif;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  font-family: var(--f-body);
  background:  var(--black);
  color:       var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════════════════
   HERO — STRUKTURA
   ════════════════════════════════════════════════════════ */
body.home .wmfp__hero {
  position:       relative;
  width:          100%;
  /*
   * Header sticky = 72px + banner = 36px = 108px
   * Hero = 100vh minus 108px = stats bar zawsze widoczny
   */
  min-height:     calc(100svh - 108px);
  min-height:     calc(100vh - 108px);
  display:        flex;
  flex-direction: column;
  overflow:       hidden;
  background:     var(--black);
}

/* Zdjęcie tła */
body.home .wmfp__hero-img {
  position:       absolute;
  inset:          0;
  width:          100%;
  height:         100%;
  object-fit:     cover;
  object-position: 65% center;
  z-index:        0;
}

/* Gradient overlay — lewy ciemny, prawy jasny */
body.home .wmfp__hero-ov {
  position: absolute;
  inset:    0;
  z-index:  1;
  background: linear-gradient(
    108deg,
    rgba(0,0,0,.97) 0%,
    rgba(0,0,0,.88) 24%,
    rgba(0,0,0,.60) 48%,
    rgba(0,0,0,.18) 70%,
    rgba(0,0,0,.04) 100%
  );
}

/* Vignette dół */
body.home .wmfp__hero-vig {
  position:   absolute;
  bottom:     0;
  left:       0;
  right:      0;
  height:     280px;
  z-index:    2;
  background: linear-gradient(to top, rgba(0,0,0,.92), transparent);
}

/* Grain texture */
body.home .wmfp__hero-grain {
  position:        absolute;
  inset:           0;
  z-index:         3;
  pointer-events:  none;
  opacity:         .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Body — kontener treści */
body.home .wmfp__hero-body {
  position:    relative;
  z-index:     10;
  flex:        1;
  display:     flex;
  align-items: center; /* środek pionowy w dostępnej przestrzeni */
  padding:     clamp(32px, 4vw, 60px) 5vw clamp(24px, 3vw, 40px);
  max-width:   1400px;
  width:       100%;
  margin:      0 auto;
}

body.home .wmfp__hero-left {
  max-width: 580px;
  width:     100%;
}

/* ════════════════════════════════════════════════════════
   EYEBROW
   ════════════════════════════════════════════════════════ */
body.home .wmfp__eyebrow {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  font-family:     var(--f-cond);
  font-size:       11px !important;
  font-weight:     600;
  letter-spacing:  .28em;
  text-transform:  uppercase;
  color:           var(--red);
  margin-bottom:   20px;
  opacity:         0;
  transform:       translateY(14px);
  animation:       wmfp-up .55s .1s var(--ease) forwards;
}
body.home .wmfp__eyebrow-line {
  display:    block;
  width:      32px;
  height:     1px;
  background: var(--red);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   H1 — IZOLACJA OD MOTYWU
   Selektory z 3 klasami = specyficzność (0,3,0)
   Bije KAŻDY styl motywu łącznie z Elementorem
   ════════════════════════════════════════════════════════ */

/* Reset kontenera który może psuc layout */
body.home .wmfp .wmfp__hero .wmfp__hero-body {
  overflow: visible !important;
}

body.home .wmfp .wmfp__hero .wmfp__h1 {
  all: unset !important; /* nuclear reset — kasuje WSZYSTKO z motywu */
  display:         block !important;
  font-family:     'Bebas Neue', 'Barlow Condensed', 'Oswald', sans-serif !important;
  font-size:       clamp(52px, 6.5vw, 90px) !important;
  font-weight:     400 !important;
  line-height:     .91 !important;
  letter-spacing:  .02em !important;
  text-transform:  uppercase !important;
  color:           #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background:      none !important;
  margin:          0 0 22px 0 !important;
  padding:         0 !important;
  border:          none !important;
  opacity:         0;
  transform:       translateY(18px);
  animation:       wmfp-up .65s .22s var(--ease) forwards;
}

/* Każdy rząd H1 — BLOK, dziedziczy rozmiar z h1 */
body.home .wmfp .wmfp__hero .wmfp__h1 .wmfp__h1-row {
  all: unset !important;
  display:                 block !important;
  font-family:             'Bebas Neue', 'Barlow Condensed', 'Oswald', sans-serif !important;
  font-size:               clamp(52px, 6.5vw, 90px) !important;
  font-weight:             400 !important;
  line-height:             .91 !important;
  letter-spacing:          .02em !important;
  text-transform:          uppercase !important;
  color:                   #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background:              none !important;
  -webkit-background-clip: unset !important;
  background-clip:         unset !important;
}

/* Złoty gradient na "MEDAGLIE" — triple specificity */
body.home .wmfp .wmfp__hero .wmfp__h1 .wmfp__gold {
  all: unset !important;
  display:                 block !important;
  font-family:             'Bebas Neue', 'Barlow Condensed', 'Oswald', sans-serif !important;
  font-size:               clamp(52px, 6.5vw, 90px) !important;
  font-weight:             400 !important;
  line-height:             .91 !important;
  letter-spacing:          .02em !important;
  text-transform:          uppercase !important;
  background:              linear-gradient(135deg, #edd97a 0%, #c9a84c 38%, #9a6e28 68%, #edd97a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip:         text !important;
  color:                   transparent !important;
}

/* Chrom na "TROFEI" — triple specificity */
body.home .wmfp .wmfp__hero .wmfp__h1 .wmfp__chrome {
  all: unset !important;
  display:                 inline !important;
  font-family:             inherit !important;
  font-size:               inherit !important;
  font-weight:             inherit !important;
  line-height:             inherit !important;
  letter-spacing:          inherit !important;
  text-transform:          inherit !important;
  background:              linear-gradient(155deg, #fff 0%, #e4e4e4 18%, #b8b8b8 50%, #efefef 76%, #999 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip:         text !important;
  color:                   transparent !important;
  filter: drop-shadow(0 1px 6px rgba(255,255,255,.12));
}

/* ════════════════════════════════════════════════════════
   OPIS
   ════════════════════════════════════════════════════════ */
body.home .wmfp__desc {
  font-family:  var(--f-body) !important;
  font-size:    16px !important;
  font-weight:  300 !important;
  line-height:  1.72 !important;
  color:        var(--silver) !important;
  max-width:    430px;
  margin:       0 0 36px 0 !important;
  padding:      0 !important;
  opacity:      0;
  transform:    translateY(14px);
  animation:    wmfp-up .65s .36s var(--ease) forwards;
}

/* ════════════════════════════════════════════════════════
   CTA — DARK LUXURY GOLD
   ════════════════════════════════════════════════════════ */
body.home .wmfp__cta-wrap {
  margin-bottom: 40px;
  opacity:       0;
  transform:     translateY(14px);
  animation:     wmfp-up .65s .48s var(--ease) forwards;
}

/* Animowany złoty border (ring wokół przycisku) */
body.home .wmfp__gold-ring {
  display:          inline-block;
  border-radius:    10px;
  padding:          2px;
  background:       linear-gradient(135deg, #3d2800, #c8860a, #fde87a, #fff5b0, #fde87a, #c8860a, #3d2800);
  background-size:  400% 400%;
  animation:        wmfp-gold-border 4s ease infinite;
  box-shadow:       0 0 28px rgba(200,134,10,.55), 0 0 60px rgba(200,134,10,.2);
}

@keyframes wmfp-gold-border {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Sam przycisk */
body.home .wmfp__cta-btn {
  display:          inline-flex !important;
  align-items:      center !important;
  gap:              11px !important;
  padding:          16px 32px !important;
  background:       linear-gradient(160deg, #150c00, #2a1800, #150c00) !important;
  color:            #fde87a !important;
  -webkit-text-fill-color: #fde87a !important;
  font-family:      var(--f-cond) !important;
  font-size:        14px !important;
  font-weight:      800 !important;
  letter-spacing:   .17em !important;
  text-transform:   uppercase !important;
  border:           none !important;
  border-radius:    8px !important;
  cursor:           pointer !important;
  position:         relative !important;
  overflow:         hidden !important;
  white-space:      nowrap;
  transition:       transform .2s var(--ease), box-shadow .2s !important;
  /* Reset motywu */
  outline:          none !important;
  text-decoration:  none !important;
  box-shadow:       none !important;
  width:            auto !important;
  height:           auto !important;
}

/* Ikona Font Awesome w przycisku */
body.home .wmfp__cta-btn i {
  color:                   #fde87a !important;
  -webkit-text-fill-color: #fde87a !important;
  font-size:               15px !important;
}

/* Sweep shine effect */
body.home .wmfp__cta-btn::before {
  content:    '';
  position:   absolute;
  top:        -20%;
  left:       -80%;
  width:      55%;
  height:     140%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255,255,200,.14) 40%,
    rgba(255,255,255,.3)  50%,
    rgba(255,255,200,.14) 60%,
    transparent
  );
  transform:   skewX(-15deg);
  animation:   wmfp-sweep 3s ease infinite;
  pointer-events: none;
}

@keyframes wmfp-sweep {
  0%   { left: -80%; }
  100% { left: 180%; }
}

body.home .wmfp__cta-btn:hover {
  transform:  translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(200,134,10,.35) !important;
}

/* ════════════════════════════════════════════════════════
   KARTY — Medaglie / Trofei
   ════════════════════════════════════════════════════════ */
body.home .wmfp__cards {
  display:   flex;
  gap:       12px;
  flex-wrap: wrap;
  opacity:   0;
  transform: translateY(12px);
  animation: wmfp-up .65s .6s var(--ease) forwards;
}

body.home .wmfp__card {
  display:          flex;
  align-items:      center;
  gap:              14px;
  padding:          14px 20px 14px 14px;
  background:       var(--glass);
  border:           1px solid var(--glass-b) !important;
  border-radius:    12px;
  backdrop-filter:  blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:       border-color .25s, background .25s, transform .3s var(--ease);
  min-width:        158px;
  position:         relative;
  overflow:         hidden;
  color:            var(--white) !important;
  text-decoration:  none !important;
}

body.home .wmfp__card::before {
  content:    '';
  position:   absolute;
  top:        0;
  left:       14px;
  right:      14px;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
}

body.home .wmfp__card:hover {
  border-color: rgba(228,45,57,.38) !important;
  background:   rgba(228,45,57,.05);
  transform:    translateY(-3px);
}

body.home .wmfp__card-icon {
  width:        44px;
  height:       44px;
  border-radius: 10px;
  background:   rgba(255,255,255,.04);
  border:       1px solid rgba(255,255,255,.09);
  display:      flex;
  align-items:  center;
  justify-content: center;
  flex-shrink:  0;
  transition:   background .25s, border-color .25s;
}
body.home .wmfp__card:hover .wmfp__card-icon {
  background:   rgba(228,45,57,.1);
  border-color: rgba(228,45,57,.3);
}
body.home .wmfp__card-icon svg { width: 24px; height: 24px; }

body.home .wmfp__card-info { flex: 1; min-width: 0; }

body.home .wmfp__card-name {
  font-family:    var(--f-cond) !important;
  font-size:      15px !important;
  font-weight:    700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color:          var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  display:        block;
  margin-bottom:  2px;
  background:     none !important;
}

body.home .wmfp__card-sub {
  font-family:    var(--f-cond) !important;
  font-size:      10px !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,.38) !important;
  -webkit-text-fill-color: rgba(255,255,255,.38) !important;
  display:        block;
  background:     none !important;
}

body.home .wmfp__card-arr {
  width:        22px;
  height:       22px;
  border-radius: 50%;
  border:       1px solid rgba(255,255,255,.18);
  display:      flex;
  align-items:  center;
  justify-content: center;
  flex-shrink:  0;
  margin-left:  auto;
  color:        rgba(255,255,255,.7);
  transition:   border-color .2s, background .2s;
}
body.home .wmfp__card:hover .wmfp__card-arr {
  border-color: var(--red);
  background:   rgba(228,45,57,.15);
}
body.home .wmfp__card-arr svg { width: 10px; height: 10px; }

/* ════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════ */
body.home .wmfp__stats {
  position:   relative;
  z-index:    10;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #040404;
  /* BEZ opacity:0 i animacji — stats zawsze widoczny od razu */
}

body.home .wmfp__stats-inner {
  display:             grid;
  grid-template-columns: repeat(3, 1fr);
  max-width:           1400px;
  margin:              0 auto;
  padding:             0 5vw;
}

body.home .wmfp__stat {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  padding:         28px 16px;
  position:        relative;
  transition:      background .2s;
}
body.home .wmfp__stat + .wmfp__stat::before {
  content:    '';
  position:   absolute;
  left:       0;
  top:        22%;
  bottom:     22%;
  width:      1px;
  background: rgba(255,255,255,.07);
}
body.home .wmfp__stat:hover { background: rgba(255,255,255,.02); }

body.home .wmfp__stat-line {
  width:        22px;
  height:       2px;
  background:   var(--red);
  border-radius: 1px;
  margin:       0 auto 10px;
  box-shadow:   0 0 8px var(--red-glow);
}

body.home .wmfp__stat-num {
  font-family:    var(--f-disp) !important;
  font-size:      clamp(28px, 3.2vw, 44px) !important;
  font-weight:    400 !important;
  letter-spacing: .03em !important;
  line-height:    1 !important;
  margin-bottom:  7px;
  background: linear-gradient(160deg, #fff 0%, #ececec 15%, #c2c2c2 48%, #f2f2f2 72%, #a0a0a0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip:         text !important;
  filter: drop-shadow(0 1px 8px rgba(255,255,255,.18));
}

body.home .wmfp__stat-label {
  font-family:    var(--f-cond) !important;
  font-size:      11px !important;
  font-weight:    400 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,.36) !important;
  -webkit-text-fill-color: rgba(255,255,255,.36) !important;
  text-align:     center;
  background:     none !important;
}

/* ════════════════════════════════════════════════════════
   ANIMACJE
   ════════════════════════════════════════════════════════ */
@keyframes wmfp-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════
   MOBILE — ≤ 768px
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Wyłącz animacje */
  body.home .wmfp__eyebrow,
  body.home .wmfp__h1,
  body.home .wmfp__desc,
  body.home .wmfp__cta-wrap,
  body.home .wmfp__cards,
  body.home .wmfp__stats {
    animation: none !important;
    opacity:   1 !important;
    transform: none !important;
  }
  body.home .wmfp__gold-ring       { animation: none !important; }
  body.home .wmfp__cta-btn::before { display: none !important; }

  /* HERO — zdjęcie góra, tekst na czarnym tle dół */
  body.home .wmfp__hero {
    min-height:     auto !important;
    flex-direction: column;
    background:     #060606;
    overflow:       visible !important;
  }

  /* Zdjęcie — nowe pionowe */
  body.home .wmfp__hero-img {
    position:        relative !important;
    inset:           auto !important;
    width:           100%;
    height:          72vw;
    max-height:      320px;
    object-fit:      cover;
    object-position: center 20%;
    display:         block;
  }

  /* Gradient tylko na dole zdjęcia */
  body.home .wmfp__hero-ov {
    top:        auto !important;
    bottom:     0 !important;
    left:       0; right: 0;
    height:     60px;
    background: linear-gradient(to top, #060606 0%, transparent 100%);
  }
  body.home .wmfp__hero-vig,
  body.home .wmfp__hero-grain { display: none !important; }

  /* Treść na czarnym tle */
  body.home .wmfp__hero-body {
    position:    relative !important;
    flex:        0 0 auto !important;
    align-items: flex-start !important;
    padding:     20px 20px 16px !important;
    background:  #060606;
    min-height:  auto !important;
    width:       100%;
    max-width:   100%;
    margin:      0 !important;
  }
  body.home .wmfp__hero-left { width: 100%; max-width: 100%; }

  body.home .wmfp__eyebrow   { margin-bottom: 8px; }

  body.home .wmfp__h1 {
    font-size:     clamp(44px, 12vw, 60px) !important;
    margin-bottom: 10px !important;
    line-height:   .9 !important;
  }

  body.home .wmfp__desc {
    font-size:     14px !important;
    line-height:   1.6 !important;
    margin-bottom: 18px !important;
    max-width:     100%;
  }

  /* CTA — złoty przycisk pełna szerokość, BEZ glow na mobile */
  body.home .wmfp__gold-ring {
    width:     100%;
    display:   block;
    box-shadow: none; /* usuń glow na mobile */
  }
  body.home .wmfp__cta-btn {
    width:           100% !important;
    justify-content: center !important;
    padding:         14px !important;
    font-size:       13px !important;
  }
  body.home .wmfp__cta-wrap { margin-bottom: 14px; }

  /* Karty */
  body.home .wmfp__cards { gap: 10px; }
  body.home .wmfp__card  { flex: 1; min-width: 0; padding: 12px 10px 12px 10px; }
  body.home .wmfp__card-icon { width: 36px; height: 36px; }
  body.home .wmfp__card-icon svg { width: 20px; height: 20px; }
  body.home .wmfp__card-name { font-size: 13px !important; }
  body.home .wmfp__card-sub  { font-size: 9px !important; }

  /* Stats — scroll-triggered counter już działa w JS */
  body.home .wmfp__stats-inner { padding: 0 16px; }
  body.home .wmfp__stat        { padding: 18px 8px; }
  body.home .wmfp__stat-num    { font-size: 28px !important; }
  body.home .wmfp__stat-label  { font-size: 9px !important; letter-spacing: .08em !important; }
  body.home .wmfp__stat-line   { margin-bottom: 6px; }

  /* Usuń padding-bottom — sticky CTA z footera jest ok */
  body.home { padding-bottom: 60px !important; }
}

@media (max-width: 400px) {
  body.home .wmfp__cards { flex-direction: column; }
  body.home .wmfp__card  { flex: unset; width: 100%; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body.home .wmfp__eyebrow,
  body.home .wmfp__h1,
  body.home .wmfp__desc,
  body.home .wmfp__cta-wrap,
  body.home .wmfp__cards,
  body.home .wmfp__stats {
    animation: none !important;
    opacity:   1 !important;
    transform: none !important;
  }
  body.home .wmfp__gold-ring       { animation: none !important; }
  body.home .wmfp__cta-btn::before { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════
   SEKCJA MEDAGLIE
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   WINMED — SEKCJA MEDAGLIE 2026
   Dopisz na końcu front-page.css (zastąp poprzednią wersję)
   ═══════════════════════════════════════════════════════ */

/* ── WRAPPER ── */
body.home .wmfp-medals {
  background: #060606;
  position:   relative;
  overflow:   hidden;
}
body.home .wmfp-medals::before {
  content:    '';
  position:   absolute;
  top: 0; left: 5vw; right: 5vw;
  height:     1px;
  background: linear-gradient(90deg,transparent,rgba(201,168,76,.35),transparent);
}

/* ── INTRO GRID ── */
body.home .wmfp-medals__intro {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap:         clamp(40px,5vw,72px);
  max-width:   1400px;
  margin:      0 auto;
  padding:     clamp(64px,8vw,100px) 5vw clamp(48px,6vw,80px);
}

/* ── REVEAL ── */
body.home [data-wm-reveal] {
  opacity:    0;
  transform:  translateY(28px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1),
              transform .75s cubic-bezier(.22,1,.36,1);
}
body.home [data-wm-reveal="right"] { transition-delay: .18s; }
body.home [data-wm-reveal].is-visible { opacity:1; transform:translateY(0); }

/* ── LEWA — tekst ── */
body.home .wmfp-medals__label {
  display:         inline-flex;
  align-items:     center;
  gap:             7px;
  font-family:     'Barlow Condensed',sans-serif;
  font-size:       11px;
  font-weight:     700;
  letter-spacing:  .25em;
  text-transform:  uppercase;
  color:           #E42D39;
  margin-bottom:   16px;
  padding:         5px 14px 5px 10px;
  border:          1px solid rgba(228,45,57,.3);
  border-radius:   100px;
  background:      rgba(228,45,57,.06);
  width:           fit-content;
}


body.home .wmfp-medals__title {
  all:            unset !important;
  display:        block !important;
  font-family:    'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:      clamp(36px,4vw,58px) !important;
  font-weight:    400 !important;
  line-height:    .9 !important;
  text-transform: uppercase !important;
  color:          #fff !important;
  margin-bottom:  0 !important;
}
body.home .wmfp-medals__title em {
  font-style:              normal;
  display:                 block;
  background:              linear-gradient(135deg,#edd97a 0%,#c9a84c 40%,#9a6e28 70%,#edd97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}

/* Animowana linia złota — rysuje się do pełnej szerokości tytułu */
body.home .wmfp-medals__title-line {
  display:       block;
  width:         0;
  height:        1px;  /* cienka jak brzytwa */
  background:    linear-gradient(90deg,#c9a84c,#edd97a 40%,rgba(201,168,76,.2));
  margin:        16px 0 22px;
  transition:    width 1s .5s cubic-bezier(.22,1,.36,1);
  box-shadow:    0 0 12px rgba(201,168,76,.4);
}
body.home .wmfp-medals[data-visible] .wmfp-medals__title-line { width: 100%; max-width: 520px; }

body.home .wmfp-medals__lead {
  font-family: 'Barlow','DM Sans',sans-serif;
  font-size:   16px;
  line-height: 1.75;
  color:       rgba(255,255,255,.55);
  margin:      0 0 28px;
  font-weight: 300;
}

/* Punkty */
body.home .wmfp-medals__points {
  list-style: none;
  margin:     0 0 36px;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        20px;
}
body.home .wmfp-medals__points li {
  display:     flex;
  align-items: flex-start;
  gap:         15px;
  font-family: 'Barlow','DM Sans',sans-serif;
  font-size:   15px;
  line-height: 1.6;
  color:       rgba(255,255,255,.55);
}
body.home .wmfp-medals__points strong {
  color:       #fff;
  font-weight: 600;
  font-family: 'Barlow','DM Sans',sans-serif;
}
body.home .wmfp-medals__point-icon {
  flex-shrink:     0;
  width:           34px;
  height:          34px;
  border-radius:   9px;
  background:      rgba(201,168,76,.08);
  border:          1px solid rgba(201,168,76,.18);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-top:      -1px;
  transition:      background .25s, border-color .25s;
}
body.home .wmfp-medals__points li:hover .wmfp-medals__point-icon {
  background:   rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.35);
}
body.home .wmfp-medals__point-icon svg { width:16px; height:16px; stroke:#c9a84c; }

/* CTA */
body.home .wmfp-medals__cta {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  font-family:     'Barlow Condensed',sans-serif;
  font-size:       13px;
  font-weight:     700;
  letter-spacing:  .18em;
  text-transform:  uppercase;
  color:           rgba(255,255,255,.5);
  text-decoration: none;
  padding:         12px 26px;
  border:          1px solid rgba(255,255,255,.12);
  border-radius:   8px;
  transition:      all .25s;
}
body.home .wmfp-medals__cta:hover {
  color:        #edd97a;
  border-color: rgba(201,168,76,.4);
  background:   rgba(201,168,76,.05);
}
body.home .wmfp-medals__cta svg { width:14px; height:14px; transition: transform .2s; }
body.home .wmfp-medals__cta:hover svg { transform: translateX(4px); }

/* ── BENTO 2x2 ── */
body.home .wmfp-medals__bento {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows:    1fr 1fr;
  gap:                   10px;
  aspect-ratio:          1 / 1;
}

/* Base tile */
body.home .wmfp-bento__tile {
  border-radius: 18px;
  overflow:      hidden;
  position:      relative;
  border:        1px solid rgba(255,255,255,.07);
  transition:    transform .3s cubic-bezier(.22,1,.36,1),
                 box-shadow .3s,
                 border-color .3s;
}
body.home .wmfp-bento__tile:hover {
  transform:    scale(1.02);
  box-shadow:   0 16px 48px rgba(0,0,0,.5);
  border-color: rgba(201,168,76,.25);
  z-index:      2;
}

/* GÓRA LEWA — hero zdjęcie z OVERFLOW efektem */
body.home .wmfp-medals__bento {
  overflow: visible !important;
}
/* Wrapper który pozwala na overflow ale clip robimy tylko wewnątrz */
body.home .wmfp-bento__tile--hero {
  background:    radial-gradient(ellipse at 50% 65%, #1e160a 0%, #0a0704 55%, #000 100%);
  overflow:      visible !important;
  z-index:       3; /* nad innymi kafelkami */
}
body.home .wmfp-bento__tile--hero img {
  position:        absolute;
  width:           120%;
  height:          130%;
  max-width:       none;
  object-fit:      contain;
  object-position: center bottom;
  top:             -20%;  /* wychodzi mocno ponad kafelek */
  left:            -10%;
  z-index:         4;
  transition:      transform .5s cubic-bezier(.22,1,.36,1);
  filter:          drop-shadow(0 -12px 40px rgba(201,168,76,.2))
                   drop-shadow(0 20px 40px rgba(0,0,0,.9));
}
body.home .wmfp-bento__tile--hero:hover img {
  transform: scale(1.04) translateY(-8px);
}
body.home .wmfp-bento__tile-shine {
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg,rgba(255,255,255,.06) 0%,transparent 55%);
  pointer-events: none;
  z-index:    1;
}

/* Stat tile — zdjęcie tła rozjaśnione + silny blur */
body.home .wmfp-bento__tile--stat {
  background: #080604;
}

body.home .wmfp-bento__bg {
  position:            absolute;
  inset:               0;
  background-size:     cover;
  background-position: center;
  filter:              blur(8px) brightness(.45) saturate(.7); /* rozjaśnione + mocny blur */
  transform:           scale(1.12);
  transition:          filter .4s;
}
body.home .wmfp-bento__tile--stat:hover .wmfp-bento__bg {
  filter: blur(10px) brightness(.35) saturate(.6);
}

/* Glassmorphism overlay */
body.home .wmfp-bento__overlay {
  position:             absolute;
  inset:                0;
  background:           rgba(8,6,4,.55);
  backdrop-filter:      blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events:       none;
}

/* Szkło tile — glassmorphism */
body.home .wmfp-bento__tile--glass {
  background:           rgba(255,255,255,.05);
  backdrop-filter:      blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color:         rgba(255,255,255,.12);
}
body.home .wmfp-bento__tile--glass:hover {
  border-color: rgba(201,168,76,.35);
  background:   rgba(201,168,76,.06);
}
/* Dekoracyjny ring w tle */
body.home .wmfp-bento__glass-ring {
  position:      absolute;
  bottom:        -30%;
  right:         -20%;
  width:         80%;
  aspect-ratio:  1;
  border-radius: 50%;
  border:        1px solid rgba(201,168,76,.1);
  pointer-events: none;
}
body.home .wmfp-bento__glass-ring::after {
  content:       '';
  position:      absolute;
  inset:         15%;
  border-radius: 50%;
  border:        1px solid rgba(201,168,76,.07);
}

/* Tile content — liczba duża, label na dole */
body.home .wmfp-bento__content {
  position:       absolute;
  inset:          0;
  display:        flex;
  flex-direction: column;
  justify-content: flex-end; /* label na dole, liczba nad nim */
  padding:        20px 22px 22px;
  z-index:        5;
}


@media (min-width: 769px) {
  body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__num {
    display:                 block !important;
    font-family:             'Bebas Neue','Barlow Condensed',sans-serif !important;
    font-size:               clamp(72px,7.5vw,110px) !important;
    line-height:             .95 !important;
    margin-bottom:           8px !important;
    background:              linear-gradient(160deg,#fff 0%,#edd97a 35%,#c9a84c 65%,#fff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip:         text !important;
    filter:                  drop-shadow(0 2px 24px rgba(201,168,76,.6)) !important;
  }
  body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__num span {
    font-size:      .95em !important;
    font-family:    'Bebas Neue','Barlow Condensed',sans-serif !important;
    opacity:        1 !important;
    vertical-align: middle !important;
  }
}
body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__label {
  font-family:    'Barlow Condensed',sans-serif !important;
  font-size:      13px !important;
  font-weight:    700 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,.9) !important;
  line-height:    1.4 !important;
  text-shadow:    0 1px 12px rgba(0,0,0,.9) !important;
}

/* ══════════════════════════════════════════
   WŁASNA KARUZELA — bez Owl, bez konfliktów
   ══════════════════════════════════════════ */
body.home .wmfp-medals__carousel-wrap {
  border-top: 1px solid rgba(255,255,255,.06);
  padding:    clamp(40px,5vw,64px) 0 clamp(48px,6vw,72px);
  max-width:  1400px;
  margin:     0 auto;
}

/* ── TABY ── */
body.home .wm-tabs__nav {
  display:         flex;
  justify-content: center;
  gap:             4px;
  flex-wrap:       wrap;
  background:      rgba(255,255,255,.035);
  border:          1px solid rgba(255,255,255,.09);
  border-radius:   10px;
  padding:         4px;
  margin-bottom:   32px;
}
body.home .wm-tabs__btn {
  font-family:    'Barlow Condensed','Oswald',sans-serif !important;
  font-size:      12px !important;
  font-weight:    700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  /* Inactive — wyraźnie widoczny */
  color:          rgba(255,255,255,.58) !important;
  background:     rgba(255,255,255,.03) !important;
  border:         1px solid rgba(255,255,255,.09) !important;
  border-radius:  7px !important;
  padding:        10px 20px !important;
  cursor:         pointer !important;
  transition:     all .22s cubic-bezier(.22,1,.36,1) !important;
  white-space:    nowrap !important;
  position:       relative !important;
}
body.home .wm-tabs__btn:hover {
  color:        rgba(255,255,255,.9) !important;
  background:   rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.18) !important;
  transform:    translateY(-1px) !important;
}
body.home .wm-tabs__btn.active {
  background:   linear-gradient(160deg,#2a1800,#1a0e00) !important;
  color:        #fde87a !important;
  border-color: rgba(200,134,10,.5) !important;
  box-shadow:   0 0 0 1px rgba(200,134,10,.2),
                0 4px 20px rgba(200,134,10,.3),
                0 -1px 12px rgba(200,134,10,.15) inset !important;
  transform:    translateY(-1px) !important;
}
/* Złota linia pod aktywnym tabem */
body.home .wm-tabs__btn.active::after {
  content:       '';
  position:      absolute;
  bottom:        -1px;
  left:          20%;
  right:         20%;
  height:        2px;
  background:    linear-gradient(90deg,transparent,#c9a84c,transparent);
  border-radius: 2px;
}

/* ── PANEL — fade+slide przy przełączaniu ── */
body.home .wm-tabs__panel { display: none; }
body.home .wm-tabs__panel.active {
  display:   block;
  animation: wm-panel-in .35s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes wm-panel-in {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── TRACK WRAP — przycina overflow ── */
body.home .wm-track-wrap {
  overflow: hidden;
  padding:  4px 0 8px; /* miejsce na hover shadow */
}

/* ── TRACK — CSS scroll, nie Owl ── */
body.home .wm-track {
  display:                grid;
  grid-auto-flow:         column;
  grid-auto-columns:      calc((100% - 5*12px) / 6);
  gap:                    12px;
  overflow-x:             auto;
  scroll-behavior:        smooth;
  scrollbar-width:        none;
  -webkit-overflow-scrolling: touch;
  padding:                4px 2px;
}
body.home .wm-track::-webkit-scrollbar { display: none; }

/* ── KARTA ── */
body.home .wm-card {
  display:          block;
  background:       linear-gradient(145deg,#1a1814,#0f0e0c) !important;
  border:           1px solid rgba(255,255,255,.08);
  border-radius:    12px;
  overflow:         hidden;
  text-decoration:  none;
  transition:       transform .35s cubic-bezier(.22,1,.36,1),
                    border-color .3s, box-shadow .4s;
  aspect-ratio:     1 / 1;
  position:         relative;
  /* Unoszący się cień */
  box-shadow:       0 4px 16px rgba(0,0,0,.5),
                    0 1px 0 rgba(255,255,255,.04) inset;
  /* 3D tilt — perspective na kontenerze */
  transform-style:  preserve-3d;
  will-change:      transform;
}
body.home .wm-card:hover {
  border-color: rgba(201,168,76,.5);
  box-shadow:   0 16px 40px rgba(0,0,0,.7),
                0 0 0 1px rgba(201,168,76,.2),
                0 0 28px rgba(201,168,76,.1);
}
/* Warstwa połysku — przesuwa się na hover */
body.home .wm-card::before {
  content:    '';
  position:   absolute;
  inset:      0;
  z-index:    2;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(255,255,220,.07) 45%,
    rgba(255,255,255,.13) 50%,
    rgba(255,255,220,.07) 55%,
    transparent 70%
  );
  background-size: 200% 200%;
  background-position: 200% 0%;
  transition: background-position .5s ease;
  pointer-events: none;
  border-radius: 12px;
}
body.home .wm-card:hover::before {
  background-position: -50% 100%;
}
body.home .wm-card img {
  width:        100% !important;
  height:       100% !important;
  object-fit:   contain !important;
  padding:      10px !important;
  display:      block !important;
  background:   transparent !important;
  transition:   transform .4s cubic-bezier(.22,1,.36,1) !important;
  position:     relative;
  z-index:      1;
  /* Miękki cień pod medalem */
  filter:       drop-shadow(0 6px 14px rgba(0,0,0,.6)) !important;
}
body.home .wm-card:hover img {
  transform: scale(1.02) !important;
  filter:    drop-shadow(0 12px 24px rgba(0,0,0,.7))
             drop-shadow(0 0 20px rgba(201,168,76,.15)) !important;
}

/* ── HOVER TITLE ── */
body.home .wm-card {
  position: relative;
}
body.home .wm-card__title {
  position:   absolute;
  bottom:     -1px;
  left:       0;
  right:      0;
  padding:    28px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  border-radius: 0 0 12px 12px;
  font-family:    'Barlow Condensed', sans-serif;
  font-size:      11px;
  font-weight:    600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color:          rgba(255,255,255,.0);
  text-align:     center;
  opacity:        0;
  transform:      translateY(4px);
  transition:     opacity .25s, transform .25s, color .25s;
  pointer-events: none;
  white-space:    nowrap;
  overflow:       hidden;
  text-overflow:  ellipsis;
}
body.home .wm-card:hover .wm-card__title {
  opacity:   1;
  transform: translateY(0);
  color:     #edd97a;
}

/* ── NAWIGACJA — progress bar zamiast strzałek ── */
body.home .wmfp-nav {
  display:    block;
  margin-top: 20px;
  padding:    0 4px;
}
/* Strzałki — ukryte na mobile, widoczne na desktop */
body.home .wmfp-nav__arrows {
  display:         flex;
  justify-content: center;
  gap:             12px;
  margin-bottom:   16px;
}
body.home .wmfp-nav__btn {
  width:           44px;
  height:          44px;
  background:      rgba(201,168,76,.12);
  border:          1px solid rgba(201,168,76,.35);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  cursor:          pointer;
  color:           #edd97a;
  transition:      all .25s;
}
body.home .wmfp-nav__btn:hover {
  background: rgba(201,168,76,.25);
  box-shadow: 0 0 20px rgba(201,168,76,.2);
}
body.home .wmfp-nav__btn svg { stroke: currentColor; }

/* Progress bar */
body.home .wmfp-progress {
  height:       2px;
  background:   rgba(255,255,255,.08);
  border-radius: 2px;
  overflow:     hidden;
  position:     relative;
}
body.home .wmfp-progress__bar {
  height:       100%;
  width:        16.66%; /* 1/6 kart domyślnie */
  background:   linear-gradient(90deg, #9a6e28, #c9a84c, #edd97a);
  border-radius: 2px;
  transition:   width .3s ease, transform .3s ease;
  box-shadow:   0 0 8px rgba(201,168,76,.5);
}


/* ── MOBILE ── */
@media (max-width: 768px) {
  body.home .wmfp-medals__intro {
    grid-template-columns: 1fr;
    padding: 48px 20px 36px;
    gap:     40px;
  }
  body.home .wmfp-medals__title {
    font-size: clamp(34px,10vw,52px) !important;
  }

  /* CTA — oddech przed bento */
  body.home .wmfp-medals__cta {
    margin-bottom: 28px !important;
    display:       flex !important;
  }

  /* Bento 2x2 */
  body.home .wmfp-medals__bento {
    aspect-ratio: 1 / 1;
    gap:          8px;
    overflow:     visible !important;
  }
  body.home .wmfp-medals .wmfp-bento__tile {
    border-radius: 14px;
  }

  /* LICZBY — złoty gradient + gigantyczne */
  body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__num {
    display:                 block !important;
    font-family:             'Bebas Neue','Barlow Condensed',sans-serif !important;
    font-size:               19vw !important;  /* ~82px na 430px — GIGANTYCZNE */
    line-height:             .92 !important;
    margin-bottom:           6px !important;
    background:              linear-gradient(160deg,#fff 0%,#edd97a 35%,#c9a84c 65%,#fff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip:         text !important;
    filter:                  drop-shadow(0 2px 16px rgba(201,168,76,.6)) !important;
  }
  body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__num span {
    font-size:               .95em !important;
    font-family:             'Bebas Neue','Barlow Condensed',sans-serif !important;
    -webkit-text-fill-color: transparent !important;
  }

  /* Label — biały, bold, czytelny w słońcu */
  body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__label {
    font-family:    'Barlow Condensed',sans-serif !important;
    font-size:      11px !important;
    font-weight:    800 !important;
    letter-spacing: .12em !important;
    color:          #fff !important;
    text-shadow:    0 1px 10px rgba(0,0,0,1) !important;
    line-height:    1.3 !important;
  }

  body.home .wmfp-medals .wmfp-bento__tile .wmfp-bento__content {
    padding: 12px 14px !important;
  }

  body.home .wmfp-medals__carousel-wrap { padding: 24px 0 40px; }

  /* TABY mobile — scrollowalne w jednej linii, bez overflow strony */
  body.home .wmfp-medals__carousel-wrap {
    overflow-x: hidden !important;
    padding-left:  16px !important;
    padding-right: 16px !important;
  }
  /* Wrapper z fade po prawej — wizualna sugestia że jest więcej */
  body.home .wm-tabs-wrap {
    position: relative;
  }
  body.home .wm-tabs-wrap::after {
    content:    '';
    position:   absolute;
    top:        0; bottom: 0; right: 0;
    width:      48px;
    background: linear-gradient(to right, transparent, #060606);
    pointer-events: none;
    z-index:    2;
    border-radius: 0 10px 10px 0;
  }
  body.home .wm-tabs__nav {
    flex-wrap:       nowrap !important;
    overflow-x:      auto !important;
    scrollbar-width: none !important;
    justify-content: flex-start !important;
    padding:         4px !important;
    gap:             3px !important;
    margin-bottom:   20px !important;
    border-radius:   8px !important;
  }
  body.home .wm-tabs__nav::-webkit-scrollbar { display: none; }
  body.home .wm-tabs__btn {
    font-size:   10px !important;
    padding:     8px 12px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  /* TRACK mobile — 2.5 karty */
  body.home .wm-track {
    grid-auto-columns: calc((100% - 2*8px) / 2.5) !important;
    gap:               8px !important;
  }

  /* Strzałki — ukryte na mobile, swipe wystarczy */
  body.home .wmfp-nav__arrows { display: none !important; }
  body.home .wmfp-nav { margin-top: 12px; }
  body.home .wmfp-nav__btn {
    width:  40px !important;
    height: 40px !important;
  }
}


/* ── SEO text trofei ── */
body.home .wmfp-trofei-seo {
  font-family: 'Barlow','DM Sans',sans-serif !important;
  font-size:   13px !important;
  line-height: 1.8 !important;
  color:       rgba(255,255,255,.35) !important;
  max-width:   860px;
  margin:      32px auto 0 !important;
  padding:     0 5vw !important;
  text-align:  center;
}


/* ═══════════════════════════════════════════════════════════════
   SEKCJA TESTIMONIALI — dark glassmorphism, spójny z medalami
   ═══════════════════════════════════════════════════════════════ */

body.home .wmfp-rev {
  background: #060606;
  position:   relative;
  overflow:   hidden;
  padding:    clamp(64px,8vw,100px) 0 clamp(64px,8vw,100px);
}
body.home .wmfp-rev::before {
  content:    '';
  position:   absolute;
  top:0; left:5vw; right:5vw;
  height:     1px;
  background: linear-gradient(90deg,transparent,rgba(201,168,76,.3),transparent);
}
/* Noise texture w tle */
body.home .wmfp-rev::after {
  content:         '';
  position:        absolute;
  inset:           0;
  pointer-events:  none;
  opacity:         .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── NAGŁÓWEK ── */
body.home .wmfp-rev__head {
  display:     flex;
  align-items: flex-end;
  justify-content: space-between;
  gap:         clamp(32px,4vw,60px);
  max-width:   1400px;
  margin:      0 auto;
  padding:     0 5vw clamp(40px,5vw,64px);
  flex-wrap:   wrap;
}
body.home .wmfp-rev__head-left { flex: 1; min-width: 260px; }

body.home .wmfp-rev__title {
  all:            unset !important;
  display:        block !important;
  font-family:    'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:      clamp(36px,4vw,58px) !important;
  font-weight:    400 !important;
  line-height:    .92 !important;
  text-transform: uppercase !important;
  color:          #fff !important;
  margin-bottom:  0 !important;
}
body.home .wmfp-rev__title em {
  font-style:              normal;
  display:                 block;
  background:              linear-gradient(135deg,#edd97a 0%,#c9a84c 40%,#9a6e28 70%,#edd97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}
body.home .wmfp-rev__title-line {
  max-width: 460px !important;
}
body.home .wmfp-rev[data-visible] .wmfp-rev__title-line { width:100%; max-width:460px; }

/* ── TRUST WIDGET ── */
body.home .wmfp-rev__trust {
  flex-shrink:   0;
  background:    rgba(255,255,255,.035);
  border:        1px solid rgba(201,168,76,.2);
  border-radius: 16px;
  padding:       20px 28px;
  display:       flex;
  flex-direction: column;
  align-items:   center;
  gap:           6px;
  min-width:     180px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:    0 0 32px rgba(201,168,76,.08);
  position:      relative;
}
body.home .wmfp-rev__trust-score {
  font-family:             'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:               52px !important;
  line-height:             1 !important;
  background:              linear-gradient(160deg,#fff 0%,#edd97a 35%,#c9a84c 65%,#fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
  filter:                  drop-shadow(0 2px 16px rgba(201,168,76,.5));
}
body.home .wmfp-rev__trust-stars {
  display:  flex;
  gap:      2px;
  font-size: 18px;
  color:    #c9a84c;
  filter:   drop-shadow(0 0 6px rgba(201,168,76,.6));
}
body.home .wmfp-rev__trust-meta {
  display:     flex;
  align-items: center;
  gap:         6px;
  margin-top:  2px;
}
body.home .wmfp-rev__trust-count {
  font-family:    'Barlow Condensed',sans-serif !important;
  font-size:      12px !important;
  font-weight:    600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,.5) !important;
}
body.home .wmfp-rev__trust-link {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-family:     'Barlow Condensed',sans-serif;
  font-size:       11px;
  font-weight:     700;
  letter-spacing:  .1em;
  text-transform:  uppercase;
  color:           rgba(201,168,76,.7);
  text-decoration: none;
  margin-top:      8px;
  transition:      color .2s;
  white-space:     nowrap;
}
body.home .wmfp-rev__trust-link:hover { color: #edd97a; }
body.home .wmfp-rev__trust-link svg { width:11px; height:11px; transition:transform .2s; }
body.home .wmfp-rev__trust-link:hover svg { transform: translateX(3px); }

/* ── SLIDER ── */
body.home .wmfp-rev__slider-wrap {
  max-width: 1400px;
  margin:    0 auto;
  padding:   0 5vw;
}
body.home .wmfp-rev__track {
  display:                grid;
  grid-auto-flow:         column;
  grid-auto-columns:      calc((100% - 3*24px) / 4); /* 4 karty */
  gap:                    24px;
  overflow-x:             auto;
  scroll-behavior:        smooth;
  scrollbar-width:        none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type:       x mandatory;
  padding:                8px 4px 12px;
}
body.home .wmfp-rev__track::-webkit-scrollbar { display:none; }

/* ── KARTA — dark glassmorphism ── */
body.home .wmfp-rev__card {
  background:           rgba(255,255,255,.03);
  backdrop-filter:      blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Gradient border — gold top → transparent bottom */
  border:               1px solid transparent;
  border-radius:        16px;
  padding:              24px;
  position:             relative;
  overflow:             hidden;
  transition:           transform .35s cubic-bezier(.22,1,.36,1),
                        box-shadow .35s,
                        border-color .3s;
  scroll-snap-align:    start;
  /* Rim light — złota krawędź od góry */
  background-clip:      padding-box;
  box-shadow:           0 1px 0 rgba(201,168,76,.18) inset,
                        0 4px 20px rgba(0,0,0,.4);
}
/* Gradient border przez pseudo-element */
body.home .wmfp-rev__card::before {
  content:       '';
  position:      absolute;
  inset:         0;
  border-radius: 16px;
  padding:       1px;
  background:    linear-gradient(160deg, rgba(201,168,76,.35) 0%, rgba(201,168,76,.05) 50%, transparent 100%);
  -webkit-mask:  linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:          linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
/* Active card — większa, mocniejszy border */
body.home .wmfp-rev__card.is-active {
  transform:  scale(1.03) !important;
  box-shadow: 0 1px 0 rgba(201,168,76,.4) inset,
              0 8px 40px rgba(0,0,0,.6),
              0 0 0 1px rgba(201,168,76,.25) !important;
}
body.home .wmfp-rev__card.is-active::before {
  background: linear-gradient(160deg, rgba(201,168,76,.55) 0%, rgba(201,168,76,.12) 60%, transparent 100%);
}

/* Wielka litera w tle */
body.home .wmfp-rev__bg-letter {
  position:    absolute;
  top:         -10px;
  right:       16px;
  font-family: 'Bebas Neue','Barlow Condensed',serif;
  font-size:   120px;
  line-height: 1;
  color:       rgba(255,255,255,.03);
  pointer-events: none;
  user-select: none;
  z-index:     0;
}

/* ── CARD HEAD ── */
body.home .wmfp-rev__card-head {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   14px;
  position:        relative;
  z-index:         1;
}
body.home .wmfp-rev__user {
  display:     flex;
  align-items: center;
  gap:         12px;
}
body.home .wmfp-rev__avatar {
  width:           42px;
  height:          42px;
  border-radius:   50%;
  background:      linear-gradient(135deg, rgba(201,168,76,.3), rgba(201,168,76,.08));
  border:          1px solid rgba(201,168,76,.35);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-family:     'Bebas Neue','Barlow Condensed',sans-serif;
  font-size:       18px;
  color:           #edd97a;
  flex-shrink:     0;
  box-shadow:      0 0 12px rgba(201,168,76,.15);
  /* Fallback color z PHP */
  transition:      border-color .25s, box-shadow .25s;
}
body.home .wmfp-rev__card:hover .wmfp-rev__avatar {
  border-color: rgba(201,168,76,.6);
  box-shadow:   0 0 20px rgba(201,168,76,.3);
}
body.home .wmfp-rev__user-info { min-width: 0; }
body.home .wmfp-rev__name {
  display:        block;
  font-family:    'Barlow Condensed',sans-serif !important;
  font-size:      15px !important;
  font-weight:    700 !important;
  color:          #fff !important;
  letter-spacing: .04em !important;
  white-space:    nowrap;
  overflow:       hidden;
  text-overflow:  ellipsis;
}
/* Złoty badge weryfikacji */
body.home .wmfp-rev__badge {
  display:         inline-flex;
  align-items:     center;
  gap:             4px;
  font-family:     'Barlow Condensed',sans-serif !important;
  font-size:       10px !important;
  font-weight:     600 !important;
  letter-spacing:  .1em !important;
  text-transform:  uppercase !important;
  color:           rgba(201,168,76,.7) !important;
  margin-top:      2px;
}
body.home .wmfp-rev__google-icon { flex-shrink:0; opacity:.8; }

/* ── GWIAZDKI ── */
body.home .wmfp-rev__stars {
  font-size:   16px;
  color:       #c9a84c;
  filter:      drop-shadow(0 0 5px rgba(201,168,76,.55));
  margin-bottom: 12px;
  position:    relative;
  z-index:     1;
  letter-spacing: 2px;
}

/* ── TEKST ── */
body.home .wmfp-rev__text {
  font-family: 'Barlow','DM Sans',sans-serif !important;
  font-size:   14px !important;
  line-height: 1.72 !important;
  color:       rgba(255,255,255,.62) !important;
  position:    relative;
  z-index:     1;
  margin:      0 !important;
}

/* ── NAWIGACJA ── */
body.home .wmfp-rev__nav {
  display:         flex;
  justify-content: center;
  gap:             12px;
  margin-top:      24px;
}
body.home .wmfp-rev__progress {
  margin-top: 16px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  body.home .wmfp-rev__head {
    flex-direction: column;
    align-items:    flex-start;
    padding-bottom: 32px;
  }
  body.home .wmfp-rev__trust {
    width:       100%;
    flex-direction: row;
    flex-wrap:   wrap;
    justify-content: center;
    padding:     16px 20px;
    gap:         8px 16px;
  }
  body.home .wmfp-rev__trust-score { font-size: 40px !important; }
  body.home .wmfp-rev__track {
    grid-auto-columns: calc((100% - 16px) / 1.2); /* 1.2 karty — hint do scroll */
    gap:               16px;
  }
  body.home .wmfp-rev__slider-wrap { padding: 0 16px; }
  body.home .wmfp-rev__card { padding: 18px 16px; }
}

/* ── KARTA testimoniali — shine + tilt ── */

/* Warstwa połysku na każdej karcie */
body.home .wmfp-rev__card::after {
  content:    '';
  position:   absolute;
  top:        -60%;
  left:       -80%;
  width:      50%;
  height:     200%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,240,.04) 35%,
    rgba(255,255,255,.10) 50%,
    rgba(255,255,240,.04) 65%,
    transparent 80%
  );
  transform:       skewX(-15deg);
  pointer-events:  none;
  border-radius:   0;
  z-index:         3;
  /* Każda karta ma inny delay — efekt losowości */
  animation:       wmfp-card-shine 7s ease-in-out infinite;
  animation-play-state: paused; /* startuje przez JS/hover */
}

/* Różne delay dla kolejnych kart */
body.home .wmfp-rev__card:nth-child(1)::after  { animation-delay: 0s; }
body.home .wmfp-rev__card:nth-child(2)::after  { animation-delay: 1.2s; }
body.home .wmfp-rev__card:nth-child(3)::after  { animation-delay: 2.4s; }
body.home .wmfp-rev__card:nth-child(4)::after  { animation-delay: 3.6s; }
body.home .wmfp-rev__card:nth-child(5)::after  { animation-delay: 4.8s; }
body.home .wmfp-rev__card:nth-child(6)::after  { animation-delay: 0.6s; }
body.home .wmfp-rev__card:nth-child(7)::after  { animation-delay: 1.8s; }
body.home .wmfp-rev__card:nth-child(8)::after  { animation-delay: 3.0s; }
body.home .wmfp-rev__card:nth-child(9)::after  { animation-delay: 4.2s; }
body.home .wmfp-rev__card:nth-child(10)::after { animation-delay: 5.4s; }
body.home .wmfp-rev__card:nth-child(11)::after { animation-delay: 0.3s; }
body.home .wmfp-rev__card:nth-child(12)::after { animation-delay: 2.1s; }

@keyframes wmfp-card-shine {
  0%,60%  { left: -80%; opacity: 0; }
  61%     { opacity: 1; }
  80%     { left: 160%; opacity: 1; }
  81%,100%{ left: 160%; opacity: 0; }
}

/* Gdy karta wejdzie w viewport — uruchom animację */
body.home .wmfp-rev__card.in-view::after {
  animation-play-state: running;
}

/* Hover — natychmiastowy błysk */
body.home .wmfp-rev__card:hover::after {
  animation: wmfp-card-shine-fast .6s ease forwards;
}
@keyframes wmfp-card-shine-fast {
  0%   { left: -80%; opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

/* Tilt — smooth reset transition gdy nie hover */
body.home .wmfp-rev__card {
  transition: transform .35s cubic-bezier(.22,1,.36,1),
              box-shadow .35s,
              border-color .3s !important;
  transform-origin: center center;
}






/* ════════════════════════════════════════════════════════
   GLOBALNA LINIA TYTUŁOWA — działa we wszystkich sekcjach
   Klasa: wmfp-medals__title-line (używana wszędzie)
   Trigger: sekcja nadrzędna dostaje [data-visible]
   ════════════════════════════════════════════════════════ */
/* Trigger dla sekcji które NIE są .wmfp-medals (proc, rev, etc.) */
body.home .wmfp-proc[data-visible]  .wmfp-medals__title-line,
body.home .wmfp-rev[data-visible]   .wmfp-medals__title-line { width:100%; max-width:520px; }

/* ════════════════════════════════════════════════════════
   SEKCJA PROCES — v7 PREMIUM (Twoja wersja, posprzątana)
   ════════════════════════════════════════════════════════ */

body.home .wmfp-proc {
  background: #060606;
  position:   relative;
  padding:    clamp(64px,8vw,100px) 0 clamp(72px,9vw,110px);
  overflow:   hidden;
}
body.home .wmfp-proc::before {
  content:''; position:absolute; top:0; left:5vw; right:5vw; height:1px;
  background: linear-gradient(90deg,transparent,rgba(201,168,76,.3),transparent);
}

/* NAGŁÓWEK — używa istniejących klas wmfp-medals__label */
body.home .wmfp-proc__head {
  max-width: 1400px; margin:0 auto; padding:0 5vw clamp(40px,5vw,60px);
}
body.home .wmfp-proc__head[data-wm-reveal] {
  opacity:0; transform:translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
body.home .wmfp-proc__head[data-wm-reveal].is-visible { opacity:1; transform:translateY(0); }

/* Tytuł — Bebas Neue + złoty em, NIE duplikuj, używa wzorca z medaglie */
body.home .wmfp-proc__title {
  font-family:'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:clamp(36px,4.5vw,62px) !important;
  font-weight:400 !important; line-height:.92 !important;
  text-transform:uppercase !important; color:#fff !important;
}
body.home .wmfp-proc__title em {
  font-style:normal; display:block;
  background:linear-gradient(135deg,#edd97a 0%,#c9a84c 40%,#9a6e28 70%,#edd97a 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
body.home .wmfp-proc__lead {
  font-family:'Barlow','DM Sans',sans-serif;
  font-size:15px; line-height:1.7;
  color:rgba(255,255,255,.42);
  margin-top:16px; max-width:580px;
}

/* SCENA — Grid zygzak */
body.home .wmfp-proc__scene {
  max-width:1400px; margin:0 auto; padding:0 5vw;
  display:grid;
  grid-template-columns:1fr 48px 1fr;
  gap:0; align-items:start; position:relative;
}

/* LINIA — środkowa kolumna */
body.home .wmfp-proc__line-wrap {
  grid-column:2; grid-row:1 / 20;
  position:relative; display:flex; justify-content:center; z-index:2;
}
body.home .wmfp-proc__line-track {
  position:absolute; left:50%; transform:translateX(-50%);
  width:1px; background:rgba(255,255,255,.06);
}
body.home .wmfp-proc__line-gold {
  position:absolute; left:50%; transform:translateX(-50%);
  width:2px; height:0;
  background:linear-gradient(180deg,#edd97a 0%,#c9a84c 50%,#9a6e28 100%);
  box-shadow:0 0 12px rgba(201,168,76,.35), 0 0 28px rgba(201,168,76,.12);
  transition:height .05s linear;
}

/* WĘZŁY */
body.home .wmfp-proc__node {
  position:absolute; left:50%; transform:translate(-50%,-50%);
  width:10px; height:10px; border-radius:50%;
  background:#060606; border:1.5px solid rgba(201,168,76,.2); z-index:3;
  transition:all .4s cubic-bezier(.22,1,.36,1);
}
body.home .wmfp-proc__node.is-lit {
  background:#c9a84c; border-color:#edd97a;
  box-shadow:0 0 10px rgba(201,168,76,.6), 0 0 24px rgba(201,168,76,.2);
  transform:translate(-50%,-50%) scale(1.3);
}

/* POZYCJE KART — zygzak L P L P L */
body.home .wmfp-proc__card[data-step="0"] { grid-column:1; grid-row:1; }
body.home .wmfp-proc__card[data-step="1"] { grid-column:3; grid-row:2; }
body.home .wmfp-proc__card[data-step="2"] { grid-column:1; grid-row:3; }
body.home .wmfp-proc__card[data-step="3"] { grid-column:3; grid-row:4; }
body.home .wmfp-proc__card[data-step="4"] { grid-column:1; grid-row:5; }

body.home .wmfp-proc__card[data-step="0"],
body.home .wmfp-proc__card[data-step="2"],
body.home .wmfp-proc__card[data-step="4"] {
  justify-self:end; margin:0 12px clamp(14px,2vw,24px) 0;
}
body.home .wmfp-proc__card[data-step="1"],
body.home .wmfp-proc__card[data-step="3"] {
  justify-self:start; margin:clamp(24px,3.5vw,44px) 0 clamp(14px,2vw,24px) 12px;
}

/* KARTA — reveal */
body.home .wmfp-proc__card { position:relative; max-width:100%; z-index:3; }
body.home .wmfp-proc__card[data-wm-reveal] {
  opacity:0; transform:translateY(20px);
  transition:opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
body.home .wmfp-proc__card[data-wm-reveal].is-visible { opacity:1; transform:translateY(0); }

/* NUMER nad kartą */
body.home .wmfp-proc__card-num {
  font-family:'Bebas Neue','Barlow Condensed',sans-serif;
  font-size:clamp(38px,4vw,52px); line-height:1;
  color:transparent; -webkit-text-stroke:1px rgba(201,168,76,.15);
  margin-bottom:6px; pointer-events:none;
  transition:-webkit-text-stroke-color .4s;
}
body.home .wmfp-proc__card.is-focused .wmfp-proc__card-num,
body.home .wmfp-proc__card:hover      .wmfp-proc__card-num {
  -webkit-text-stroke-color:rgba(201,168,76,.5);
}

/* INNER — glassmorphism (identyczny wzorzec co .wmfp-rev__card) */
body.home .wmfp-proc__card-inner {
  display:flex; flex-direction:row; align-items:flex-start; gap:18px;
  background:rgba(255,255,255,.025);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-radius:14px; padding:22px 26px;
  border:1px solid rgba(201,168,76,.07);
  box-shadow:0 1px 0 rgba(201,168,76,.08) inset, 0 6px 24px rgba(0,0,0,.4);
  transition:transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
  position:relative; overflow:hidden;
  will-change:transform; transform-style:preserve-3d;
}
/* Rim light border */
body.home .wmfp-proc__card-inner::before {
  content:''; position:absolute; inset:0; border-radius:14px; padding:1px;
  background:linear-gradient(145deg,rgba(201,168,76,.2) 0%,rgba(201,168,76,.03) 50%,transparent 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none;
}
/* Shine sweep */
body.home .wmfp-proc__card-inner::after {
  content:''; position:absolute; top:-60%; left:-80%; width:45%; height:200%;
  background:linear-gradient(105deg,transparent 20%,rgba(255,255,255,.08) 50%,transparent 80%);
  transform:skewX(-15deg); pointer-events:none; z-index:4; opacity:0;
}
body.home .wmfp-proc__card:hover .wmfp-proc__card-inner::after {
  animation:wmfp-proc-shine .55s ease forwards;
}
@keyframes wmfp-proc-shine { 0%{left:-80%;opacity:1;} 100%{left:160%;opacity:0;} }

body.home .wmfp-proc__card:hover .wmfp-proc__card-inner,
body.home .wmfp-proc__card.is-focused .wmfp-proc__card-inner {
  border-color:rgba(201,168,76,.25);
  box-shadow:0 1px 0 rgba(201,168,76,.2) inset, 0 12px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.12);
}

/* IKONA — reuses wzorzec z medaglie */
body.home .wmfp-proc__icon-wrap {
  width:clamp(38px,3.8vw,48px); height:clamp(38px,3.8vw,48px); border-radius:50%;
  background:radial-gradient(circle at 30% 30%,rgba(201,168,76,.12),rgba(201,168,76,.02));
  border:1px solid rgba(201,168,76,.15);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 8px rgba(201,168,76,.05); flex-shrink:0;
  transition:transform .35s cubic-bezier(.175,.885,.32,1.275), border-color .35s, box-shadow .35s;
  margin-top:2px;
}
body.home .wmfp-proc__card:hover .wmfp-proc__icon-wrap,
body.home .wmfp-proc__card.is-focused .wmfp-proc__icon-wrap {
  transform:scale(1.12); border-color:rgba(201,168,76,.4); box-shadow:0 0 18px rgba(201,168,76,.2);
}
body.home .wmfp-proc__icon-wrap svg {
  width:clamp(18px,1.8vw,22px); height:clamp(18px,1.8vw,22px);
  color:#c9a84c; filter:drop-shadow(0 0 4px rgba(201,168,76,.3)); transition:filter .35s;
}
body.home .wmfp-proc__card:hover .wmfp-proc__icon-wrap svg,
body.home .wmfp-proc__card.is-focused .wmfp-proc__icon-wrap svg {
  filter:drop-shadow(0 0 8px rgba(201,168,76,.7));
}

/* BODY tekstu */
body.home .wmfp-proc__card-body { flex:1; min-width:0; }
body.home .wmfp-proc__step-title {
  font-family:'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:clamp(15px,1.6vw,20px) !important; font-weight:400 !important;
  letter-spacing:1.5px !important; text-transform:uppercase !important;
  color:#fff !important; line-height:1.15 !important; margin:0 0 8px !important;
}
body.home .wmfp-proc__text {
  font-family:'Barlow','DM Sans',sans-serif !important;
  font-size:13px !important; line-height:1.65 !important;
  color:rgba(255,255,255,.4) !important; margin:0 !important; transition:color .35s;
}
body.home .wmfp-proc__card:hover .wmfp-proc__text,
body.home .wmfp-proc__card.is-focused .wmfp-proc__text { color:rgba(255,255,255,.65) !important; }

/* BADGE */
body.home .wmfp-proc__badge {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(201,168,76,.08); border:1px solid rgba(201,168,76,.2);
  border-radius:100px; padding:3px 11px;
  font-family:'Barlow',sans-serif; font-size:9px; letter-spacing:2px;
  text-transform:uppercase; color:#c9a84c; margin-bottom:8px;
}

/* FOCUS SCROLL — :has() z fallbackiem */
body.home .wmfp-proc__scene:has(.wmfp-proc__card.is-focused) .wmfp-proc__card:not(.is-focused) { opacity:.35; }
body.home .wmfp-proc__scene:has(.wmfp-proc__card.is-focused) .wmfp-proc__card.is-focused        { opacity:1; }

/* MOBILE */
@media (max-width:768px){
  body.home .wmfp-proc { padding:48px 0 56px; }
  body.home .wmfp-proc__head { padding:0 20px 32px; }
  body.home .wmfp-proc__lead { font-size:13px; max-width:100%; }
  body.home .wmfp-proc__scene { grid-template-columns:1fr; padding:0 16px; }
  body.home .wmfp-proc__line-wrap { display:none; }
  body.home .wmfp-proc__card[data-step="0"],
  body.home .wmfp-proc__card[data-step="1"],
  body.home .wmfp-proc__card[data-step="2"],
  body.home .wmfp-proc__card[data-step="3"],
  body.home .wmfp-proc__card[data-step="4"] {
    grid-column:1 !important; grid-row:auto !important;
    justify-self:stretch !important; margin:0 0 12px !important;
  }
  body.home .wmfp-proc__card-num { font-size:32px; margin-bottom:4px; }
  body.home .wmfp-proc__card-inner { padding:18px 16px; gap:14px; border-radius:12px; }
  body.home .wmfp-proc__card[data-wm-reveal],
  body.home .wmfp-proc__head[data-wm-reveal] { opacity:1 !important; transform:none !important; }
  body.home .wmfp-proc__scene:has(.wmfp-proc__card.is-focused) .wmfp-proc__card:not(.is-focused) { opacity:.5; }
}
@media (prefers-reduced-motion:reduce){
  body.home .wmfp-proc__card[data-wm-reveal],
  body.home .wmfp-proc__head[data-wm-reveal] { opacity:1 !important; transform:none !important; }
  body.home .wmfp-proc__card-inner::after { display:none !important; }
  body.home .wmfp-proc__line-gold { transition:none !important; }
}

/* ════════════════════════════════════════════════════════
   SEKCJA BENTO — Perché WINMED (wmfp-why)
   ════════════════════════════════════════════════════════ */

body.home .wmfp-why {
  background: #060606;
  position:   relative;
  padding:    clamp(64px,8vw,100px) 0 clamp(64px,8vw,100px);
  overflow:   hidden;
}
body.home .wmfp-why::before {
  content:''; position:absolute; top:0; left:5vw; right:5vw; height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.3),transparent);
}

/* ── NAGŁÓWEK ── */
body.home .wmfp-why__head {
  max-width:1400px; margin:0 auto; padding:0 5vw clamp(40px,5vw,64px);
}
body.home .wmfp-why__title {
  all:unset !important; display:block !important;
  font-family:'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:clamp(36px,4.5vw,62px) !important;
  font-weight:400 !important; line-height:.92 !important;
  text-transform:uppercase !important; color:#fff !important;
}
body.home .wmfp-why__title em {
  font-style:normal; display:block;
  background:linear-gradient(135deg,#edd97a 0%,#c9a84c 40%,#9a6e28 70%,#edd97a 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
body.home .wmfp-why__lead {
  font-family:'Barlow','DM Sans',sans-serif;
  font-size:15px; color:rgba(255,255,255,.4);
  margin-top:16px !important; max-width:480px;
}
/* Trigger linii — ten sam mechanizm co inne sekcje */
body.home .wmfp-why[data-visible] .wmfp-medals__title-line { width:100%; max-width:420px; }

/* ── BENTO GRID ── */
body.home .wmfp-why__grid {
  max-width:       1400px;
  margin:          0 auto;
  padding:         0 5vw;
  display:         grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows:  minmax(180px, auto);
  gap:             clamp(10px,1.2vw,16px);
}

/* ── KAFELEK — dark glassmorphism ── */
body.home .wmfp-why__tile {
  position:         relative;
  background:       rgba(255,255,255,.025);
  backdrop-filter:  blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius:    20px;
  padding:          clamp(20px,2.5vw,32px);
  overflow:         hidden;
  /* Rim light */
  box-shadow:       0 1px 0 rgba(201,168,76,.12) inset,
                    0 6px 28px rgba(0,0,0,.45);
  transition:       transform .45s cubic-bezier(.22,1,.36,1),
                    box-shadow .45s, opacity .5s;
  display:          flex;
  flex-direction:   column;
  gap:              14px;
  cursor:           default;
  transform-origin: center;
}
/* Gradient border przez mask */
body.home .wmfp-why__tile::before {
  content:''; position:absolute; inset:0; border-radius:20px; padding:1px;
  background:linear-gradient(145deg,rgba(201,168,76,.25) 0%,rgba(201,168,76,.04) 55%,transparent 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; z-index:0;
}

/* Hover state */
body.home .wmfp-why__tile:hover {
  box-shadow: 0 1px 0 rgba(201,168,76,.3) inset,
              0 12px 48px rgba(0,0,0,.6),
              0 0 0 1px rgba(201,168,76,.18);
}

/* ── WIELKA LITERA W TLE ── */
body.home .wmfp-why__bg-letter {
  position:       absolute;
  bottom:         -16px; right:12px;
  font-family:    'Bebas Neue','Barlow Condensed',sans-serif;
  font-size:      clamp(80px,12vw,140px);
  line-height:    1;
  color:          transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.07);
  pointer-events: none; user-select:none; z-index:0;
  transition:     -webkit-text-stroke-color .4s;
}
body.home .wmfp-why__tile:hover .wmfp-why__bg-letter {
  -webkit-text-stroke-color: rgba(201,168,76,.15);
}

/* ── IKONA — złoty line-art SVG ── */
body.home .wmfp-why__icon {
  flex-shrink:  0;
  width:        clamp(40px,4vw,52px);
  height:       clamp(40px,4vw,52px);
  border-radius: 14px;
  background:   radial-gradient(circle at 30% 30%,rgba(201,168,76,.18),rgba(201,168,76,.03));
  border:       1px solid rgba(201,168,76,.2);
  display:      flex; align-items:center; justify-content:center;
  box-shadow:   0 0 12px rgba(201,168,76,.08);
  position:     relative; z-index:1;
  transition:   transform .35s cubic-bezier(.175,.885,.32,1.275),
                border-color .35s, box-shadow .35s;
}
body.home .wmfp-why__tile:hover .wmfp-why__icon {
  transform:    scale(1.1);
  border-color: rgba(201,168,76,.45);
  box-shadow:   0 0 22px rgba(201,168,76,.25);
}
body.home .wmfp-why__icon svg {
  width:  clamp(20px,2.2vw,28px);
  height: clamp(20px,2.2vw,28px);
  color:  #c9a84c;
  filter: drop-shadow(0 0 5px rgba(201,168,76,.4));
  transition: filter .35s;
}
body.home .wmfp-why__tile:hover .wmfp-why__icon svg {
  filter: drop-shadow(0 0 10px rgba(201,168,76,.75));
}

/* ── BODY ── */
body.home .wmfp-why__body { flex:1; position:relative; z-index:1; }
body.home .wmfp-why__tile-title {
  all:unset !important; display:block !important;
  font-family:'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:clamp(15px,1.5vw,19px) !important;
  font-weight:400 !important; letter-spacing:1.5px !important;
  text-transform:uppercase !important; color:#fff !important;
  line-height:1.15 !important; margin-bottom:10px !important;
}
body.home .wmfp-why__tile-text {
  font-family:'Barlow','DM Sans',sans-serif !important;
  font-size:13px !important; line-height:1.7 !important;
  color:rgba(255,255,255,.42) !important; margin:0 !important;
  transition:color .35s;
}
body.home .wmfp-why__tile:hover .wmfp-why__tile-text { color:rgba(255,255,255,.65) !important; }

/* ── SHINE SWEEP ── */
body.home .wmfp-why__shine {
  position:absolute; top:-60%; left:-80%;
  width:50%; height:200%;
  background:linear-gradient(105deg,transparent 20%,rgba(255,255,255,.06) 50%,transparent 80%);
  transform:skewX(-15deg); pointer-events:none; z-index:5; opacity:0;
}
body.home .wmfp-why__tile:hover .wmfp-why__shine {
  animation: wmfp-why-shine .6s ease forwards;
}
@keyframes wmfp-why-shine { 0%{left:-80%;opacity:1;} 100%{left:160%;opacity:0;} }

/* ── ROZMIARY BENTO ── */
/* 2x2 — duży kafelek lewy górny */
body.home .wmfp-why__tile--2x2 {
  grid-column: span 2;
  grid-row:    span 2;
}
/* 2x1 — szeroki poziomo */
body.home .wmfp-why__tile--2x1 {
  grid-column: span 2;
}
/* Duży kafelek — większy padding, ikona wyróżniona */
body.home .wmfp-why__tile--2x2 .wmfp-why__icon {
  width:  clamp(52px,5.5vw,72px);
  height: clamp(52px,5.5vw,72px);
  border-radius: 18px;
}
body.home .wmfp-why__tile--2x2 .wmfp-why__icon svg {
  width:  clamp(26px,3vw,38px);
  height: clamp(26px,3vw,38px);
}
body.home .wmfp-why__tile--2x2 .wmfp-why__tile-title {
  font-size: clamp(18px,2vw,24px) !important;
  letter-spacing: 2px !important;
}
body.home .wmfp-why__tile--2x2 .wmfp-why__tile-text {
  font-size: 14px !important;
  line-height: 1.75 !important;
}
body.home .wmfp-why__tile--2x2 .wmfp-why__bg-letter {
  font-size: clamp(120px,18vw,200px);
  -webkit-text-stroke-width: 1.5px;
}
/* Kafelek 2x1 — ikona i treść obok siebie */
body.home .wmfp-why__tile--2x1 {
  flex-direction: row;
  align-items:    flex-start;
  gap:            20px;
}
body.home .wmfp-why__tile--2x1 .wmfp-why__body { margin-top: 0; }

/* ── REVEAL ── */
body.home .wmfp-why__tile[data-wm-reveal] {
  opacity:0; transform:translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
              transform .6s cubic-bezier(.22,1,.36,1),
              box-shadow .45s;
}
body.home .wmfp-why__tile[data-wm-reveal].is-visible {
  opacity:1; transform:translateY(0);
}
/* Head reveal — reuses wmfp-proc__head pattern */
body.home .wmfp-why__head[data-wm-reveal] {
  opacity:0; transform:translateY(20px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
body.home .wmfp-why__head[data-wm-reveal].is-visible { opacity:1; transform:translateY(0); }

/* ── MOBILE ── */
@media (max-width:900px){
  body.home .wmfp-why__grid { grid-template-columns: repeat(2,1fr); }
  body.home .wmfp-why__tile--2x2 { grid-column:span 2; grid-row:span 1; }
}
@media (max-width:560px){
  body.home .wmfp-why__grid { grid-template-columns:1fr; gap:10px; }
  body.home .wmfp-why__tile--2x2,
  body.home .wmfp-why__tile--2x1 { grid-column:span 1; }
  body.home .wmfp-why__tile--2x1 { flex-direction:column; }
  body.home .wmfp-why__tile[data-wm-reveal] { opacity:1 !important; transform:none !important; }
}

/* ── BENTO WHY — parallax litery + enhanced hover glow ── */

/* Litera gotowa na transform parallax (JS) */
body.home .wmfp-why__bg-letter {
  will-change:    transform;
  transition:     -webkit-text-stroke-color .4s;
  /* NIE dodawaj transition na transform — JS używa rAF */
}

/* Enhanced rim light na hover — pseudo rozbłysk */
body.home .wmfp-why__tile::after {
  content:       '';
  position:      absolute;
  inset:         0;
  border-radius: 20px;
  opacity:       0;
  background:    transparent;
  box-shadow:    0 0 0 1px rgba(201,168,76,.55),
                 0 0 24px rgba(201,168,76,.18),
                 0 0 48px rgba(201,168,76,.07);
  transition:    opacity .35s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
  z-index:       6;
}
body.home .wmfp-why__tile:hover::after { opacity:1; }

/* Ikona — mocniejszy scale na hover (był 1.1 → 1.15) */
body.home .wmfp-why__tile:hover .wmfp-why__icon {
  transform:    scale(1.15) rotate(4deg);
}

/* ════════════════════════════════════════════════════════
   SEKCJA LOGO TICKER — Hanno scelto noi (wmfp-logos)
   ════════════════════════════════════════════════════════ */

body.home .wmfp-logos {
  background: #060606;
  position:   relative;
  padding:    clamp(56px,7vw,90px) 0 clamp(56px,7vw,90px);
  overflow:   hidden;
}
body.home .wmfp-logos::before {
  content:''; position:absolute; top:0; left:5vw; right:5vw; height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,.3),transparent);
}

/* ── NAGŁÓWEK 2 kolumny ── */
body.home .wmfp-logos__head {
  max-width:  1400px;
  margin:     0 auto clamp(40px,5vw,60px);
  padding:    0 5vw;
  display:    grid;
  grid-template-columns: 1fr 1fr;
  gap:        clamp(32px,5vw,80px);
  align-items: center;
}
body.home .wmfp-logos__head[data-wm-reveal] {
  opacity:0; transform:translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
body.home .wmfp-logos__head[data-wm-reveal].is-visible { opacity:1; transform:translateY(0); }

/* ── STATYSTYKI — lewa kolumna ── */
body.home .wmfp-logos__stats {
  display:       flex;
  flex-direction: column;
  gap:           clamp(20px,3vw,36px);
}
body.home .wmfp-logos__stat {
  display:       flex;
  flex-direction: column;
  gap:           4px;
  padding-left:  20px;
  border-left:   2px solid rgba(201,168,76,.3);
  position:      relative;
  transition:    border-color .35s;
}
body.home .wmfp-logos__stat::before {
  content:''; position:absolute; left:-3px; top:50%; transform:translateY(-50%);
  width:4px; height:4px; border-radius:50%;
  background:#c9a84c;
  box-shadow:0 0 8px rgba(201,168,76,.6);
}
body.home .wmfp-logos__stat:hover { border-color:rgba(201,168,76,.7); }

body.home .wmfp-logos__stat-num {
  font-family:   'Bebas Neue','Barlow Condensed',sans-serif;
  font-size:     clamp(36px,4vw,56px);
  font-weight:   400;
  line-height:   1;
  background:    linear-gradient(135deg,#edd97a 0%,#c9a84c 50%,#9a6e28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.home .wmfp-logos__stat-label {
  font-family:  'Barlow','DM Sans',sans-serif;
  font-size:    12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:        rgba(255,255,255,.38);
}

/* ── TYTUŁ — prawa kolumna ── */
body.home .wmfp-logos__title-col { /* naturalnie wypełnia grid */ }
body.home .wmfp-logos__title {
  all:unset !important; display:block !important;
  font-family:'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:clamp(40px,5vw,68px) !important;
  font-weight:400 !important; line-height:.9 !important;
  text-transform:uppercase !important; color:#fff !important;
  margin-top: 12px !important;
}
body.home .wmfp-logos__title em {
  font-style:normal; display:block;
  background:linear-gradient(135deg,#edd97a 0%,#c9a84c 40%,#9a6e28 70%,#edd97a 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
body.home .wmfp-logos__lead {
  font-family:'Barlow','DM Sans',sans-serif;
  font-size:15px; line-height:1.7;
  color:rgba(255,255,255,.4);
  margin-top:16px !important; max-width:420px;
}
/* Title line trigger */
body.home .wmfp-logos[data-visible] .wmfp-medals__title-line { width:100%; max-width:320px; }

/* ════════════════════════════════
   MARQUEE TRACK
   ════════════════════════════════ */
body.home .wmfp-logos__track-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
body.home .wmfp-logos__track-wrap:last-child { margin-bottom: 0; }

/* Fade maski lewo/prawo */
body.home .wmfp-logos__fade-l,
body.home .wmfp-logos__fade-r {
  position:   absolute; top:0; bottom:0; width:clamp(60px,8vw,140px); z-index:2; pointer-events:none;
}
body.home .wmfp-logos__fade-l {
  left:0;
  background:linear-gradient(90deg,#060606 0%,rgba(6,6,6,0) 100%);
}
body.home .wmfp-logos__fade-r {
  right:0;
  background:linear-gradient(270deg,#060606 0%,rgba(6,6,6,0) 100%);
}

/* Track — flex, nie wrap */
body.home .wmfp-logos__track {
  display:         flex;
  flex-wrap:       nowrap;
  align-items:     center;
  gap:             12px;
  width:           max-content;
  will-change:     transform;
}

/* Animacja — CSS tylko, GPU-accelerated transform */
body.home .wmfp-logos__track--left {
  animation: wmfp-scroll-left 90s linear infinite;
}
body.home .wmfp-logos__track--right {
  animation: wmfp-scroll-right 110s linear infinite;
}

@keyframes wmfp-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wmfp-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── ITEM — logo kafelek ── */
body.home .wmfp-logos__item {
  flex-shrink:      0;
  width:            240px;     /* 600/2.5 — estetycznie mniejsze niż 300 */
  height:           96px;      /* 300/2.5 */
  border-radius:    12px;
  background:       rgba(255,255,255,.04);
  border:           1px solid rgba(255,255,255,.07);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  overflow:         hidden;
  position:         relative;
  transition:       border-color .3s, background .3s, box-shadow .3s;
}
body.home .wmfp-logos__item::before {
  content:''; position:absolute; inset:0; border-radius:12px; padding:1px;
  background:linear-gradient(145deg,rgba(201,168,76,.12) 0%,transparent 60%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; opacity:0;
  transition:opacity .3s;
}
body.home .wmfp-logos__item:hover {
  border-color:  rgba(201,168,76,.3);
  background:    rgba(255,255,255,.07);
  box-shadow:    0 0 20px rgba(201,168,76,.1);
}
body.home .wmfp-logos__item:hover::before { opacity:1; }

/* Logo img — grayscale → color na hover, zachowaj proporcje */
body.home .wmfp-logos__item img {
  width:      80%;
  height:     80%;
  object-fit: contain;
  filter:     grayscale(1) brightness(.75);
  transition: filter .4s ease, transform .35s cubic-bezier(.22,1,.36,1);
  display:    block;
}
body.home .wmfp-logos__item:hover img {
  filter:    grayscale(0) brightness(1);
  transform: scale(1.06);
}

/* ── MOBILE ── */
@media (max-width: 900px){
  body.home .wmfp-logos__head {
    grid-template-columns: 1fr;
    gap: 28px;
    /* Tytuł PIERWSZY na mobile */
    direction: ltr;
  }
  /* Odwróć kolejność — tytuł na górze, stats na dole */
  body.home .wmfp-logos__stats      { order: 2; }
  body.home .wmfp-logos__title-col  { order: 1; }

  body.home .wmfp-logos__stats {
    flex-direction: column;
    gap: 16px;
  }
  body.home .wmfp-logos__stat { flex: 1; min-width: 0; }
}
@media (max-width: 560px){
  /* Logo items — większe na mobile żeby były czytelne */
  body.home .wmfp-logos__item { width: 180px; height: 88px; }
  body.home .wmfp-logos__track--left  { animation-duration: 55s; }
  body.home .wmfp-logos__track--right { animation-duration: 70s; }
  /* Gap między rzędami logo */
  body.home .wmfp-logos__track-wrap { margin-bottom: 10px; }
}
@media (prefers-reduced-motion: reduce){
  body.home .wmfp-logos__track { animation:none !important; }
}

/* ── LOGOS — stat-num dostosowany do dłuższych tekstów ── */
body.home .wmfp-logos__stat-num {
  font-size: clamp(18px, 2.2vw, 26px) !important;
  letter-spacing: .5px;
  line-height: 1.1 !important;
}
/* Item jako <a> — reset link styles */
body.home .wmfp-logos__item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════
   SEKCJA CTA — Final (wmfp-cta)
   Ciemne złoto — kontrast z czerwonym footerem
   ════════════════════════════════════════════════════════ */

body.home .wmfp-cta {
  background:  #0a0800; /* lekko cieplej niż #060606 — oddziela od footera */
  position:    relative;
  padding:     clamp(72px,10vw,120px) 0 clamp(80px,11vw,130px);
  overflow:    hidden;
  /* Mocna górna granica — złota linia oddzielająca od logo sekcji */
  border-top:  1px solid rgba(201,168,76,.18);
}

/* ── TŁO — siatka + glow ── */
body.home .wmfp-cta__bg {
  position:absolute; inset:0; pointer-events:none; z-index:0;
}
/* Subtelna siatka */
body.home .wmfp-cta__grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(201,168,76,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
/* Lewy złoty glow */
body.home .wmfp-cta__glow-l {
  position:absolute; top:50%; left:-10%; transform:translateY(-50%);
  width:45vw; height:45vw; border-radius:50%;
  background:radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  filter: blur(40px);
}
/* Prawy złoty glow */
body.home .wmfp-cta__glow-r {
  position:absolute; top:50%; right:-10%; transform:translateY(-50%);
  width:35vw; height:35vw; border-radius:50%;
  background:radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 70%);
  filter: blur(60px);
}

/* ── INNER — wyśrodkowany kontener ── */
body.home .wmfp-cta__inner {
  max-width:    760px;
  margin:       0 auto;
  padding:      0 5vw;
  text-align:   center;
  position:     relative; z-index:1;
  display:      flex;
  flex-direction: column;
  align-items:  center;
  gap:          0;
}
/* Reveal */
body.home .wmfp-cta__inner[data-wm-reveal] {
  opacity:0; transform:translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
body.home .wmfp-cta__inner[data-wm-reveal].is-visible { opacity:1; transform:translateY(0); }

/* ── KORONA SVG ── */
body.home .wmfp-cta__crown {
  width:   clamp(48px,6vw,72px);
  margin-bottom: 20px;
  filter:  drop-shadow(0 0 12px rgba(201,168,76,.35));
  animation: wmfp-cta-float 4s ease-in-out infinite;
}
@keyframes wmfp-cta-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
body.home .wmfp-cta__crown svg { width:100%; display:block; }

/* ── ETYKIETA ── */
body.home .wmfp-cta__label { margin-bottom: 16px !important; }

/* ── TYTUŁ ── */
body.home .wmfp-cta__title {
  all:unset !important; display:block !important;
  font-family:'Bebas Neue','Barlow Condensed',sans-serif !important;
  font-size:clamp(34px,5vw,64px) !important;
  font-weight:400 !important; line-height:.92 !important;
  text-transform:uppercase !important; color:#fff !important;
  letter-spacing:1px !important;
}
body.home .wmfp-cta__title em {
  font-style:normal; display:block;
  background:linear-gradient(135deg,#edd97a 0%,#c9a84c 40%,#9a6e28 70%,#edd97a 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ── ZŁOTA LINIA ── */
body.home .wmfp-cta__line { margin: 20px auto 24px !important; }
body.home .wmfp-cta[data-visible] .wmfp-cta__line { width:100%; max-width:280px; }

/* ── TEKST ── */
body.home .wmfp-cta__text {
  font-family:'Barlow','DM Sans',sans-serif;
  font-size:  clamp(14px,1.4vw,17px);
  line-height: 1.75;
  color:       rgba(255,255,255,.5);
  margin:      0 0 36px !important;
  max-width:   540px;
}
body.home .wmfp-cta__accent {
  color:       #edd97a;
  font-weight: 600;
  font-style:  normal;
}

/* ── PRZYCISKI ── */
body.home .wmfp-cta__buttons {
  display:     flex;
  gap:         14px;
  flex-wrap:   wrap;
  justify-content: center;
  margin-bottom: 28px;
}

/* Złoty przycisk — główny */
body.home .wmfp-cta__btn--gold {
  all:unset; cursor:pointer;
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Bebas Neue','Barlow Condensed',sans-serif;
  font-size:  clamp(13px,1.4vw,16px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:      #060606 !important;
  background: linear-gradient(135deg,#edd97a 0%,#c9a84c 50%,#9a6e28 100%);
  padding:    14px 32px;
  border-radius: 100px;
  box-shadow: 0 0 0 1px rgba(201,168,76,.4),
              0 8px 32px rgba(201,168,76,.3),
              0 2px 0 rgba(255,255,255,.15) inset;
  transition: transform .3s cubic-bezier(.22,1,.36,1),
              box-shadow .3s, filter .3s;
  position: relative;
}
body.home .wmfp-cta__btn--gold svg { width:16px; height:16px; flex-shrink:0; }
body.home .wmfp-cta__btn--gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(201,168,76,.6),
              0 16px 48px rgba(201,168,76,.45),
              0 2px 0 rgba(255,255,255,.2) inset;
  filter: brightness(1.08);
}
body.home .wmfp-cta__btn--gold:active { transform: translateY(0) scale(.98); }

/* Ghost przycisk — drugorzędny */
body.home .wmfp-cta__btn--ghost {
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Bebas Neue','Barlow Condensed',sans-serif;
  font-size:  clamp(13px,1.4vw,16px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:      rgba(255,255,255,.7) !important;
  text-decoration: none !important;
  background: rgba(255,255,255,.04);
  border:     1px solid rgba(255,255,255,.12);
  padding:    14px 28px;
  border-radius: 100px;
  transition: border-color .3s, color .3s, background .3s, transform .3s;
}
body.home .wmfp-cta__btn--ghost svg { width:16px; height:16px; flex-shrink:0; }
body.home .wmfp-cta__btn--ghost:hover {
  border-color: rgba(201,168,76,.4);
  color:        #edd97a !important;
  background:   rgba(201,168,76,.06);
  transform:    translateY(-2px);
}

/* ── TRUST PILLOLE ── */
body.home .wmfp-cta__trust {
  display:         flex;
  gap:             10px;
  flex-wrap:       wrap;
  justify-content: center;
}
body.home .wmfp-cta__pill {
  display:      inline-flex;
  align-items:  center;
  gap:          6px;
  background:   rgba(255,255,255,.03);
  border:       1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  padding:      6px 14px;
  font-family:  'Barlow','DM Sans',sans-serif;
  font-size:    11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color:        rgba(255,255,255,.38);
  transition:   border-color .3s, color .3s;
}
body.home .wmfp-cta__pill svg {
  width:12px; height:12px; flex-shrink:0;
  color: rgba(201,168,76,.6);
}
body.home .wmfp-cta__pill:hover {
  border-color: rgba(201,168,76,.25);
  color:        rgba(255,255,255,.65);
}

/* ── PARTICLE BURST ── */
@keyframes wmfp-cta-particle {
  0%   { transform: rotate(var(--a)) translateX(0)   scale(1);   opacity:1; }
  100% { transform: rotate(var(--a)) translateX(40px) scale(0);  opacity:0; }
}

/* ── MOBILE ── */
@media (max-width:560px){
  body.home .wmfp-cta__buttons { flex-direction:column; align-items:stretch; }
  body.home .wmfp-cta__btn--gold,
  body.home .wmfp-cta__btn--ghost { justify-content:center; }
  body.home .wmfp-cta__trust { gap:8px; }
  body.home .wmfp-cta__pill { font-size:10px; padding:5px 11px; }
}
@media (prefers-reduced-motion:reduce){
  body.home .wmfp-cta__crown { animation:none !important; }
  body.home .wmfp-cta__inner[data-wm-reveal] { opacity:1 !important; transform:none !important; }
}