/* ============================================================
   POSTOD — landing + lejek
   Granat #1B2A4A · Żółty #FFC933 · Tło #F7F8FA · Inter
   Mobile-first
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --navy-deep: #14213C;
  --navy-soft: #2A3C63;
  --yellow: #FFC933;
  --yellow-soft: #FFF3CC;
  --bg: #F7F8FA;
  --white: #FFFFFF;
  --text: #1B2A4A;
  --muted: #5A6478;
  --line: #E4E8F0;
  --red: #D64545;
  --green: #1E9E5A;
  --radius: 16px;
  --shadow-soft: 0 6px 24px rgba(27, 42, 74, 0.08);
  --shadow-lift: 0 16px 48px rgba(27, 42, 74, 0.14);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}
/* UWAGA: bloki łączone z .container (np. .hero__in) ustawiają padding wyłącznie
   pionowo (padding-top/bottom), żeby nie zerować bocznych marginesów kontenera. */

/* ---------- Logo ---------- */
.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.logo .dot { color: var(--yellow); }
.logo--light { color: var(--white); }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  padding: 16px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(255, 201, 51, 0.4);
}
.btn--primary:hover { box-shadow: 0 10px 32px rgba(255, 201, 51, 0.55); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.25);
}
.btn--navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn--ghost:hover { border-color: var(--navy); }

.btn--sm { padding: 10px 20px; font-size: 0.95rem; }
.btn--block { width: 100%; }

.btn-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 232, 240, 0.7);
}
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-nav { display: none; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}
.site-nav a:hover { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}
.lang-switch:hover { color: var(--navy); border-color: var(--navy); }

@media (min-width: 900px) {
  .site-nav { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 51, 0.22), transparent 65%);
  pointer-events: none;
}
.hero__in {
  display: grid;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 24px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__badge .pulse-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 201, 51, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255, 201, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 51, 0); }
}
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero h1 .hl {
  background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 94%, transparent 94%);
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 28px;
}
.hero__lead strong { color: var(--text); }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; }
.hero__scroll-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.hero__scroll-link:hover { color: var(--navy); }

.hero__visual { position: relative; margin: 0 auto; max-width: 340px; }
.hero__visual img {
  /* cutout z przezroczystym tłem — cień rysowany po konturze telefonu */
  filter: drop-shadow(0 24px 48px rgba(27, 42, 74, 0.18));
}
.float-chip {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 5s ease-in-out infinite;
}
.float-chip--deadline { top: 14%; right: -8%; color: var(--navy); }
.float-chip--deadline .ic { color: var(--red); }
.float-chip--done { bottom: 12%; left: -10%; color: var(--navy); animation-delay: 2.5s; }
.float-chip--done .ic { color: var(--green); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 900px) {
  .hero__in {
    grid-template-columns: 1.15fr 0.85fr;
    padding-top: 72px;
    padding-bottom: 48px;
  }
  .hero__visual { max-width: 380px; }
}

/* ---------- Pasek zaufania ---------- */
.trustbar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trustbar__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  text-align: center;
}
.trustbar__count {
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trustbar__count .num { color: var(--navy); font-size: 1.15rem; }
.trustbar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}
.trustbar__items span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Sekcje funkcji ---------- */
.section { padding: 64px 0; }
.section--alt { background: var(--white); }
.section__head { max-width: 40rem; margin-bottom: 36px; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A8861B;
  background: var(--yellow-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}
.section__lead { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section__lead strong { color: var(--text); }

.feature {
  display: grid;
  gap: 36px;
  align-items: center;
}
.feature + .feature { margin-top: 72px; }
.feature__media { position: relative; max-width: 320px; margin: 0 auto; }
.feature__media img {
  filter: drop-shadow(0 24px 48px rgba(27, 42, 74, 0.18));
}
.feature__body h3, .feature__body h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
}
.feature__body p { color: var(--muted); margin: 0 0 18px; }
.feature__body p strong { color: var(--text); }

.viral-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: var(--muted);
}
.check-list li strong { color: var(--text); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2A4A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

.assure-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 201, 51, 0.6);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .section { padding: 96px 0; }
  .feature { grid-template-columns: 1fr 1fr; gap: 64px; }
  .feature__media { max-width: 360px; }
  .feature--flip .feature__media { order: 2; }
  .feature--flip .feature__body { order: 1; }
}

