:root {
  --black: #050505;
  --black2: #111111;
  --yellow: #fff133;
  --cream: #f7f2e6;
  --white: #ffffff;
  --red: #ff4d4f;
  --ink: #111111;
  --muted: #6d6d6d;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(0,0,0,.12);
  --shadow: 0 20px 55px rgba(0,0,0,.18);
  --radius: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  font-size: 15px;
  line-height: 1.56;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - 28px));
  margin-inline: auto;
}
.narrow { width: min(780px, calc(100% - 28px)); }
.center { text-align: center; }

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: clamp(1.72rem, 3.15vw, 2.25rem); max-width: 780px; }
h2 { font-size: clamp(1.42rem, 2.35vw, 1.9rem); max-width: 760px; }
h3 { font-size: clamp(1rem, 1.25vw, 1.12rem); margin-bottom: 7px; }
p { margin: 0 0 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}
.header-cta {
  text-decoration: none;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

.section-black {
  background:
    linear-gradient(135deg, rgba(255,241,51,.12), transparent 28%),
    linear-gradient(180deg, #050505, #101010);
  color: var(--white);
}
.section-yellow { background: var(--yellow); color: var(--ink); }
.section-white { background: var(--cream); color: var(--ink); }
.section-compact { padding: clamp(44px, 6vw, 74px) 0; }
.hero { padding: clamp(34px, 6vw, 78px) 0 clamp(46px, 7vw, 86px); }

.hero-grid,
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 720px; }
.hero-lead {
  font-size: 1rem;
  font-weight: 650;
  color: #f5f5f5;
}
.label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 900;
}
.label-yellow { background: var(--yellow); color: var(--black); }
.label-dark { background: var(--black); color: var(--yellow); }

