/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #ff3500;
  --accent-dim: #c9280000;
  --bg: #0c0709;
  --bg-alt: #130a0d;
  --card: #1c1114;
  --card-border: #2e1a1e;
  --maroon: #3a0d14;
  --cream: #f3e9e4;
  --muted: #b9a4a0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,.6);
  --ff-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--ff-display); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
ul { list-style: none; }

.accent { color: var(--accent); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.15em;
}
.icon--sm { width: .95em; height: .95em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #ff5a2e, var(--accent));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(255,53,0,.55);
}
.btn--primary:active { transform: scale(.97); }
.btn--ghost {
  background: transparent;
  border-color: rgba(243,233,228,.25);
  color: var(--cream);
}
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ===== Promo popup ===== */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.promo-modal[hidden] { display: none; }
.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,2,3,.82);
  backdrop-filter: blur(6px);
}
.promo-modal__card {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: promoIn .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes promoIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.promo-modal__banner {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 352;
  object-fit: cover;
}
.promo-modal__body { padding: 1.5rem 1.75rem 1.75rem; }
.promo-modal__close {
  position: absolute;
  top: .9rem; right: .9rem;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(12,7,9,.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243,233,228,.25);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.promo-modal__close.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.promo-modal__close .icon { width: 1rem; height: 1rem; }
.promo-modal__lead { color: var(--muted); font-size: .92rem; margin-bottom: 1.5rem; }
.promo-modal__list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.75rem; }
.promo-modal__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 500;
}
.promo-modal__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,53,0,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-modal__icon .icon { width: 1.1rem; height: 1.1rem; }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(243,233,228,.08);
}
/* blur lives on a pseudo-element (not .nav itself) so .nav never becomes
   the containing block for its fixed-position mobile drawer */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12,7,9,.75);
  backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: .02em;
}
.logo__ero { color: var(--accent); }

.nav__links {
  display: none;
}
.nav__link {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding: .5rem 0;
  transition: color .25s ease;
}
.nav__link:hover { color: var(--cream); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav__link.is-active { color: var(--cream); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: .5rem; padding: .6rem 1.3rem; font-size: .88rem; }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(243,233,228,.2);
  border-radius: 10px;
}
.burger span {
  width: 20px;
  height: 2px;
  background: var(--cream);
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: 1.5rem;
  gap: 1.25rem;
  overflow-y: auto;
}
.nav__links.is-open .nav__link { font-size: 1.15rem; border-bottom: 1px solid rgba(243,233,228,.08); padding-bottom: 1rem; }
.nav__links.is-open .nav__cta { margin: 1rem 0 0; text-align: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,7,9,.35) 0%, rgba(12,7,9,.55) 45%, rgba(12,7,9,.96) 92%),
    linear-gradient(90deg, rgba(12,7,9,.85) 0%, rgba(12,7,9,.15) 55%);
}
/* Shares the same centered 1200px column as .nav__inner and .section, so hero
   copy lines up with the rest of the page at wide desktop widths */
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 6rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__content { max-width: 640px; width: 100%; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,53,0,.12);
  border: 1px solid rgba(255,53,0,.35);
  color: #ff8a63;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero__sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 46ch;
  margin-bottom: 1.5rem;
}
.hero__note {
  color: var(--muted);
  font-size: .8rem;
  margin-top: .7rem;
}
.trust-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--ff-display); font-size: 1.3rem; color: var(--accent); }
.trust-item span { font-size: .78rem; color: var(--muted); }

.scroll-hint {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  color: var(--muted);
  animation: bounce 2s infinite;
}
.scroll-hint .icon { width: 1.4rem; height: 1.4rem; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ===== USP cards (Dlaczego warto) ===== */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.usp-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.usp-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,53,0,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.usp-card__icon .icon { width: 1.5rem; height: 1.5rem; }
.usp-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.usp-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

@media (min-width: 780px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Sections ===== */
.section { padding: 4.5rem 1.25rem; max-width: 1200px; margin: 0 auto; }
/* .section--alt can't center itself (its background needs to bleed full-width),
   so instead its own left/right padding grows to keep a virtual 1200px column
   centered — every child then aligns for free, same as in plain .section */
.section--alt {
  background: var(--bg-alt);
  max-width: none;
  padding-left: max(1.25rem, calc((100% - 1200px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100% - 1200px) / 2 + 1.25rem));
}

.section__head { max-width: 640px; margin-bottom: 2.5rem; }
.kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}
.section__head h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: .9rem; }
.section__lead { color: var(--muted); font-size: 1rem; }

