﻿/* Nie jest za pГіЕєno вЂ” landing w stylu US weight loss book \(dark hero + light body) */
:root {
  --black: #0a0a0a;
  --dark: #121212;
  --card-dark: #1a1a1a;
  --white: #ffffff;
  --off: #f5f5f5;
  --mute: #8a8a8a;
  --ink: #111;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.08);
  --accent: #4a90d9;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* в”Ђв”Ђв”Ђ HERO (jak panfer) в”Ђв”Ђв”Ђ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 40%, rgba(80, 50, 40, 0.45), transparent 60%),
    linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 42%, transparent 72%),
    #0a0a0a;
}

.hero-bg img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(58%, 720px);
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 6rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero h1 .line2 {
  display: block;
  margin-top: 0.15em;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  max-width: 34rem;
}

.hero-stats div strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hero-stats div span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.hero-cta-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.25rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

/* в”Ђв”Ђв”Ђ Buttons в”Ђв”Ђв”Ђ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #2a2a2a;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* в”Ђв”Ђв”Ђ Sections в”Ђв”Ђв”Ђ */
.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-muted {
  background: var(--off);
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--mute);
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* в”Ђв”Ђв”Ђ Intro questions в”Ђв”Ђв”Ђ */
.intro-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.intro-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.intro-head p {
  margin: 0;
  color: var(--mute);
  font-size: 1.1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 0.5rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 1.4;
}

/* в”Ђв”Ђв”Ђ Program cards (jak tygodnie) в”Ђв”Ђв”Ђ */
.program-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.program-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82) 100%);
}

.program-card .body {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.4rem;
  width: 100%;
}

.program-card .week {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.program-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.program-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  background: var(--black);
  text-align: center;
}

/* в”Ђв”Ђв”Ђ Benefits accordion style в”Ђв”Ђв”Ђ */
.benefits-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 2rem;
}

.benefit-block {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 1.5rem;
}

.benefit-block h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.benefit-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.benefit-block li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #333;
  font-size: 0.98rem;
}

.benefit-block li::before {
  content: "вњ“";
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
}

/* в”Ђв”Ђв”Ђ Offer / form в”Ђв”Ђв”Ђ */
.offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.offer-copy h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.offer-copy p {
  color: var(--mute);
  margin: 0 0 1.25rem;
}

.price-big {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
}

.price-big s {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--mute);
  margin-left: 0.4rem;
}

.offer-box {
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
}

.offer-box h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 0.75rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form input,
.form select {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.consent-row {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
}

.consent-row a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0.5rem 0 0;
}

.form-ok {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.form-ok.show {
  display: block;
}

/* в”Ђв”Ђв”Ђ Footer в”Ђв”Ђв”Ђ */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 600;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.socials a:hover {
  color: #fff;
}

.operator-info {
  margin: 0 auto 1.5rem;
  font-size: 0.86rem;
  line-height: 1.65;
}

.operator-info strong {
  color: #fff;
}

/* Legal pages */
.legal-header {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-nav {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: #fff;
}

.legal-page {
  width: min(100% - 2.5rem, 820px);
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.legal-page h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-page h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.25;
}

.legal-page h3 {
  margin: 1.6rem 0 0.55rem;
  font-size: 1.05rem;
}

.legal-page p,
.legal-page li {
  color: #333;
}

.legal-page a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.35rem;
}

.legal-page li + li {
  margin-top: 0.55rem;
}

.legal-meta {
  margin: 0 0 2.5rem;
  color: var(--mute);
}

.legal-note {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--off);
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  min-width: 34rem;
}

.legal-table th,
.legal-table td {
  padding: 0.8rem;
  border: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--off);
}

.footer-copy {
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #fff;
  color: #111;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 100;
  opacity: 0;
  transition: 0.3s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .hero-bg img {
    width: 100%;
    opacity: 0.45;
    mask-image: linear-gradient(180deg, #000 40%, transparent 95%);
    -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 95%);
  }

  .hero-inner {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .pain-grid,
  .program-grid,
  .offer,
  .features {
    grid-template-columns: 1fr;
  }

  .features {
    gap: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ─── Cookie banner ─── */

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 300;
  max-width: 720px;
  margin-inline: auto;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s, transform 0.25s;
}

.cookie-banner.open {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 260px;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cookie-banner .btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.cookie-banner .btn-line {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.cookie-banner .btn-fill {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.cookie-banner .btn-fill:hover {
  background: #eee;
}

/* ─── Legal pages ─── */

.legal-header {
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.legal-header .logo {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.legal-header nav a:hover {
  color: #fff;
}

.legal-page {
  padding: 2.5rem 0 4rem;
  max-width: 760px;
  margin-inline: auto;
  width: min(100% - 2.5rem, 760px);
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.legal-page .legal-meta {
  color: var(--mute);
  font-size: 0.88rem;
  margin: 0 0 2rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.75rem 0 0.6rem;
}

.legal-page p,
.legal-page li {
  color: #444;
  font-size: 0.95rem;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page a {
  color: #111;
  text-decoration: underline;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--line-dark);
}

.inventory-table th,
.inventory-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line-dark);
  vertical-align: top;
}

.inventory-table th {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--off);
  color: var(--mute);
  font-weight: 600;
}

.inventory-table code {
  font-size: 0.8rem;
}

.privacy-prefs-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  padding: 0;
}

.privacy-prefs-link:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: #fff;
}