.hero-pricing,
.price-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 18px;
}
.hero-pricing div,
.price-panel div {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 16px;
}
.hero-pricing span,
.price-panel span {
  display: block;
  color: #d8d8d8;
  font-size: .74rem;
  font-weight: 750;
  margin-bottom: 7px;
}
.hero-pricing strong,
.price-panel strong {
  display: block;
  font-family: "Anton", "Montserrat", Arial, sans-serif;
  color: var(--yellow);
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  line-height: .94;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.promo-highlight {
  background: linear-gradient(180deg, rgba(255,241,51,.18), rgba(255,255,255,.08));
  border: 2px solid var(--yellow) !important;
  box-shadow: 0 0 0 2px rgba(255,241,51,.12), 0 18px 40px rgba(0,0,0,.18);
}
.old-price {
  margin: 0 0 6px;
  color: #d7d7d7;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-family: "Anton", "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: .03em;
  font-weight: 400;
}
.hero-pricing .promo-highlight strong,
.price-panel .promo-highlight strong {
  font-size: clamp(2.1rem, 5vw, 3rem);
}
.hero-pricing em,
.price-panel em {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-size: .76rem;
  font-weight: 800;
  color: #f5f5f5;
}
.price-panel div { background: rgba(255,255,255,.08); }

.countdown {
  background: var(--yellow);
  color: var(--black);
  border-radius: 18px;
  padding: 16px;
  margin: 16px 0 18px;
}
.countdown p {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.countdown-grid div {
  background: var(--black);
  color: var(--white);
  border-radius: 13px;
  padding: 9px 5px;
  text-align: center;
}
.countdown-grid strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  line-height: 1;
}
.countdown-grid span {
  display: block;
  color: #d4d4d4;
  font-size: .65rem;
  margin-top: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 13px 21px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}
.button-primary { background: var(--yellow); color: var(--black); }
.section-yellow .button-primary,
.section-white .button-primary { background: var(--black); color: var(--yellow); }
.small-note {
  color: #d5d5d5;
  font-size: .86rem;
  margin-top: 10px;
}
.section-white .small-note,
.section-yellow .small-note { color: #494949; }

.hero-card {
  display: grid;
  gap: 14px;
}
.image-shell {
  background: var(--yellow);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.image-shell img,
.about-image img {
  width: 100%;
  border-radius: 22px;
  background: #191919;
}
.event-box {
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.event-box span {
  display: block;
  font-size: .78rem;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.event-box strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.event-box p { margin: 0; }

.copy-card,
.light-card,
.dark-card {
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.light-card { background: rgba(255,255,255,.78); border: 1px solid var(--line-light); }
.dark-card { background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); }
.text-dark { color: var(--ink); }
.text-flow p { font-size: 1rem; }

.problem-copy {
  margin-top: 18px;
  max-width: 560px;
}

.phone-problem-layout {
  align-items: start;
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: min(100%, 360px);
  background: #121212;
  color: #111;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
  border: 2px solid rgba(255,255,255,.24);
}

.phone-topbar {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 10px;
  font-size: .74rem;
  font-weight: 700;
}

.phone-notch {
  width: 122px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
}

.phone-appbar {
  background: #fff;
  color: #111;
  border-radius: 28px 28px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  font-size: .92rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.phone-appbar strong {
  font-size: .95rem;
  font-weight: 700;
}

.back-arrow,
.menu-dots {
  color: #555;
  font-size: 1rem;
  line-height: 1;
}

.phone-profile-header,
.phone-profile-copy,
.phone-buttons,
.phone-story-row,
.phone-grid-tabs,
.phone-post-grid {
  background: #fff;
}

.phone-profile-header {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.phone-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff133, #ffc93a);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #111;
  border: 3px solid #111;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.phone-stats strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1;
  color: #111;
}

.phone-stats span {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: .67rem;
  line-height: 1.2;
}

.phone-profile-copy {
  padding: 0 16px 8px;
  color: #111;
}

.phone-profile-copy > strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 4px;
}

.phone-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.phone-profile-copy p {
  margin: 0 0 6px;
  font-size: .76rem;
  line-height: 1.4;
}

.phone-bio-note {
  color: #4a4a4a;
}

.phone-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 16px 12px;
}

.phone-buttons button {
  border: 0;
  border-radius: 10px;
  min-height: 34px;
  background: #111;
  color: #fff133;
  font-weight: 800;
  font-size: .76rem;
}

.phone-buttons .secondary {
  background: #f2f2f2;
  color: #111;
  border: 1px solid rgba(0,0,0,.08);
}

.phone-story-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px 12px;
}

.phone-story-row div {
  text-align: center;
}

.phone-story-row span {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,241,51,.9), rgba(17,17,17,.15));
  border: 2px solid #1a1a1a;
}

.phone-story-row small {
  color: #555;
  font-size: .65rem;
}

.phone-grid-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 8px 0;
  color: #777;
}

.phone-grid-tabs .active {
  color: #111;
  font-weight: 900;
}

.phone-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.phone-post-grid div {
  aspect-ratio: 1 / 1;
}