/* ---------- Duże zdjęcia (azjatka, rodzina) ---------- */
.photo-strip {
  margin: 48px 0 0; /* reset domyślnych 40px marginesów <figure> — pełna szerokość kontenera */
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.photo-strip img { width: 100%; object-fit: cover; max-height: 560px; }
.photo-strip--tight { margin-top: 12px; }
@media (max-width: 767px) {
  /* Na mobile zdjęcia idą edge-to-edge (pełna szerokość ekranu). */
  .photo-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
  .photo-strip img { max-height: 420px; }
}
/* Blok treści pod szerokim zdjęciem */
.after-photo { max-width: 40rem; margin-top: 30px; }
.photo-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(27, 42, 74, 0.85);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

/* ---------- Glob ---------- */
.globe-section {
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.globe-section .eyebrow { background: rgba(255, 201, 51, 0.15); color: var(--yellow); }
.globe-section h2 { color: var(--white); }
.globe-section .section__lead { color: #B8C2D8; }
.globe-wrap { margin: 40px auto 0; max-width: 880px; }
.globe-wrap svg { width: 100%; height: auto; display: block; }
.globe-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin-top: 26px;
  font-size: 0.9rem;
  color: #B8C2D8;
  font-weight: 600;
}
.globe-legend span { display: inline-flex; align-items: center; gap: 9px; }
.legend-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.legend-dot--on { background: var(--yellow); }
.legend-dot--soon { background: #43537A; }

.country {
  fill: #223357;
  stroke: #485982; /* jaśniejszy kontur — kontynenty czytelne na granacie */
  stroke-width: 0.5;
  stroke-linejoin: round;
  transition: fill 0.3s ease;
}
.country--supported { fill: var(--yellow); stroke: #E0AC0F; stroke-width: 0.8; }
.poland-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: poland-glow 2.6s ease-in-out infinite;
}
@keyframes poland-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 201, 51, 0.45)); }
  50% { filter: drop-shadow(0 0 16px rgba(255, 201, 51, 0.95)); }
}
.pulse-ring {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.6;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: ring 2.6s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.7); opacity: 0.9; }
  85% { transform: scale(2.1); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Polonia ---------- */
.polonia {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.polonia__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.polonia__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 33, 60, 0.94) 0%, rgba(20, 33, 60, 0.82) 55%, rgba(20, 33, 60, 0.55) 100%);
}
.polonia__in {
  position: relative;
  display: grid;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 72px;
  align-items: center;
}
.polonia .eyebrow { background: rgba(255, 201, 51, 0.15); color: var(--yellow); }
.polonia h2 { color: var(--white); }
.polonia p { color: #C7D0E2; }
.polonia .check-list li { color: #C7D0E2; }
.polonia .check-list li strong { color: var(--white); }
.polonia__media { max-width: 300px; margin: 0 auto; }
.polonia__media img { filter: drop-shadow(0 24px 48px rgba(27, 42, 74, 0.18)); }

@media (min-width: 900px) {
  .polonia__in {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

/* ---------- Galeria ---------- */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(68vw, 250px);
  gap: 20px;
  overflow-x: auto;
  padding: 8px 20px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.gallery figure { margin: 0; scroll-snap-align: center; }
.gallery img {
  filter: drop-shadow(0 24px 48px rgba(27, 42, 74, 0.18));
  transition: transform 0.25s ease;
}
.gallery figure:hover img { transform: translateY(-6px); }
.gallery figcaption {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 12px;
}
@media (min-width: 900px) {
  /* Centrowanie bez ucinania: fit-content + auto marginesy — gdy zawartość
     szersza niż okno, element zaczyna od lewej i przewija się normalnie. */
  .gallery { max-width: fit-content; margin-left: auto; margin-right: auto; padding-bottom: 8px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-weight: 700;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--navy);
  border-bottom: 2.5px solid var(--navy);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item .faq-body { padding: 0 20px 20px; color: var(--muted); }
.faq-item .faq-body p { margin: 0 0 10px; }

/* ---------- Finalne CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 51, 0.16), transparent 65%);
}
.final-cta__in { position: relative; padding-top: 80px; padding-bottom: 80px; }
.final-cta h2 { color: var(--white); max-width: 34rem; margin: 0 auto 14px; }
.final-cta p { color: #B8C2D8; max-width: 30rem; margin: 0 auto 30px; }
.final-cta .btn-note { color: #8E9BB5; }

/* ---------- Stopka ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #B8C2D8; /* jaśniejszy tekst — kontrast WCAG AA na granacie */
  padding: 40px 0;
  font-size: 0.9rem;
}
.site-footer__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer a { color: #E2E8F4; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.site-footer .tiny { color: #B8C2D8; }
@media (max-width: 899px) {
  /* Sticky CTA jest widoczne poniżej 900px — zostaw stopce miejsce,
     żeby cała była czytelna nad przyklejonym przyciskiem. */
  .site-footer { padding-bottom: calc(40px + 96px + env(safe-area-inset-bottom)); }
}

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ---------- Animacje wejścia ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .poland-pulse, .pulse-ring, .hero__badge .pulse-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LEJEK (quiz)
   ============================================================ */
.funnel {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.funnel.open { display: flex; }
body.funnel-open { overflow: hidden; }

.funnel__top {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 5;
  padding: 14px 16px 10px;
}
.funnel__bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.funnel__nav-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel__nav-btn:disabled { opacity: 0.35; cursor: default; }
.funnel__progress {
  flex: 1;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.funnel__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.funnel__step-label {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 34px;
  text-align: right;
}

.funnel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 48px;
}
.funnel__screen {
  width: 100%;
  max-width: 560px;
  animation: screen-in 0.3s ease;
}
@keyframes screen-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.funnel__screen h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 8px 0 8px;
  font-weight: 800;
}
.funnel__screen .funnel__hint {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.answers { display: grid; gap: 12px; margin-top: 20px; }
.answer-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.answer-btn:hover { border-color: var(--yellow); box-shadow: var(--shadow-soft); }
.answer-btn:active { transform: scale(0.985); }
.answer-btn.selected { border-color: var(--yellow); background: var(--yellow-soft); }
.answer-btn .emoji { font-size: 1.4rem; flex: 0 0 auto; }

.funnel select {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2A4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

/* Ekran wartości */
.value-screen { text-align: left; }
.value-screen__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  margin: 20px 0 28px;
}
.value-card ul { list-style: none; margin: 0; padding: 0; }
.value-card li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--muted);
}
.value-card li:last-child { margin-bottom: 0; }
.value-card li strong { color: var(--text); }
.value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2A4A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Formularz e-mail */
.email-form { margin-top: 8px; }
.email-form input[type="email"] {
  width: 100%;
  padding: 16px;
  font-family: var(--font);
  font-size: 1.05rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}
.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 201, 51, 0.25);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--navy);
}
.consent a { color: var(--navy); font-weight: 600; }
.form-error {
  display: none;
  background: #FDECEC;
  border: 1px solid #F2C4C4;
  color: #A03030;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.form-error.visible { display: block; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Sukces */
.success-screen { text-align: center; padding-top: 24px; }
.success-screen .big-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 40px rgba(255, 201, 51, 0.5);
}
@keyframes pop-in {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-screen .big-check svg { width: 46px; height: 46px; }
.success-screen .list-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 201, 51, 0.6);
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  margin: 8px 0 22px;
}
.success-screen p.share-hint { color: var(--muted); font-size: 0.95rem; }
.share-copied {
  display: none;
  margin-top: 12px;
  font-weight: 700;
  color: var(--green);
  font-size: 0.9rem;
}
.share-copied.visible { display: inline-block; }