.cta-inline { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ===== Card grid (Panie / Kamerki) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.pcard__photo {
  position: absolute; inset: 0;
  overflow: hidden;
  background-color: var(--card);
}
.pcard__photo img,
.pcard__photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.pcard__lock {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(12,7,9,.28);
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.pcard__lock-icon {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.pcard__lock-icon .icon { width: 1.05rem; height: 1.05rem; }
.pcard__lock-text { font-size: .78rem; font-weight: 600; opacity: .95; }
.pcard__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .75rem .8rem;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pcard__name { font-weight: 700; font-size: .92rem; }
.pcard__meta { display: inline-flex; align-items: center; gap: .25rem; font-size: .74rem; color: var(--muted); }
.pcard__badge {
  position: absolute;
  top: .6rem; left: .6rem;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: .25rem .55rem;
  border-radius: 999px;
  letter-spacing: .03em;
}
.pcard__badge--live {
  background: #17b866;
  display: flex; align-items: center; gap: .3rem;
}
.pcard__badge--live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #fff;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ===== Feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,53,0,.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature__icon .icon { width: 1.3rem; height: 1.3rem; }
.feature h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .9rem; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.step { position: relative; padding-left: 3.5rem; }
.step__num {
  position: absolute; left: 0; top: 0;
  width: 2.6rem; height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5a2e, var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ===== Reviews ===== */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.review {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review__stars { display: flex; gap: .2rem; color: var(--accent); margin-bottom: .75rem; }
.review__stars .icon { width: 1.05rem; height: 1.05rem; }
.review p:not(.review__author) { font-style: italic; color: var(--cream); margin-bottom: 1rem; }
.review__author { font-size: .82rem; color: var(--muted); font-style: normal !important; }

/* ===== Cities ===== */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.city-pill {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--cream);
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: border-color .15s ease, color .15s ease;
}
.city-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Final CTA ===== */
.final-cta {
  padding: 4.5rem 1.25rem;
  text-align: center;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,53,0,.16), transparent 60%),
    var(--maroon);
  border-top: 1px solid rgba(255,53,0,.15);
}
.final-cta__inner { max-width: 520px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: .8rem; }
.final-cta p { color: var(--muted); margin-bottom: 1.75rem; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(12,7,9,.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,53,0,.2);
  transform: translateY(120%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ===== Legal pages ===== */
.legal-header {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(243,233,228,.08);
}
.legal-header__inner { max-width: 760px; margin: 0 auto; }
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}
.legal__updated { color: var(--muted); font-size: .85rem; margin-bottom: 2.5rem; }
.legal h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: .5rem; }
.legal h2 { font-size: 1.15rem; margin: 2.25rem 0 .85rem; }
.legal p, .legal li { color: var(--muted); font-size: .95rem; line-height: 1.75; }
.legal ul, .legal ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal li { margin-bottom: .5rem; }
.legal p { margin-bottom: 1rem; }
.legal strong { color: var(--cream); }
.legal a { color: var(--accent); text-decoration: underline; }

/* ===== Footer ===== */
.footer { padding: 3rem 1.25rem 6.5rem; background: var(--bg-alt); }
.footer__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.logo--footer { display: inline-block; margin-bottom: 1.2rem; }
.footer__legal { color: var(--muted); font-size: .8rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer__links { display: flex; justify-content: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.footer__links a { font-size: .82rem; color: var(--muted); }
.footer__links a:hover { color: var(--cream); }
.footer__copy { font-size: .75rem; color: #6b5a57; }

/* ===== Breakpoints ===== */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { padding-left: 0; padding-top: 3.5rem; }
  .step__num { top: 0; left: 0; }
}

@media (min-width: 960px) {
  .nav__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    position: static;
    background: none;
    padding: 0;
  }
  .burger { display: none; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .sticky-cta { display: none; }
}

@media (min-width: 960px) {
  .hero__container {
    min-height: 92vh;
    max-height: 980px;
    justify-content: center;
  }
  .hero__bg img { object-position: 66% 38%; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(12,7,9,.3) 0%, rgba(12,7,9,.4) 55%, rgba(12,7,9,.9) 100%),
      linear-gradient(100deg, rgba(12,7,9,.94) 0%, rgba(12,7,9,.62) 38%, rgba(12,7,9,.08) 66%);
  }
  .hero__content { max-width: 600px; }
  .trust-row { margin-top: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-hint, .pcard__badge--live::before { animation: none; }
}