.post-a { background: linear-gradient(135deg, #111, #3e3e3e); }
.post-b { background: linear-gradient(135deg, #fff133, #111); }
.post-c { background: linear-gradient(135deg, #f9f9f9, #d9d9d9); }
.post-d { background: linear-gradient(135deg, #232323, #fff133); }
.post-e { background: linear-gradient(135deg, #fff6a9, #f1c40f); }
.post-f { background: linear-gradient(135deg, #444, #101010); }

.section-title { max-width: 760px; margin-bottom: 24px; }
.section-title p:last-child { color: var(--muted); }

.clean-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.clean-list li,
.x-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 650;
}
.clean-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}
.clean-list li::before { content: "✓"; background: var(--yellow); color: var(--black); }
.x-list li::before { content: "×"; background: var(--red); color: var(--white); }

.tile-grid {
  display: grid;
  gap: 14px;
}
.tile-grid.three { grid-template-columns: repeat(3, 1fr); }
.tile-grid article {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 18px;
  min-height: 128px;
  font-weight: 650;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
}

.program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.program-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 16px;
}
.program-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
}
.program-list p { margin: 0; color: #333; }

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}
.proof-card {
  background: var(--white);
  color: var(--black);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}
.proof-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #1c1c1c;
}
.big-proof { grid-row: span 2; }
.big-proof img { height: 470px; }
.proof-card div { padding: 15px; }
.proof-card span {
  display: block;
  color: var(--black);
  font-weight: 900;
  margin-bottom: 5px;
}
.proof-card p { color: #444; margin: 0; }

.results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-card img {
  height: 250px;
  object-fit: contain;
  background: #f4f5f7;
  padding: 10px;
}

.price-section { padding: clamp(48px, 6vw, 78px) 0; }
.price-panel div { text-align: left; }
.price-panel strong { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.about-image {
  background: var(--yellow);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.faq { display: grid; gap: 10px; margin-top: 20px; }
details {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 15px 16px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p { margin: 12px 0 0; }

.final-section { padding: clamp(48px, 6vw, 78px) 0; }
.mini-price {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 14px;
  margin: 18px auto;
  max-width: 560px;
}
.mini-price strong { color: var(--yellow); }

.footer {
  background: var(--black);
  color: #cfcfcf;
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
}
.footer p { margin: 0; }
.footer a { color: var(--yellow); text-decoration: none; font-weight: 800; }

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  max-width: 980px;
  margin-inline: auto;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--white);
  color: var(--black);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 4px 0 0; font-size: .85rem; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.cookie-actions button:last-child { background: var(--black); color: var(--yellow); }


.problem-copy {
  margin-top: 18px;
  max-width: 560px;
}

.phone-problem-layout {
  align-items: center;
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.real-phone-mockup {
  position: relative;
  width: min(100%, 385px);
  border-radius: 38px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  border: 4px solid rgba(16,16,16,.9);
}

.real-phone-shot {
  width: 100%;
  display: block;
}

.real-phone-cover {
  position: absolute;
  left: 44.9%;
  top: 18.25%;
  width: 13.1%;
  height: 3.05%;
  background: #000;
  border-radius: 0;
}

.real-phone-counter {
  position: absolute;
  left: 44.9%;
  top: 17.9%;
  width: 13.1%;
  height: 3.05%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
}

.real-phone-counter strong {
  display: block;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.02rem, 2.05vw, 1.38rem);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}


@media (max-width: 960px) {
  .hero-grid,
  .two-columns { grid-template-columns: 1fr; }
  .phone-showcase { justify-content: flex-start; }
  .phone-showcase { justify-content: flex-start; }
  .reverse-mobile > .copy-card { order: 2; }
  .reverse-mobile > div:last-child { order: 1; }
  .tile-grid.three,
  .program-list,
  .proof-grid,
  .before-after-block { grid-template-columns: 1fr 1fr; }
  .big-proof { grid-row: auto; grid-column: 1 / -1; }
  .big-proof img { height: 330px; }
}

@media (max-width: 640px) {
  body { font-size: 14.5px; line-height: 1.52; }
  .container,
  .narrow { width: min(100% - 22px, var(--container)); }
  .header-inner { min-height: 58px; }
  .logo { font-size: .9rem; }
  .header-cta { font-size: .76rem; padding: 9px 12px; }
  .hero { padding: 26px 0 42px; }
  .section-compact { padding: 38px 0; }
  h1 { font-size: clamp(1.45rem, 6.4vw, 1.72rem); line-height: 1.13; margin-bottom: 13px; }
  h2 { font-size: clamp(1.18rem, 5.2vw, 1.42rem); line-height: 1.16; margin-bottom: 12px; }
  h3 { font-size: .98rem; }
  .hero-lead { font-size: .94rem; }
  p { margin-bottom: 12px; }
  .label { font-size: .66rem; padding: 7px 10px; margin-bottom: 11px; }
  .hero-pricing,
  .price-panel { grid-template-columns: 1fr; }
  .hero-pricing div,
  .price-panel div { padding: 14px; }
  .hero-pricing strong,
  .price-panel strong { font-size: 1.58rem; }
  .hero-pricing .promo-highlight strong,
  .price-panel .promo-highlight strong { font-size: 2rem; }
  .old-price { font-size: .9rem; }
  .countdown { padding: 13px; }
  .countdown-grid { gap: 5px; }
  .countdown-grid div { padding: 8px 3px; }
  .countdown-grid strong { font-size: 1.02rem; }
  .countdown-grid span { font-size: .59rem; }
  .button { width: 100%; min-height: 50px; font-size: .92rem; }
  .image-shell,
  .about-image { border-radius: 22px; padding: 8px; }
  .image-shell img,
  .about-image img { border-radius: 17px; }
  .copy-card,
  .light-card,
  .dark-card { padding: 18px; border-radius: 18px; }
  .tile-grid.three,
  .program-list,
  .proof-grid,
  .before-after-block { grid-template-columns: 1fr; }
  .tile-grid article { min-height: auto; padding: 16px; }
  .program-list article { grid-template-columns: 36px 1fr; padding: 14px; }
  .program-list span { width: 36px; height: 36px; font-size: .72rem; }
  .proof-card img,
  .big-proof img { height: auto; }
  .problem-copy { margin-top: 14px; }
  .real-phone-mockup { width: min(100%, 350px); margin-inline: auto; }
  .real-phone-cover { left: 44.9%; top: 18.25%; width: 13.1%; height: 3.05%; }
  .real-phone-counter { left: 44.9%; top: 17.9%; width: 13.1%; height: 3.05%; }
  .real-phone-counter strong { font-size: .98rem; }
  .problem-copy { margin-top: 14px; }
  .phone-mockup { width: min(100%, 320px); margin-inline: auto; border-radius: 32px; }
  .phone-topbar { padding: 5px 8px 8px; }
  .phone-notch { width: 104px; height: 22px; }
  .phone-profile-header { grid-template-columns: 62px 1fr; gap: 10px; padding: 14px; }
  .phone-avatar { width: 62px; height: 62px; font-size: .94rem; }
  .phone-stats strong { font-size: .96rem; }
  .phone-stats span { font-size: .62rem; }
  .phone-story-row span { width: 46px; height: 46px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

/* Mocniejsze wyróżnienie ceny promocyjnej */
.promo-highlight {
  position: relative;
  transform: scale(1.03);
}

.promo-badge {
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black) !important;
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 10px !important;
  font-size: .72rem !important;
  font-weight: 950 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-pricing .promo-price,
.price-panel .promo-price {
  display: inline-block;
  color: var(--yellow);
  font-family: "Anton", "Montserrat", Arial, sans-serif;
  font-size: clamp(3.2rem, 9vw, 5.8rem) !important;
  font-weight: 400;
  line-height: .88;
  letter-spacing: .02em;
  text-shadow: 0 0 28px rgba(255,241,51,.42);
  margin: 4px 0 4px;
}

.price-inline {
  color: var(--yellow);
  font-family: "Anton", "Montserrat", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
}

.price-section .small-note strong {
  color: var(--yellow);
  font-size: 1.08em;
}

@media (max-width: 560px) {
  .promo-highlight {
    transform: none;
  }

  .hero-pricing .promo-price,
  .price-panel .promo-price {
    font-size: clamp(3.2rem, 18vw, 4.9rem) !important;
  }
}


.before-after-block {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-card {
  background: rgba(255,255,255,.82);
  color: var(--black);
  border: 1px solid var(--line-light);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.compare-card img {
  width: 100%;
  display: block;
  background: #fff;
}

.compare-badge {
  display: inline-block;
  margin: 14px 14px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: .78rem;
  font-weight: 800;
  border: 1px solid var(--line-light);
}

.compare-badge-dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.compare-copy {
  padding: 14px 16px 18px;
}

.compare-copy strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.compare-copy p {
  margin: 0;
  color: #333;
}


.opinion-title {
  margin-top: 28px;
}

.opinion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.opinion-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f4f5f7;
  padding: 10px;
}


.legal-page {
  background: var(--cream);
  color: var(--ink);
}

.legal-header {
  background: var(--black);
  color: var(--white);
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.legal-header a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.legal-content {
  padding: clamp(34px, 6vw, 70px) 0;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.legal-card h1,
.legal-card h2,
.legal-card h3 {
  color: var(--black);
}

.legal-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(1.22rem, 2.6vw, 1.65rem);
}

.legal-card p,
.legal-card li {
  color: #232323;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-meta {
  background: var(--yellow);
  color: var(--black);
  border-radius: 18px;
  padding: 16px;
  margin: 22px 0;
  font-weight: 700;
}

.legal-footer {
  background: var(--black);
  color: var(--white);
  padding: 22px 0;
  font-size: .9rem;
}

.legal-footer a {
  color: var(--yellow);
  font-weight: 800;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin-top: 16px;
  font-size: .9rem;
}

.footer-legal-links a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 640px) {
  .legal-card {
    border-radius: 18px;
  }

  .footer-legal-links {
    display: grid;
    gap: 8px;
  }
}


.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.checkout-modal.is-visible {
  display: block;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(6px);
}

.checkout-modal__dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  margin: min(6vh, 40px) auto;
  background: linear-gradient(180deg, #050505, #111111);
  color: var(--white);
  border: 1px solid rgba(255,241,51,.45);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.checkout-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-modal__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.checkout-modal__dialog h2 {
  max-width: none;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: .96;
  margin-bottom: 14px;
}

.checkout-modal__lead {
  color: #e8e8e8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.checkout-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,241,51,.32);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 18px;
}

.checkout-consent input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--yellow);
  flex: 0 0 auto;
}

.checkout-consent span {
  color: #f5f5f5;
  font-weight: 700;
}

.checkout-consent a {
  color: var(--yellow);
  font-weight: 900;
}

.checkout-pay-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  border-radius: 22px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Anton", "Montserrat", Arial, sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}

.checkout-pay-button.is-disabled {
  pointer-events: none;
  opacity: .38;
  filter: grayscale(1);
}

.checkout-modal__note {
  margin: 14px 0 0;
  color: #cfcfcf;
  font-size: .9rem;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .checkout-modal__dialog {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .checkout-modal__dialog h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .checkout-pay-button {
    min-height: 62px;
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }
}


.opinions-slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.opinions-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.opinions-track .opinion-card {
  flex: 0 0 100%;
  min-width: 100%;
}

.opinion-card {
  border-radius: 24px;
}

.opinion-card img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  background: #f4f5f7;
  padding: 12px;
}

.opinion-card div {
  padding: 18px 18px 20px;
}

.opinion-card span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.opinion-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #333;
}

.opinions-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.opinions-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(0,0,0,.24);
}

.opinions-dots button.is-active {
  width: 28px;
  background: var(--black);
}

@media (max-width: 640px) {
  .hero-card {
    max-width: 315px;
    margin: 0 auto;
    gap: 12px;
  }

  .image-shell {
    padding: 8px;
    border-radius: 24px;
  }

  .image-shell img {
    max-height: 430px;
    object-fit: cover;
    object-position: center top;
  }

  .event-box {
    padding: 16px;
    border-radius: 18px;
  }

  .event-box strong {
    font-size: 1.28rem;
  }

  .event-box p {
    font-size: .98rem;
    line-height: 1.45;
  }

  .opinions-slider {
    max-width: 100%;
  }

  .opinion-card {
    border-radius: 20px;
  }

  .opinion-card img {
    height: auto;
    max-height: 320px;
    padding: 8px;
  }

  .opinion-card div {
    padding: 16px;
  }

  .opinion-card p {
    font-size: .96rem;
    line-height: 1.48;
  }

  .checkout-pay-button {
    min-height: 56px;
    font-size: clamp(1.08rem, 7.5vw, 1.48rem);
    line-height: 1.06;
    text-align: center;
    padding: 10px 14px;
  }

  .checkout-modal__note {
    font-size: .84rem;
    line-height: 1.5;
  }
}


/* Mobile first cleanup */
@media (max-width: 640px) {
  html, body {
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.56;
  }

  .site-header {
    background: rgba(5,5,5,.94);
  }

  .header-inner {
    min-height: 56px;
    gap: 10px;
  }

  .logo {
    font-size: .82rem;
    line-height: 1.2;
    max-width: 42%;
  }

  .header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: .8rem;
    border-radius: 999px;
  }

  .hero {
    padding: 18px 0 28px;
  }

  .hero-grid,
  .two-columns {
    gap: 18px;
  }

  h1 {
    font-size: clamp(1.82rem, 9vw, 2.35rem);
    line-height: 1.04;
    margin-bottom: 14px;
  }

  h2 {
    font-size: clamp(1.52rem, 7.2vw, 2rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-copy p,
  .problem-copy p,
  .text-flow p,
  .copy-card p,
  .proof-card p,
  .faq p {
    font-size: .98rem;
    line-height: 1.58;
  }

  .hero-lead {
    font-size: 1.12rem;
    line-height: 1.42;
    margin-bottom: 14px;
  }

  .hero-pricing {
    gap: 12px;
    margin: 18px 0 14px;
  }

  .hero-pricing div,
  .price-panel div,
  .copy-card,
  .light-card,
  .dark-card,
  .proof-card,
  .compare-card,
  .event-box {
    border-radius: 18px;
  }

  .promo-badge {
    font-size: .66rem !important;
    padding: 7px 10px;
  }

  .old-price {
    font-size: .9rem;
  }

  .hero-pricing .promo-price,
  .price-panel .promo-price {
    font-size: clamp(3rem, 18vw, 4.4rem) !important;
  }

  .countdown {
    margin: 14px 0 16px;
    padding: 12px;
  }

  .button,
  .button-primary {
    min-height: 52px;
    font-size: .95rem;
    border-radius: 16px;
  }

  .hero-card {
    max-width: 280px;
    margin: 0 auto;
    gap: 10px;
  }

  .event-box {
    order: -1;
    padding: 14px;
  }

  .event-box strong {
    font-size: 1.18rem;
    margin-bottom: 4px;
  }

  .event-box p {
    font-size: .92rem;
    line-height: 1.42;
  }

  .image-shell {
    padding: 7px;
    border-radius: 22px;
  }

  .image-shell img {
    max-height: 340px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
  }

  .problem-copy {
    margin-top: 12px;
  }

  .real-phone-mockup {
    width: min(100%, 280px);
  }

  .section-compact,
  .price-section,
  .final-section {
    padding: 30px 0;
  }

  .section-title {
    margin-bottom: 18px;
  }

  .label {
    font-size: .64rem;
    padding: 7px 10px;
    margin-bottom: 10px;
  }

  .tile-grid,
  .program-list,
  .proof-grid,
  .results-grid,
  .before-after-block {
    gap: 12px;
  }

  .program-list article {
    gap: 10px;
  }

  .program-list p,
  .clean-list li,
  .x-list li,
  .tile-grid article {
    font-size: .96rem;
    line-height: 1.5;
  }

  .result-card img {
    max-height: 230px;
    object-fit: contain;
    padding: 8px;
  }

  .compare-copy,
  .proof-card div {
    padding: 14px;
  }

  .compare-copy strong {
    font-size: 1.05rem;
  }

  .opinions-slider {
    max-width: 100%;
  }

  .opinion-card {
    border-radius: 18px;
  }

  .opinion-card img {
    max-height: 280px;
    padding: 6px;
  }

  .opinion-card div {
    padding: 14px;
  }

  .opinion-card p {
    font-size: .94rem;
    line-height: 1.5;
  }

  .faq details {
    border-radius: 16px;
    padding: 14px 14px 0;
  }

  .faq summary {
    font-size: .98rem;
    line-height: 1.4;
    padding-bottom: 14px;
  }

  .mini-price {
    font-size: .92rem;
    line-height: 1.5;
  }

  .small-note {
    font-size: .84rem;
    line-height: 1.5;
  }

  .footer {
    padding-bottom: 12px;
  }

  .footer-inner {
    gap: 8px;
  }

  .checkout-modal__dialog {
    width: min(100% - 16px, 520px);
    margin: 12px auto;
    padding: 16px 14px 18px;
    border-radius: 20px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .checkout-modal__pill {
    font-size: .76rem;
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  .checkout-modal__dialog h2 {
    font-size: clamp(1.6rem, 9.5vw, 2.5rem);
    line-height: .95;
    margin-bottom: 10px;
  }

  .checkout-modal__lead {
    font-size: .94rem;
    line-height: 1.52;
    margin-bottom: 14px;
  }

  .checkout-consent {
    padding: 14px;
    gap: 10px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .checkout-consent span {
    font-size: .94rem;
    line-height: 1.45;
  }

  .checkout-pay-button {
    min-height: 54px;
    font-size: clamp(1rem, 6.8vw, 1.34rem);
    line-height: 1.08;
    text-align: center;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .checkout-modal__note {
    font-size: .82rem;
    line-height: 1.48;
    margin-top: 12px;
  }
}


.hero-quick-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.hero-quick-points li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 650;
  color: var(--white);
}

.hero-quick-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
}

.hero-detail {
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .hero-lead {
    margin-bottom: 12px;
  }

  .hero-quick-points {
    margin: 10px 0 16px;
    gap: 8px;
  }

  .hero-quick-points li {
    font-size: .95rem;
    line-height: 1.42;
    padding-left: 28px;
  }

  .hero-detail {
    display: none;
  }
}


.problem-copy-compact {
  display: grid;
  gap: 14px;
}

.problem-short-intro {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 650;
}

.problem-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.problem-point-card {
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.05);
}

.problem-point-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--black);
}

.problem-point-card p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.45;
}

.problem-point-card-accent {
  background: rgba(0,0,0,.92);
  color: var(--white);
}

.problem-point-card-accent strong,
.problem-point-card-accent p {
  color: var(--white);
}

.problem-highlight-box {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 18px;
}

.problem-highlight-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--black);
}

.problem-highlight-box p {
  margin: 0;
}

@media (max-width: 640px) {
  .hero-card {
    max-width: 320px;
    width: 100%;
    justify-self: center;
  }

  .event-box,
  .image-shell {
    width: 100%;
  }

  .image-shell {
    padding: 8px;
  }

  .image-shell img {
    max-height: 380px;
    object-fit: cover;
    object-position: center center;
  }

  .problem-copy-compact {
    gap: 12px;
  }

  .problem-short-intro {
    font-size: .98rem;
  }

  .problem-points-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .problem-point-card {
    border-radius: 18px;
    padding: 14px;
  }

  .problem-point-card strong {
    font-size: .98rem;
  }

  .problem-point-card p {
    font-size: .92rem;
    line-height: 1.42;
  }

  .problem-highlight-box {
    border-radius: 18px;
    padding: 14px;
  }

  .problem-highlight-box strong {
    font-size: 1rem;
  }

  .opinion-title h2 {
    max-width: 320px;
  }

  .opinion-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .opinion-card img {
    width: 100%;
    max-height: 560px;
    padding: 10px;
    object-fit: contain;
    background: #f4f5f7;
    border-radius: 22px;
    border: 1px solid var(--line-light);
  }

  .opinion-card div {
    display: none;
  }
}


.hero-card-compact {
  gap: 14px;
}

.compact-event-box {
  order: 1;
}

.presenter-mini-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 14px;
}

.presenter-mini-card img {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--yellow);
}

.presenter-mini-card span {
  display: block;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.presenter-mini-card strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.presenter-mini-card p {
  margin: 0;
  color: #d8d8d8;
  font-size: .92rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .hero-card,
  .hero-card-compact {
    max-width: 100%;
  }

  .compact-event-box {
    order: 1;
  }

  .presenter-mini-card {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    border-radius: 18px;
    padding: 12px;
  }

  .presenter-mini-card img {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }

  .presenter-mini-card strong {
    font-size: 1rem;
  }

  .presenter-mini-card p {
    font-size: .86rem;
    line-height: 1.4;
  }
}

.image-shell { display: none; }


.credibility-section {
  background: var(--cream);
  color: var(--ink);
}

.credibility-box {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.credibility-box p {
  color: #242424;
}

.credibility-box p:last-child {
  margin-bottom: 0;
}

.credibility-highlight {
  background: var(--yellow);
  color: var(--black) !important;
  border-radius: 16px;
  padding: 14px;
  font-weight: 650;
}

.credibility-highlight strong {
  font-weight: 900;
}

@media (max-width: 640px) {
  .credibility-section {
    padding: 28px 0;
  }

  .credibility-box {
    border-radius: 18px;
    padding: 16px;
  }

  .credibility-box p {
    font-size: .95rem;
    line-height: 1.5;
  }

  .credibility-highlight {
    padding: 12px;
  }
}



/* Mocniejsza typografia ceny 97 zł i 147 zł */
.old-price,
.hero-pricing .promo-price,
.price-panel .promo-price,
.hero-pricing div strong,
.price-panel div strong {
  font-family: "Anton", "Arial Black", "Montserrat", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.old-price {
  display: inline-block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.35rem, 4vw, 2rem) !important;
  line-height: .9;
  position: relative;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255,255,255,.95);
  text-shadow: 3px 3px 0 rgba(0,0,0,.28);
}

.hero-pricing .promo-price,
.price-panel .promo-price {
  display: inline-block;
  color: #000 !important;
  background: linear-gradient(180deg, #fff45a 0%, #fff133 100%);
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 8px 16px 4px;
  box-shadow: 0 14px 28px rgba(255,241,51,.28), inset 0 -6px 0 rgba(0,0,0,.06);
  font-size: clamp(3.6rem, 10vw, 6rem) !important;
  line-height: .88;
  text-shadow: 3px 3px 0 rgba(0,0,0,.10);
  position: relative;
}

.promo-highlight {
  position: relative;
  overflow: visible;
}

.promo-highlight::after {
  content: "PROMOCYJNA CENA";
  position: absolute;
  right: 10px;
  top: -12px;
  background: #fff133;
  color: #000;
  font-family: "Anton", "Arial Black", "Montserrat", Arial, sans-serif;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 8px 12px 6px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transform: rotate(-5deg);
}

.promo-highlight::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 14px;
  height: 20px;
  background: rgba(255,241,51,.22);
  border-radius: 999px;
  filter: blur(10px);
  z-index: 0;
}

.promo-highlight .promo-price,
.promo-highlight .old-price,
.promo-highlight .promo-badge,
.promo-highlight em {
  position: relative;
  z-index: 1;
}

.hero-pricing .promo-highlight em,
.price-panel .promo-highlight em {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  background: rgba(255,241,51,.14);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 640px) {
  .promo-highlight::after {
    right: 8px;
    top: -10px;
    font-size: .7rem;
    padding: 7px 10px 5px;
  }

  .old-price {
    font-size: 1.18rem !important;
    margin-bottom: 8px;
  }

  .hero-pricing .promo-price,
  .price-panel .promo-price {
    font-size: clamp(3.3rem, 17vw, 5rem) !important;
    padding: 6px 14px 4px;
    border-radius: 16px;
  }
}