/* ---------- Panel — komunikat drobny ---------- */
.tiny { font-size: 0.8rem; color: var(--muted); }

/* ---------- Oferta założycielska ---------- */
.founder-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 201, 51, 0.6);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  max-width: 34rem;
}
.founder-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.founder-line {
  display: block;
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 201, 51, 0.6);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

/* ---------- Kto za tym stoi ---------- */
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px;
  max-width: 760px;
  margin: 0 auto;
}
.founder-card p { color: var(--muted); margin: 0 0 16px; }
.founder-card p:last-child { margin-bottom: 0; }
.founder-card strong { color: var(--text); }
.founder-card a { color: var(--navy); font-weight: 700; }

/* ---------- Artykuł (poradnik) ---------- */
.article { max-width: 720px; margin: 0 auto; }
.article h1 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 14px;
}
.article__meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.article h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); letter-spacing: -0.02em; margin: 40px 0 12px; }
.article h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.article p, .article li { color: var(--muted); }
.article p strong, .article li strong { color: var(--text); }
.article ul, .article ol { padding-left: 22px; }
.article img { border-radius: var(--radius); }
.article-placeholder {
  background: var(--yellow-soft);
  border: 1px dashed rgba(255, 201, 51, 0.9);
  border-radius: var(--radius);
  padding: 28px;
  color: #A8861B;
  font-weight: 600;
  text-align: center;
}
