:root {
  --orange: #E0742C;
  --olive: #A7AD6F;
  --background: #FAFAFA;
  --cream: #F3ECE4;
  --text: #222222;
  --muted: #6F6A66;
  --line: #E9E4DE;

  --radius-button: 12px;
  --radius-card: 16px;
  --radius-media: 24px;

  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(250, 250, 250, 0.96);
  border-bottom: 1px solid rgba(34, 34, 34, 0.06);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 21px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 11px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

/* HERO */

.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .13em;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(60px, 5.8vw, 78px);
  line-height: .98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-button);
  font-weight: 700;
  font-size: 15px;
}

.button-primary {
  background: var(--orange);
  color: white;
}

.text-link {
  font-weight: 700;
  font-size: 15px;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  color: var(--orange);
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.proof-row {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 670px;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.proof-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-media {
  width: 100%;
}

.hero-photo-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 500px;
  max-height: 520px;
  border-radius: var(--radius-media);
  background:
    radial-gradient(circle at 68% 24%, rgba(167, 173, 111, .28), transparent 30%),
    linear-gradient(145deg, #F2E1D3 0%, #E9D6C6 54%, #D9C2AF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo-placeholder span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(250,250,250,.78);
  color: var(--muted);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* PROBLEM */

.problem-section {
  padding: 96px 0;
  background: var(--cream);
}

.section-heading {
  max-width: 800px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.problem-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(250, 250, 250, .62);
  border: 1px solid rgba(34,34,34,.06);
}

.problem-number {
  margin-bottom: 30px;
  color: var(--olive);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.problem-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

.problem-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.problem-summary {
  margin: 36px 0 0;
  font-size: 18px;
  line-height: 1.6;
}

.next-section-placeholder {
  padding: 80px 0;
  color: var(--muted);
  text-align: center;
}

/* TABLET + MOBILE */

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .desktop-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 16px;
    background: var(--background);
    box-shadow: 0 18px 60px rgba(34,34,34,.09);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .desktop-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 12vw, 50px);
    line-height: 1.0;
    letter-spacing: -0.05em;
  }

  .hero-lead {
    margin-top: 22px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 26px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .proof-row {
    margin-top: 34px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proof-item {
    display: grid;
    grid-template-columns: minmax(96px, auto) 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .proof-item strong {
    font-size: 18px;
  }

  .proof-item span {
    margin-top: 0;
    font-size: 13px;
  }

  .hero-media {
    order: 2;
  }

  .hero-photo-placeholder {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    width: 100%;
    border-radius: 20px;
  }

  .problem-section {
    padding: 72px 0;
  }

  .section-heading {
    max-width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(32px, 8.7vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .section-heading > p:last-child {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .problem-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card {
    padding: 24px;
  }

  .problem-number {
    margin-bottom: 20px;
  }

  .problem-card h3 {
    font-size: 20px;
  }

  .problem-card p {
    font-size: 15px;
  }

  .problem-summary {
    margin-top: 28px;
    font-size: 16px;
  }

  .next-section-placeholder {
    padding: 64px 0;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 19px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .button {
    min-height: 52px;
    padding: 0 16px;
    font-size: 14px;
  }

  .section-heading h2 {
    font-size: 32px;
  }
}


/* SYSTEM */

.system-section {
  padding: 96px 0 104px;
  background: var(--background);
}

.system-heading h2 span {
  color: var(--orange);
}

.system-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.system-step {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: #FFFFFF;
  border: 1px solid rgba(34,34,34,.06);
  display: flex;
  flex-direction: column;
}

.system-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.system-index {
  color: var(--olive);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.system-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(167, 173, 111, .5);
}

.system-step h3 {
  margin: auto 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.system-step p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.system-step-accent {
  background: var(--cream);
}

.system-step-accent h3 {
  color: var(--orange);
}

.system-note {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.system-note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .system-section {
    padding: 72px 0 80px;
  }

  .system-grid {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .system-step {
    min-height: 0;
    padding: 24px;
  }

  .system-step-top {
    margin-bottom: 36px;
  }

  .system-step h3 {
    margin: 0;
    font-size: 26px;
  }

  .system-step p {
    max-width: 34rem;
  }

  .system-note {
    margin-top: 28px;
  }

  .system-note p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .system-section {
    padding: 64px 0 72px;
  }

  .system-step-top {
    margin-bottom: 28px;
  }

  .system-step h3 {
    font-size: 24px;
  }
}


/* REALNY DZIEŃ */

.day-section {
  padding: 96px 0 104px;
  background: var(--cream);
}

.day-heading {
  max-width: 760px;
}

.day-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.meal-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(34,34,34,.06);
}

.meal-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.meal-photo-1 {
  background:
    radial-gradient(circle at 28% 30%, rgba(224,116,44,.28), transparent 34%),
    linear-gradient(145deg, #EBD9C9, #DCC6B1);
}

.meal-photo-2 {
  background:
    radial-gradient(circle at 70% 35%, rgba(167,173,111,.34), transparent 32%),
    linear-gradient(145deg, #E7D7C8, #D3BBA7);
}

.meal-photo-3 {
  background:
    radial-gradient(circle at 45% 45%, rgba(224,116,44,.22), transparent 34%),
    linear-gradient(145deg, #EFE0D2, #DCC7B5);
}

.meal-content {
  padding: 24px;
}

.meal-label {
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.meal-card h3 {
  margin: 10px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.meal-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.meal-meta {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
}

.day-summary {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius-card);
  background: rgba(250,250,250,.72);
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.day-summary > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-label {
  color: var(--muted);
  font-size: 13px;
}

.day-summary strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.day-note {
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .day-section {
    padding: 72px 0 80px;
  }

  .day-grid {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .meal-photo {
    aspect-ratio: 16 / 10;
  }

  .meal-content {
    padding: 22px;
  }

  .meal-card h3 {
    font-size: 20px;
  }

  .day-summary {
    margin-top: 20px;
    padding: 22px;
    flex-direction: column;
    gap: 18px;
  }

  .day-note {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .day-section {
    padding: 64px 0 72px;
  }

  .meal-content {
    padding: 20px;
  }
}


/* GŁÓWNY PRODUKT */

.product-section {
  padding: 104px 0 112px;
  background: var(--background);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: 72px;
  align-items: center;
}

.product-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.product-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-list {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.product-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 14px;
}

.product-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--olive);
}

.product-list strong,
.product-list span {
  grid-column: 2;
  display: block;
}

.product-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.product-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-buy-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-price strong {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.product-price span {
  color: var(--muted);
  font-size: 12px;
}

.product-cta {
  min-width: 220px;
}

.product-media {
  width: 100%;
}

.product-book-placeholder {
  min-height: 520px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 30%, rgba(167,173,111,.22), transparent 30%),
    linear-gradient(145deg, #F3E7DE, #E5D5C7);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.book-cover {
  width: min(310px, 70%);
  aspect-ratio: 3 / 4;
  background: #FBF8F4;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(34,34,34,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  transform: rotate(-2deg);
  position: relative;
  z-index: 2;
}

.book-brand {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.book-cover strong {
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.book-subtitle {
  margin-top: 18px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
}

.book-pages {
  position: absolute;
  right: 7%;
  bottom: 8%;
  display: flex;
  gap: 12px;
  transform: rotate(5deg);
}

.book-page {
  width: 110px;
  height: 150px;
  background: rgba(255,255,255,.92);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(34,34,34,.09);
}

.product-proofline {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: var(--muted);
  font-size: 13px;
}

.product-proofline span::before {
  content: "•";
  margin-right: 8px;
  color: var(--olive);
}

@media (max-width: 900px) {
  .product-section {
    padding: 72px 0 80px;
  }

  .product-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-copy h2 {
    font-size: 38px;
  }

  .product-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .product-list {
    margin-top: 30px;
    gap: 18px;
  }

  .product-buy-row {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
  }

  .product-cta {
    width: 100%;
  }

  .product-book-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .book-cover {
    width: min(280px, 72%);
  }

  .book-pages {
    right: 3%;
    bottom: 5%;
  }

  .product-proofline {
    margin-top: 26px;
    padding-top: 20px;
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .product-section {
    padding: 64px 0 72px;
  }

  .product-copy h2 {
    font-size: 34px;
  }

  .book-cover strong {
    font-size: 28px;
  }

  .book-page {
    width: 88px;
    height: 120px;
  }
}


/* PODGLĄD PRODUKTU */

.preview-section {
  padding: 104px 0 112px;
  background: var(--cream);
}

.preview-heading {
  max-width: 760px;
}

.preview-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

.preview-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(34,34,34,.06);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.preview-card-large {
  grid-row: span 2;
}

.preview-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.preview-card-large .preview-visual {
  min-height: 520px;
}

.preview-day {
  background:
    radial-gradient(circle at 70% 28%, rgba(167,173,111,.22), transparent 28%),
    linear-gradient(145deg, #F4E7DD, #E5D5C8);
}

.preview-recipe {
  background: linear-gradient(145deg, #EEE2D8, #DDC9B8);
}

.preview-list {
  background: linear-gradient(145deg, #F0EADF, #DFD9CB);
}

.preview-adjust {
  background:
    radial-gradient(circle at 30% 30%, rgba(224,116,44,.16), transparent 28%),
    linear-gradient(145deg, #EFE4DC, #DDCFC4);
}

.sheet {
  width: min(320px, 86%);
  min-height: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(34,34,34,.10);
  padding: 24px;
}

.preview-card-large .sheet {
  width: min(390px, 84%);
  min-height: 360px;
  padding: 34px;
}

.sheet-kicker {
  display: block;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.sheet strong {
  display: block;
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.preview-card-large .sheet strong {
  font-size: 28px;
}

.sheet-lines {
  height: 10px;
  margin-top: 22px;
  border-radius: 999px;
  background: #EFEAE5;
  box-shadow:
    0 20px 0 #EFEAE5,
    0 40px 0 #EFEAE5,
    0 60px 0 #EFEAE5;
}

.sheet-lines.short {
  width: 68%;
  margin-top: 82px;
}

.recipe-block {
  margin-top: 22px;
  height: 84px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 40%, rgba(167,173,111,.42), transparent 24%),
    linear-gradient(145deg, #EBD9C9, #D6C0AC);
}

.check-lines {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.check-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #EFEAE5;
  position: relative;
}

.check-lines i::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
  position: absolute;
  left: -14px;
  top: 1px;
}

.adjust-box {
  margin-top: 28px;
  min-height: 58px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.adjust-box b {
  font-family: "Manrope", sans-serif;
}

.preview-copy {
  padding: 22px 24px 24px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
}

.preview-copy > span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
}

.preview-copy h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.preview-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .preview-section {
    padding: 72px 0 80px;
  }

  .preview-grid {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .preview-card-large {
    grid-row: auto;
  }

  .preview-visual,
  .preview-card-large .preview-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 22px;
  }

  .sheet,
  .preview-card-large .sheet {
    width: min(320px, 82%);
    min-height: 0;
    padding: 22px;
  }

  .preview-card-large .sheet strong {
    font-size: 22px;
  }

  .preview-copy {
    padding: 20px;
  }

  .preview-copy h3 {
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .preview-section {
    padding: 64px 0 72px;
  }

  .preview-visual,
  .preview-card-large .preview-visual {
    aspect-ratio: 1 / 1;
  }

  .sheet,
  .preview-card-large .sheet {
    width: 86%;
  }
}


/* NATALIA + EFEKT */

.founder-section {
  padding: 104px 0 112px;
  background: var(--background);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.founder-photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background:
    radial-gradient(circle at 62% 28%, rgba(167,173,111,.32), transparent 28%),
    linear-gradient(145deg, #EADACD, #D6BFAA);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-photo-placeholder span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(250,250,250,.82);
  color: var(--muted);
  font-size: 13px;
}

.founder-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.founder-highlight {
  margin: 26px 0 0;
  max-width: 620px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.founder-highlight strong {
  color: var(--orange);
  font-weight: 800;
}

.founder-text {
  margin: 22px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.founder-pillars {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}

.founder-pillars > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.founder-pillars span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
}

.founder-pillars strong,
.founder-pillars p {
  grid-column: 2;
}

.founder-pillars strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.founder-pillars p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.founder-disclaimer {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .founder-section {
    padding: 72px 0 80px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-media {
    order: 2;
  }

  .founder-copy h2 {
    font-size: 36px;
  }

  .founder-highlight {
    margin-top: 20px;
    font-size: 21px;
  }

  .founder-text {
    font-size: 16px;
  }

  .founder-pillars {
    margin-top: 30px;
  }

  .founder-photo-placeholder {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 420px) {
  .founder-section {
    padding: 64px 0 72px;
  }

  .founder-copy h2 {
    font-size: 32px;
  }

  .founder-highlight {
    font-size: 20px;
  }
}


/* SOCIAL PROOF */

.proof-section {
  padding: 104px 0 112px;
  background: var(--cream);
}

.proof-header {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: end;
}

.proof-header h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.proof-intro {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.proof-stats {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-stats div {
  min-width: 0;
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.proof-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(34,34,34,.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.testimonial-card span {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .proof-section {
    padding: 72px 0 80px;
  }

  .proof-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proof-header h2 {
    font-size: 36px;
  }

  .proof-intro {
    font-size: 15px;
  }

  .proof-stats {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof-stats div {
    display: grid;
    grid-template-columns: minmax(110px, auto) 1fr;
    gap: 14px;
    align-items: baseline;
  }

  .proof-stats span {
    margin-top: 0;
  }

  .testimonial-grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 24px;
  }

  .testimonial-card p {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .proof-section {
    padding: 64px 0 72px;
  }

  .proof-header h2 {
    font-size: 32px;
  }

  .proof-stats strong {
    font-size: 24px;
  }
}


/* DARMOWY DZIEŃ */

.free-day-section {
  padding: 96px 0 104px;
  background: var(--background);
}

.free-day-shell {
  border-radius: 24px;
  background: rgba(167,173,111,.12);
  border: 1px solid rgba(167,173,111,.22);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.free-day-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.free-day-lead {
  margin: 22px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.free-day-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.free-day-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(250,250,250,.78);
  border: 1px solid rgba(34,34,34,.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.free-day-button {
  margin-top: 30px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(34,34,34,.16);
}

.free-day-button:hover {
  border-color: rgba(34,34,34,.28);
}

.free-day-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.free-day-visual {
  display: grid;
  place-items: center;
}

.free-day-sheet {
  width: min(360px, 90%);
  aspect-ratio: 3 / 4;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(34,34,34,.10);
  display: flex;
  flex-direction: column;
}

.free-day-sheet strong {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.free-meals {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.free-meals div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.free-meals i {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 35%, rgba(224,116,44,.28), transparent 28%),
    linear-gradient(145deg, #EEDCCE, #D9C5B4);
}

.free-meals span {
  font-size: 14px;
  font-weight: 700;
}

.free-day-bottom {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 11px;
}

.free-day-bottom span::before {
  content: "•";
  margin-right: 6px;
  color: var(--olive);
}

@media (max-width: 900px) {
  .free-day-section {
    padding: 72px 0 80px;
  }

  .free-day-shell {
    padding: 30px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .free-day-copy h2 {
    font-size: 36px;
  }

  .free-day-lead {
    font-size: 16px;
  }

  .free-day-button {
    width: 100%;
  }

  .free-day-sheet {
    width: min(320px, 86%);
  }
}

@media (max-width: 420px) {
  .free-day-section {
    padding: 64px 0 72px;
  }

  .free-day-shell {
    padding: 24px;
  }

  .free-day-copy h2 {
    font-size: 32px;
  }

  .free-day-sheet strong {
    font-size: 26px;
  }
}


/* FAQ */

.faq-section {
  padding: 104px 0 96px;
  background: var(--cream);
}

.faq-heading {
  max-width: 680px;
}

.faq-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 42px 24px 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 24px;
  font-weight: 400;
  color: var(--olive);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 24px;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* FINAL CTA */

.final-cta-section {
  padding: 96px 0;
  background: var(--background);
}

.final-cta-shell {
  padding: 56px;
  border-radius: 24px;
  background: var(--text);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.final-cta-shell .eyebrow {
  color: var(--olive);
}

.final-cta-shell h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.final-cta-shell > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta-action {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.final-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.final-price strong {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.final-price span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.final-secondary-link {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  text-align: center;
}

/* FOOTER */

.site-footer {
  padding: 48px 0;
  background: #F2EEE9;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-meta a,
.footer-meta span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 72px 0 64px;
  }

  .faq-list {
    margin-top: 32px;
  }

  .faq-list summary {
    font-size: 17px;
    padding: 20px 36px 20px 0;
  }

  .faq-list details p {
    font-size: 14px;
  }

  .final-cta-section {
    padding: 72px 0;
  }

  .final-cta-shell {
    padding: 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta-shell h2 {
    font-size: 36px;
  }

  .final-cta-action {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .faq-section {
    padding: 64px 0 56px;
  }

  .final-cta-section {
    padding: 64px 0;
  }

  .final-cta-shell {
    padding: 24px;
  }

  .final-cta-shell h2 {
    font-size: 32px;
  }

  .site-footer {
    padding: 40px 0;
  }
}


/* v0.12 CLEANUP */

.system-section {
  padding-top: 84px;
  padding-bottom: 88px;
}

.system-grid {
  margin-top: 44px;
}

.system-step {
  min-height: 240px;
  padding: 24px;
}

.system-step-top {
  margin-bottom: 22px;
}

.system-step h3 {
  margin-top: auto;
}

.system-note {
  margin-top: 26px;
  padding-top: 18px;
}

.day-section {
  padding-top: 84px;
  padding-bottom: 88px;
}

.day-grid {
  margin-top: 42px;
}

.meal-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.day-summary {
  margin-top: 22px;
}

.day-note {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .system-section,
  .day-section {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .system-grid,
  .day-grid {
    margin-top: 32px;
  }

  .system-step {
    padding: 22px;
  }

  .system-step-top {
    margin-bottom: 20px;
  }

  .system-note,
  .day-note {
    margin-top: 22px;
  }
}


/* v0.13 — REALNE ZDJĘCIE HERO (TEST) */

.hero-photo-real {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #FAFAFA;
}

.hero-photo-real img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 66% center;
}

@media (min-width: 901px) {
  .hero-photo-real img {
    aspect-ratio: 4 / 5;
    object-position: 64% center;
  }
}

@media (max-width: 900px) {
  .hero-photo-real {
    border-radius: 20px;
  }

  .hero-photo-real img {
    aspect-ratio: 4 / 5;
    object-position: 69% center;
  }
}


/* v0.15 — HERO: WIĘKSZA NATALIA + PRAWDZIWE PRZENIKANIE */

.hero-media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
}

.hero-photo-real {
  position: relative;
  width: calc(100% + 90px);
  margin-right: -90px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.hero-photo-real::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--background) 0%,
    rgba(250,250,250,.92) 18%,
    rgba(250,250,250,.58) 46%,
    rgba(250,250,250,0) 100%
  );
}

.hero-photo-real img {
  display: block;
  width: 100%;
  height: 610px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 74% center;
  transform: scale(1.13);
  transform-origin: 74% center;
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: .92fr 1.08fr;
  }

  .hero-photo-real {
    width: calc(100% + 120px);
    margin-right: -120px;
  }

  .hero-photo-real img {
    height: 640px;
    transform: scale(1.16);
    object-position: 76% center;
    transform-origin: 76% center;
  }
}

@media (max-width: 900px) {
  .hero-media {
    width: 100%;
  }

  .hero-photo-real {
    width: 100%;
    margin-right: 0;
    border-radius: 20px;
  }

  .hero-photo-real::before {
    display: none;
  }

  .hero-photo-real img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 73% center;
    transform: scale(1.06);
    transform-origin: 73% center;
  }
}


/* v0.16 — HERO MOBILE: WIĘKSZA NATALIA + PRZENIKANIE */

@media (max-width: 900px) {
  .hero-media {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    overflow: hidden;
  }

  .hero-photo-real {
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: var(--background);
  }

  .hero-photo-real::before {
    display: block;
    inset: 0;
    width: 100%;
    background:
      linear-gradient(
        to bottom,
        var(--background) 0%,
        rgba(250,250,250,.35) 7%,
        rgba(250,250,250,0) 16%,
        rgba(250,250,250,0) 84%,
        rgba(250,250,250,.35) 93%,
        var(--background) 100%
      );
  }

  .hero-photo-real img {
    width: 100%;
    height: 520px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 78% center;
    transform: scale(1.18);
    transform-origin: 78% center;
  }
}

@media (max-width: 420px) {
  .hero-media {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .hero-photo-real img {
    height: 470px;
    object-position: 79% center;
    transform: scale(1.20);
    transform-origin: 79% center;
  }
}


/* v0.17 — REALNE ZDJĘCIA POSIŁKÓW */

.meal-photo {
  overflow: hidden;
  background: #EEE8E2;
}

.meal-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.meal-card:hover .meal-photo img {
  transform: scale(1.025);
}

@media (max-width: 900px) {
  .meal-photo img {
    aspect-ratio: 16 / 10;
  }
}


/* v0.18 — UJEDNOLICONE ZDJĘCIA POSIŁKÓW */

.meal-photo img {
  object-position: center 52%;
}

@media (max-width: 900px) {
  .meal-photo img {
    object-position: center 50%;
  }
}


/* v0.19 — FINALNY ZESTAW POSIŁKÓW */

.meal-photo {
  background: #FAFAFA;
}

.meal-photo img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .meal-photo img {
    aspect-ratio: 16 / 10;
  }
}


/* v0.20 — MOBILE: KOMPAKTOWE KARTY POSIŁKÓW */

@media (max-width: 700px) {
  .day-grid {
    gap: 14px;
  }

  .meal-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 180px;
    border-radius: 18px;
    overflow: hidden;
  }

  .meal-photo {
    height: 100%;
    min-height: 180px;
  }

  .meal-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .meal-content {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .meal-label {
    font-size: 10px;
    letter-spacing: .12em;
  }

  .meal-card h3 {
    margin-top: 7px;
    font-size: 18px;
    line-height: 1.2;
  }

  .meal-card p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.4;
  }

  .meal-meta {
    margin-top: 14px;
    gap: 12px;
    font-size: 12px;
  }

  .day-summary {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .meal-card {
    grid-template-columns: 40% 60%;
    min-height: 170px;
  }

  .meal-photo {
    min-height: 170px;
  }

  .meal-content {
    padding: 16px 14px;
  }

  .meal-card h3 {
    font-size: 17px;
  }

  .meal-card p {
    font-size: 12px;
  }

  .meal-meta {
    font-size: 11px;
    gap: 10px;
  }
}


/* v0.21 — FIX MOBILE MEAL CARDS */

@media (max-width: 700px) {
  .meal-card {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 168px;
    overflow: hidden;
    background: #fff;
  }

  .meal-photo {
    position: relative;
    min-width: 0;
    width: 100%;
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto !important;
    overflow: hidden;
    background: #FAFAFA;
  }

  .meal-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    max-width: 100%;
    aspect-ratio: auto !important;
    object-fit: cover;
    object-position: center;
    transform: none !important;
  }

  .meal-content {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
    padding: 16px 14px 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .meal-card h3 {
    margin: 7px 0 0;
    font-size: 16px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .meal-card p {
    margin: 7px 0 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .meal-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    font-size: 11px;
    line-height: 1.2;
  }
}

@media (max-width: 390px) {
  .meal-card {
    grid-template-columns: 36% 64%;
    min-height: 160px;
  }

  .meal-photo {
    min-height: 160px;
  }

  .meal-content {
    padding: 14px 12px;
  }

  .meal-label {
    font-size: 9px;
  }

  .meal-card h3 {
    font-size: 15px;
  }

  .meal-card p {
    display: none;
  }

  .meal-meta {
    margin-top: 10px;
    font-size: 10.5px;
  }
}


/* v0.22 — PRAWDZIWY MOCKUP E-BOOKA */

.product-book-real {
  width: 100%;
  min-height: 520px;
  border-radius: 24px;
  background: #FAFAFA;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-book-real img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .product-book-real {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .product-book-real img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 420px) {
  .product-book-real {
    aspect-ratio: 1 / 1.12;
  }
}


/* v0.23 — WIĘKSZY ORYGINALNY MOCKUP E-BOOKA */

.product-book-real {
  overflow: visible;
  background: transparent;
}

.product-book-real img {
  width: 118%;
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: translateX(3%);
}

@media (max-width: 900px) {
  .product-book-real {
    aspect-ratio: auto;
    overflow: visible;
    min-height: 0;
  }

  .product-book-real img {
    width: 112%;
    height: auto;
    max-height: none;
    transform: translateX(2%);
  }
}

@media (max-width: 420px) {
  .product-book-real img {
    width: 108%;
    transform: translateX(1%);
  }
}


/* v0.24 — DUŻY MOCKUP E-BOOKA NA MOBILE */

@media (max-width: 700px) {
  .product-media {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .product-book-real {
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-book-real img {
    width: 128%;
    max-width: none;
    height: auto;
    transform: none;
  }
}

@media (max-width: 420px) {
  .product-media {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .product-book-real img {
    width: 136%;
  }
}


/* v0.25 — FIX: STRONA NIE PŁYWA POZIOMO */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.product-section {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .product-section {
    overflow-x: hidden;
  }
}

@media (max-width: 700px) {
  .product-media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }

  .product-book-real {
    width: 100%;
    overflow: visible;
  }

  .product-book-real img {
    width: 128%;
    max-width: none;
    height: auto;
    transform: translateX(-11%);
  }
}

@media (max-width: 420px) {
  .product-media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .product-book-real img {
    width: 136%;
    transform: translateX(-13.2%);
  }
}


/* v0.26 — WYŚRODKOWANIE DUŻEGO MOCKUPU NA MOBILE */

@media (max-width: 700px) {
  .product-book-real {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .product-book-real img {
    width: 128%;
    max-width: none;
    height: auto;
    transform: none;
  }
}

@media (max-width: 420px) {
  .product-book-real img {
    width: 136%;
  }
}


/* v0.27 — PRAWDZIWA PRZEMIANA NATALII */

.founder-transformation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transformation-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #F3ECE4;
}

.transformation-photo {
  display: block;
  width: 100%;
  height: auto;
}

.transformation-tag {
  position: absolute;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.94);
  color: #222;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 6px 18px rgba(34, 34, 34, .08);
}

.transformation-tag-before {
  left: 18px;
}

.transformation-tag-after {
  right: 18px;
}

.transformation-result {
  padding: 22px 24px;
  border-radius: 20px;
  background: #F3ECE4;
}

.transformation-result strong {
  display: block;
  color: #222;
  font-family: Manrope, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.transformation-result strong span {
  color: #E0742C;
}

.transformation-result p {
  margin: 10px 0 0;
  color: #6F6A66;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .transformation-photo-wrap {
    border-radius: 20px;
  }

  .transformation-tag {
    bottom: 12px;
    padding: 7px 12px;
    font-size: 10px;
  }

  .transformation-tag-before {
    left: 12px;
  }

  .transformation-tag-after {
    right: 12px;
  }

  .transformation-result {
    padding: 18px 18px 20px;
    border-radius: 18px;
  }

  .transformation-result strong {
    font-size: 30px;
  }
}


/* v0.32 — MNIEJSZE ZDJĘCIE PRZEMIANY TYLKO NA DESKTOPIE */

@media (min-width: 901px) {
  .founder-transformation {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .transformation-result {
    width: 100%;
  }
}


/* v0.33 — MNIEJSZY BLOK PRZEMIANY TAKŻE NA MOBILE */

@media (max-width: 900px) {
  .founder-transformation {
    width: 88%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .founder-transformation {
    width: 90%;
  }
}


/* v0.34 — BLOK PRZEMIANY 75% NA DESKTOPIE I MOBILE */

.founder-transformation {
  width: 75%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .founder-transformation {
    width: 75%;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .founder-transformation {
    width: 75%;
  }
}


/* v0.35 — TYLKO ZDJĘCIE 75%, BOX WYNIKU PEŁNA SZEROKOŚĆ */

.founder-transformation {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.transformation-photo-wrap {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.transformation-result {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 900px) {
  .founder-transformation {
    width: 100%;
    max-width: none;
  }

  .transformation-photo-wrap {
    width: 75%;
  }

  .transformation-result {
    width: 100%;
  }
}


/* v0.36 — PRAWDZIWE PODGLĄDY E-BOOKA */

.preview-real {
  background: #F3ECE4;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 26px;
}

.preview-real img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(34, 34, 34, .10);
}

.preview-real-double img {
  box-shadow: none;
  border-radius: 14px;
}

@media (max-width: 700px) {
  .preview-real {
    padding: 18px;
  }

  .preview-real img {
    max-height: 430px;
    border-radius: 10px;
  }
}


/* v0.37 — KOMPAKTOWY I BEZPIECZNY PODGLĄD E-BOOKA */

.preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.preview-card,
.preview-card-large {
  grid-column: auto !important;
  min-width: 0;
}

.preview-real {
  height: 330px;
  min-height: 0;
  padding: 18px;
  background: #F3ECE4;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.preview-real img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 294px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(34, 34, 34, .08);
}

.preview-copy {
  padding: 20px 22px 22px;
}

.preview-copy h3 {
  margin-bottom: 7px;
}

.preview-copy p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .preview-real {
    height: 245px;
    padding: 14px;
  }

  .preview-real img {
    max-height: 217px;
  }

  .preview-copy {
    padding: 17px 18px 19px;
  }
}

@media (max-width: 420px) {
  .preview-real {
    height: 220px;
  }

  .preview-real img {
    max-height: 192px;
  }
}


/* v0.38 — POLISH SEKCJI PODGLĄDU */

.preview-card:first-child .preview-real img {
  max-height: 315px;
  transform: scale(1.05);
}

.preview-card:nth-child(3) .preview-real,
.preview-card:nth-child(4) .preview-real {
  background: #F3ECE4;
}

.preview-card:nth-child(3) .preview-copy p,
.preview-card:nth-child(4) .preview-copy p {
  max-width: 46ch;
}

@media (max-width: 760px) {
  .preview-card:first-child .preview-real img {
    max-height: 232px;
    transform: scale(1.04);
  }

  .preview-copy h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .preview-copy p {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .preview-card:first-child .preview-real img {
    max-height: 205px;
  }
}


/* v0.42 — RÓWNE KARTY + ZWARTSZY DESKTOP */

@media (min-width: 761px) {
  .preview-grid {
    gap: 18px;
  }

  .preview-card,
  .preview-card-large {
    display: flex;
    flex-direction: column;
  }

  .preview-real {
    height: 290px;
    padding: 14px;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 262px;
    object-fit: contain;
    transform: none;
  }

  .preview-copy {
    padding: 16px 18px 18px;
  }

  .preview-copy h3 {
    margin-bottom: 5px;
    font-size: 19px;
    line-height: 1.22;
  }

  .preview-copy p {
    font-size: 13px;
    line-height: 1.42;
  }
}

@media (max-width: 760px) {
  .preview-card:first-child .preview-real img {
    transform: none;
    max-height: 217px;
  }
}


/* v0.43 — NAPRAWDĘ RÓWNE 4 KARTY */

/* reset starego wyróżnienia pierwszej karty */
.preview-card-large {
  grid-row: auto !important;
  grid-column: auto !important;
}

.preview-card-large .preview-visual,
.preview-card-large .preview-real {
  min-height: 0 !important;
}

@media (min-width: 761px) {
  .preview-grid {
    width: min(100%, 980px);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .preview-card,
  .preview-card-large {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .preview-real,
  .preview-card-large .preview-real {
    flex: 0 0 260px;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px;
    padding: 12px;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img,
  .preview-card-large .preview-real img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 236px;
    object-fit: contain;
    object-position: center;
    transform: none !important;
  }

  .preview-copy {
    min-height: 108px;
    padding: 14px 16px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: start;
  }

  .preview-copy h3 {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 4px;
  }

  .preview-copy p {
    font-size: 12.5px;
    line-height: 1.38;
  }
}

@media (max-width: 760px) {
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .preview-card,
  .preview-card-large {
    height: auto;
  }

  .preview-real,
  .preview-card-large .preview-real {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px;
    padding: 12px;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img,
  .preview-card-large .preview-real img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 196px !important;
    object-fit: contain;
    object-position: center;
    transform: none !important;
  }

  .preview-copy {
    min-height: 0;
    padding: 16px 17px 18px;
  }
}

@media (max-width: 420px) {
  .preview-real,
  .preview-card-large .preview-real {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img,
  .preview-card-large .preview-real img {
    max-height: 176px !important;
  }
}


/* v0.44 — prawdziwe opinie */
.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.testimonial-card > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.testimonial-source {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-card-dark {
  background: #222222;
  color: #FAFAFA;
  border-color: #222222;
}

.testimonial-card-dark p,
.testimonial-card-dark > span {
  color: #FAFAFA;
}

.testimonial-card-dark > span {
  opacity: .66;
}

.testimonial-card-dark .testimonial-source {
  background: rgba(255,255,255,.10);
  color: #FAFAFA;
}

.testimonial-card-light {
  background: #F3ECE4;
  color: #222222;
  border-color: transparent;
}

.testimonial-card-light > span {
  color: #6F6A66;
}

.testimonial-card-light .testimonial-source {
  background: #FAFAFA;
  color: #A7AD6F;
}

@media (max-width: 700px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.5;
  }
}


/* v0.45 — spójne prawdziwe opinie */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card,
.testimonial-card-dark,
.testimonial-card-light {
  min-height: 230px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(34, 34, 34, .08);
  border-radius: 20px;
  background: #FAFAFA;
  color: #222222;
  box-shadow: 0 10px 30px rgba(34, 34, 34, .035);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-card:nth-child(2),
.testimonial-card:nth-child(3) {
  background: #F3ECE4;
}

.testimonial-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(167, 173, 111, .14);
  color: #7F8650;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-mark {
  color: #E0742C;
  font-family: Manrope, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: .75;
  opacity: .95;
}

.testimonial-card p,
.testimonial-card-dark p,
.testimonial-card-light p {
  margin: 0;
  color: #222222;
  font-size: 16px;
  line-height: 1.55;
}

.testimonial-author,
.testimonial-card > span,
.testimonial-card-dark > span,
.testimonial-card-light > span {
  color: #6F6A66;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  opacity: 1;
}

@media (max-width: 700px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card,
  .testimonial-card-dark,
  .testimonial-card-light {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
    gap: 16px;
  }

  .testimonial-card p,
  .testimonial-card-dark p,
  .testimonial-card-light p {
    font-size: 15px;
    line-height: 1.5;
  }

  .testimonial-mark {
    font-size: 36px;
  }
}


/* v0.46 — obrobione prawdziwe screeny opinii */
.testimonial-grid-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-screen-card {
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  background: #FAFAFA;
  border: 1px solid rgba(34,34,34,.07);
  box-shadow: 0 10px 28px rgba(34,34,34,.035);
}

.testimonial-screen-card:nth-child(2),
.testimonial-screen-card:nth-child(3) {
  background: #F3ECE4;
}

.testimonial-screen-frame {
  height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: #F3ECE4;
}

.testimonial-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.testimonial-screen-card figcaption {
  margin-top: 12px;
  color: #6F6A66;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .testimonial-grid-screens {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-screen-card {
    padding: 10px;
    border-radius: 18px;
  }

  .testimonial-screen-frame {
    height: auto;
    background: transparent;
  }

  .testimonial-screen-frame img {
    width: 100%;
    height: auto;
  }

  .testimonial-screen-card figcaption {
    margin: 10px 4px 2px;
  }
}


/* v0.48 — schludniejsze opinie na desktopie */
@media (min-width: 1000px) {
  .testimonial-grid-screens {
    width: min(100%, 1080px);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .testimonial-screen-card {
    min-width: 0;
    height: 100%;
    padding: 10px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    background: #FAFAFA;
  }

  .testimonial-screen-card:nth-child(2),
  .testimonial-screen-card:nth-child(3),
  .testimonial-screen-card:nth-child(6) {
    background: #F3ECE4;
  }

  .testimonial-screen-frame {
    height: 185px;
    min-height: 185px;
    max-height: 185px;
    padding: 8px;
    border-radius: 14px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-screen-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 169px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
  }

  .testimonial-screen-card figcaption {
    margin: 8px 4px 2px;
    min-height: 17px;
    color: #6F6A66;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
  }
}

@media (min-width: 701px) and (max-width: 999px) {
  .testimonial-grid-screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .testimonial-screen-frame {
    height: 205px;
    min-height: 205px;
    max-height: 205px;
    padding: 8px;
  }

  .testimonial-screen-frame img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 189px;
    object-fit: contain;
  }
}


/* v0.49 — mniejsze i równe opinie na mobile */
@media (max-width: 700px) {
  .testimonial-grid-screens {
    width: min(100%, 430px);
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .testimonial-screen-card {
    width: 100%;
    padding: 9px;
    border-radius: 16px;
  }

  .testimonial-screen-frame {
    height: 190px;
    min-height: 190px;
    max-height: 190px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
  }

  .testimonial-screen-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 178px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
  }

  .testimonial-screen-card figcaption {
    margin: 8px 4px 2px;
    min-height: 16px;
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (max-width: 420px) {
  .testimonial-grid-screens {
    width: 94%;
  }

  .testimonial-screen-frame {
    height: 175px;
    min-height: 175px;
    max-height: 175px;
  }

  .testimonial-screen-frame img {
    max-height: 163px;
  }
}


/* v0.52 — prawdziwy dzień testowy */
.free-day-real-card {
  width: min(100%, 470px);
  margin-left: auto;
  padding: 16px;
  border-radius: 24px;
  background: #FAFAFA;
  border: 1px solid rgba(34, 34, 34, .07);
  box-shadow: 0 18px 46px rgba(34, 34, 34, .055);
}

.free-day-real-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(167, 173, 111, .14);
  color: #7F8650;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.free-day-real-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.free-day-real-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.free-day-real-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #F3ECE4;
  color: #6F6A66;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .free-day-real-card {
    width: 86%;
    margin: 0 auto;
    padding: 12px;
    border-radius: 20px;
  }

  .free-day-real-card img {
    border-radius: 15px;
  }

  .free-day-real-meta {
    gap: 6px;
  }

  .free-day-real-meta span {
    font-size: 10.5px;
    padding: 6px 9px;
  }
}


/* v0.54 — finalny copy polish */
.proof-disclaimer {
  max-width: 760px;
  margin: 18px auto 0;
  color: #8A8580;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 700px) {
  .proof-disclaimer {
    margin-top: 14px;
    padding: 0 10px;
    font-size: 10.5px;
  }
}


/* v0.55 — wyśrodkowane podglądy e-booka na mobile */
@media (max-width: 760px) {
  .preview-real,
  .preview-card-large .preview-real {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img,
  .preview-card-large .preview-real img,
  .preview-real-double img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    object-position: center center !important;
    transform: none !important;
  }
}


/* v0.56 — poprawny układ kart podglądu na mobile */
@media (max-width: 760px) {
  .preview-card,
  .preview-card-large {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  .preview-visual,
  .preview-real,
  .preview-card-large .preview-real,
  .preview-real-double {
    width: 100% !important;
    max-width: none !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    margin: 0 !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img,
  .preview-card-large .preview-real img,
  .preview-real-double img {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 196px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  .preview-copy {
    width: 100% !important;
    min-height: 0 !important;
    padding: 16px 18px 18px !important;
    box-sizing: border-box;
  }
}

@media (max-width: 420px) {
  .preview-visual,
  .preview-real,
  .preview-card-large .preview-real,
  .preview-real-double {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
  }

  .preview-real img,
  .preview-card:first-child .preview-real img,
  .preview-card-large .preview-real img,
  .preview-real-double img {
    max-height: 176px !important;
  }
}


/* =========================================================
   v0.61 — osobny landing „Darmowy dzień”
   ========================================================= */

.free-landing-page {
  background: #FAFAFA;
}

.free-landing-header {
  background: rgba(250, 250, 250, .94);
}

.free-back-link {
  color: #6F6A66;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.free-back-link:hover {
  color: #222222;
}

.free-landing-hero {
  padding: 76px 0 96px;
}

.free-landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 72px;
  align-items: center;
}

.free-landing-copy h1 {
  max-width: 760px;
  margin: 10px 0 22px;
  color: #222222;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .99;
  letter-spacing: -.055em;
}

.free-landing-lead {
  max-width: 650px;
  margin: 0;
  color: #6F6A66;
  font-size: 18px;
  line-height: 1.65;
}

.free-landing-benefits {
  display: grid;
  gap: 10px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.free-landing-benefits li {
  position: relative;
  padding-left: 27px;
  color: #3F3B38;
  font-size: 15px;
  line-height: 1.45;
}

.free-landing-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #E0742C;
  font-weight: 800;
}

.free-email-form {
  max-width: 680px;
  margin-top: 28px;
}

.free-email-form label {
  display: block;
  margin-bottom: 9px;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
}

.free-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.free-email-row input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(34,34,34,.12);
  border-radius: 12px;
  background: #FFFFFF;
  color: #222222;
  font: inherit;
  outline: none;
}

.free-email-row input:focus {
  border-color: rgba(224,116,44,.72);
  box-shadow: 0 0 0 3px rgba(224,116,44,.08);
}

.free-form-note,
.free-form-status {
  margin: 9px 0 0;
  color: #918A84;
  font-size: 10.5px;
  line-height: 1.5;
}

.free-form-status {
  color: #7F8650;
  font-weight: 600;
}

.free-landing-preview {
  display: flex;
  justify-content: center;
}

.free-landing-preview-shell {
  width: min(100%, 520px);
  padding: 18px;
  border: 1px solid rgba(34,34,34,.07);
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 26px 70px rgba(34,34,34,.07);
}

.free-landing-preview-shell img {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: 18px;
}

.free-landing-whatsinside {
  padding: 96px 0;
  background: #F3ECE4;
}

.free-landing-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.free-landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.free-feature-card {
  padding: 30px;
  border: 1px solid rgba(34,34,34,.06);
  border-radius: 20px;
  background: #FAFAFA;
}

.free-feature-number {
  display: block;
  margin-bottom: 30px;
  color: #A7AD6F;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.free-feature-card h3 {
  margin: 0 0 10px;
  color: #222222;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -.03em;
}

.free-feature-card p {
  margin: 0;
  color: #6F6A66;
  font-size: 14px;
  line-height: 1.6;
}

.free-landing-how {
  padding: 100px 0;
}

.free-landing-how-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.free-landing-how h2 {
  max-width: 470px;
  margin: 10px 0 0;
  color: #222222;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.free-how-list {
  display: grid;
}

.free-how-list > div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(34,34,34,.09);
}

.free-how-list > div:first-child {
  padding-top: 0;
}

.free-how-list strong {
  display: block;
  margin-bottom: 7px;
  color: #222222;
  font-size: 16px;
}

.free-how-list p {
  margin: 0;
  color: #6F6A66;
  line-height: 1.6;
}

.free-landing-final {
  padding: 0 0 100px;
}

.free-landing-final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px;
  border-radius: 26px;
  background: #222222;
}

.free-landing-final-box .eyebrow {
  color: #D9B594;
}

.free-landing-final-box h2 {
  max-width: 720px;
  margin: 10px 0 0;
  color: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

@media (max-width: 900px) {
  .free-landing-hero-grid,
  .free-landing-how-grid {
    grid-template-columns: 1fr;
  }

  .free-landing-hero-grid {
    gap: 44px;
  }

  .free-landing-how-grid {
    gap: 42px;
  }

  .free-landing-feature-grid {
    grid-template-columns: 1fr;
  }

  .free-landing-preview {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .free-landing-hero {
    padding: 44px 0 68px;
  }

  .free-landing-hero-grid {
    gap: 34px;
  }

  .free-landing-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .free-landing-lead {
    font-size: 16px;
  }

  .free-email-row {
    grid-template-columns: 1fr;
  }

  .free-email-row .button {
    width: 100%;
  }

  .free-landing-preview {
    justify-content: center;
  }

  .free-landing-preview-shell {
    width: 92%;
    padding: 12px;
    border-radius: 20px;
  }

  .free-landing-whatsinside,
  .free-landing-how {
    padding: 72px 0;
  }

  .free-feature-card {
    padding: 24px;
  }

  .free-landing-final {
    padding-bottom: 72px;
  }

  .free-landing-final-box {
    display: block;
    padding: 32px 24px;
  }

  .free-landing-final-box .button {
    width: 100%;
    margin-top: 28px;
  }

  .free-back-link {
    font-size: 11px;
  }
}


/* v0.62 — dopracowanie landingu darmowego dnia */
.free-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 28px;
}

.free-mini-proof span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #F3ECE4;
  color: #6F6A66;
  font-size: 11px;
  font-weight: 700;
}

.free-landing-forwho {
  padding: 92px 0;
  background: #FAFAFA;
}

.free-forwho-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 84px;
  align-items: start;
}

.free-forwho-grid h2 {
  max-width: 520px;
  margin: 10px 0 0;
  color: #222222;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.free-forwho-list {
  display: grid;
  gap: 0;
}

.free-forwho-list p {
  position: relative;
  margin: 0;
  padding: 19px 0 19px 30px;
  border-bottom: 1px solid rgba(34,34,34,.08);
  color: #4F4A46;
  font-size: 15px;
  line-height: 1.55;
}

.free-forwho-list p:first-child {
  padding-top: 0;
}

.free-forwho-list p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 19px;
  color: #A7AD6F;
  font-weight: 800;
}

.free-forwho-list p:first-child::before {
  top: 0;
}

@media (max-width: 900px) {
  .free-forwho-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 700px) {
  .free-mini-proof {
    margin-top: -8px;
    margin-bottom: 24px;
  }

  .free-landing-forwho {
    padding: 72px 0;
  }

  .free-forwho-list p {
    font-size: 14px;
  }
}


/* v0.65 — compact system section + new flow */
.system-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.system-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.system-grid {
  gap: 12px;
}

.system-step {
  min-height: 0 !important;
  padding: 20px !important;
  border-radius: 16px !important;
}

.system-step-top {
  margin-bottom: 22px !important;
}

.system-step h3 {
  margin-bottom: 6px !important;
  font-size: 20px !important;
}

.system-step p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

@media (max-width: 760px) {
  .system-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .system-heading {
    margin-bottom: 22px;
  }

  .system-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .system-heading > p {
    max-width: 32rem;
    font-size: 14px;
    line-height: 1.55;
  }

  .system-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .system-step {
    padding: 16px !important;
    min-width: 0;
  }

  .system-step-top {
    margin-bottom: 16px !important;
  }

  .system-index {
    font-size: 11px !important;
  }

  .system-step h3 {
    font-size: 18px !important;
  }

  .system-step p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 380px) {
  .system-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== v0.68 — safe mobile QA, hero untouched ===== */

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  /* Hero proof row only — do not alter hero image/media */
  .proof-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 28px !important;
    overflow: visible !important;
  }

  .proof-item {
    min-width: 0 !important;
    width: auto !important;
    padding: 0 4px !important;
    text-align: center !important;
  }

  .proof-item strong {
    display: block !important;
    font-size: 17px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .proof-item span {
    display: block !important;
    margin-top: 5px !important;
    font-size: 9.5px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  /* Other mobile sections */
  .founder-section,
  .problem-section,
  .day-section,
  .product-section,
  .proof-section,
  .preview-section,
  .free-day-section,
  .faq-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .problem-grid,
  .day-grid,
  .testimonial-grid-screens,
  .preview-grid {
    gap: 10px;
  }

  .problem-card {
    padding: 18px;
    min-height: 0;
  }

  .meal-content {
    padding: 14px 16px 16px;
  }

  .meal-content p {
    font-size: 12px;
    line-height: 1.45;
  }

  .product-shell,
  .free-day-shell {
    gap: 28px;
  }

  .product-list li {
    padding: 13px 0;
  }

  .product-list li span {
    font-size: 12px;
    line-height: 1.45;
  }

  .product-buy-row,
  .final-cta-action {
    width: 100%;
  }

  .product-buy-row .button,
  .final-cta-action .button,
  .free-day-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .testimonial-screen-frame img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .preview-copy {
    padding: 14px 16px 16px !important;
  }

  .preview-copy p {
    font-size: 12px;
    line-height: 1.45;
  }

  .free-day-points,
  .free-day-real-meta {
    justify-content: center;
  }

  .faq-list summary {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-list details p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  /* Free-day landing */
  .free-landing-hero {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .free-email-row {
    grid-template-columns: 1fr;
  }

  .free-email-row input,
  .free-email-row .button {
    width: 100%;
    box-sizing: border-box;
  }

  .free-landing-feature-grid {
    gap: 10px;
  }

  .free-feature-card {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .proof-item strong {
    font-size: 15px !important;
  }

  .proof-item span {
    font-size: 8.5px !important;
  }
}


/* ===== v0.69 — fix hero stats labels on mobile ===== */
@media (max-width: 760px) {
  .proof-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: start !important;
  }

  .proof-item {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 2px !important;
    text-align: center !important;
  }

  .proof-item strong {
    display: block !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .proof-item span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 6px auto 0 !important;
    font-size: 9.5px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 420px) {
  .proof-row {
    gap: 6px !important;
  }

  .proof-item strong {
    font-size: 15px !important;
  }

  .proof-item span {
    font-size: 8.5px !important;
    line-height: 1.2 !important;
  }
}


/* ===== v0.70 — definitive mobile proof row fix ===== */
@media (max-width: 760px) {
  .hero .proof-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 12px !important;
    row-gap: 0 !important;
    width: 100% !important;
    align-items: start !important;
  }

  .hero .proof-item {
    display: block !important;
    flex: none !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .hero .proof-item strong {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .hero .proof-item span {
    display: block !important;
    width: 100% !important;
    max-width: 90px !important;
    margin: 7px auto 0 !important;
    font-size: 9.5px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 420px) {
  .hero .proof-row {
    column-gap: 8px !important;
  }

  .hero .proof-item strong {
    font-size: 15px !important;
  }

  .hero .proof-item span {
    max-width: 82px !important;
    font-size: 8.5px !important;
  }
}


/* =========================================================
   v0.71 — product page: Lunchboxy na 7 dni
   ========================================================= */

.product-page {
  background: #FAFAFA;
}

.product-page-hero {
  padding: 78px 0 90px;
}

.product-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
  gap: 72px;
  align-items: center;
}

.product-page-copy h1 {
  max-width: 760px;
  margin: 10px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #222;
}

.product-page-lead {
  max-width: 660px;
  margin: 0;
  color: #6F6A66;
  font-size: 18px;
  line-height: 1.65;
}

.product-page-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 30px;
}

.product-page-highlights span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #F3ECE4;
  color: #6F6A66;
  font-size: 11px;
  font-weight: 700;
}

.product-page-price-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.product-page-price-row > div {
  min-width: 110px;
}

.product-page-price-row strong {
  display: block;
  color: #222;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.product-page-price-row span {
  display: block;
  margin-top: 5px;
  color: #8A8580;
  font-size: 10.5px;
  line-height: 1.3;
}

.product-page-reassurance {
  max-width: 620px;
  margin: 14px 0 0;
  color: #7C7671;
  font-size: 11px;
  line-height: 1.55;
}

.product-page-media {
  display: flex;
  justify-content: center;
}

.product-page-book {
  width: min(100%, 470px);
}

.product-page-book img {
  display: block;
  width: 100%;
  height: auto;
}

.product-benefits-section {
  padding: 96px 0;
  background: #F3ECE4;
}

.product-benefits-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-benefits-grid article {
  padding: 26px;
  border: 1px solid rgba(34,34,34,.06);
  border-radius: 18px;
  background: #FAFAFA;
}

.product-benefits-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: #A7AD6F;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}

.product-benefits-grid h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -.03em;
}

.product-benefits-grid p {
  margin: 0;
  color: #6F6A66;
  font-size: 13px;
  line-height: 1.55;
}

.product-inside-section {
  padding: 100px 0;
}

.product-inside-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.product-inside-grid h2 {
  max-width: 520px;
  margin: 10px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.product-inside-list {
  display: grid;
}

.product-inside-list > div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(34,34,34,.09);
}

.product-inside-list > div:first-child {
  padding-top: 0;
}

.product-inside-list strong {
  display: block;
  color: #222;
  font-size: 15px;
}

.product-inside-list p {
  margin: 5px 0 0;
  color: #6F6A66;
  font-size: 13px;
  line-height: 1.5;
}

.product-preview-section {
  padding: 96px 0;
  background: #F3ECE4;
}

.product-page-preview-grid {
  max-width: 980px;
  margin: 0 auto;
}

.product-proof-section {
  padding: 100px 0;
}

.product-fit-section {
  padding: 96px 0;
  background: #F3ECE4;
}

.product-fit-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 82px;
}

.product-fit-grid h2 {
  max-width: 560px;
  margin: 10px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.product-fit-list {
  display: grid;
}

.product-fit-list p {
  position: relative;
  margin: 0;
  padding: 17px 0 17px 30px;
  border-bottom: 1px solid rgba(34,34,34,.09);
  color: #4F4A46;
  font-size: 14px;
  line-height: 1.5;
}

.product-fit-list p:first-child {
  padding-top: 0;
}

.product-fit-list p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 17px;
  color: #A7AD6F;
  font-weight: 800;
}

.product-fit-list p:first-child::before {
  top: 0;
}

.product-purchase-section {
  padding: 0 0 40px;
}

.product-purchase-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px;
  border-radius: 26px;
  background: #222;
}

.product-purchase-box .eyebrow {
  color: #D9B594;
}

.product-purchase-box h2 {
  max-width: 690px;
  margin: 10px 0 10px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.product-purchase-box > div:first-child > p:last-child {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.55;
}

.product-purchase-action {
  min-width: 250px;
  text-align: center;
}

.product-purchase-action .final-price strong,
.product-purchase-action .final-price span {
  color: #fff;
}

.product-purchase-action .button {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
}

.product-purchase-action > p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 9.5px;
}

.product-free-alternative {
  padding: 40px 0 96px;
}

.product-free-alternative-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 38px;
  border: 1px solid rgba(34,34,34,.07);
  border-radius: 22px;
  background: #fff;
}

.product-free-alternative-inner h2 {
  margin: 8px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.035em;
}

@media (max-width: 900px) {
  .product-page-hero-grid,
  .product-inside-grid,
  .product-fit-grid {
    grid-template-columns: 1fr;
  }

  .product-page-hero-grid {
    gap: 44px;
  }

  .product-inside-grid,
  .product-fit-grid {
    gap: 42px;
  }

  .product-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-page-media {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .product-page-hero {
    padding: 42px 0 60px;
  }

  .product-page-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .product-page-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .product-page-highlights {
    gap: 6px;
    margin: 22px 0;
  }

  .product-page-price-row {
    display: block;
  }

  .product-page-price-row .button {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
  }

  .product-page-media {
    justify-content: center;
  }

  .product-page-book {
    width: 84%;
  }

  .product-benefits-section,
  .product-inside-section,
  .product-preview-section,
  .product-proof-section,
  .product-fit-section {
    padding: 64px 0;
  }

  .product-benefits-heading {
    margin-bottom: 26px;
  }

  .product-benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-benefits-grid article {
    padding: 20px;
  }

  .product-benefits-grid article > span {
    margin-bottom: 18px;
  }

  .product-inside-list > div {
    padding: 16px 0;
  }

  .product-purchase-section {
    padding-bottom: 28px;
  }

  .product-purchase-box {
    display: block;
    padding: 30px 22px;
  }

  .product-purchase-action {
    min-width: 0;
    margin-top: 28px;
  }

  .product-free-alternative {
    padding: 28px 0 64px;
  }

  .product-free-alternative-inner {
    display: block;
    padding: 26px 22px;
  }

  .product-free-alternative-inner .button {
    width: 100%;
    margin-top: 22px;
    justify-content: center;
  }
}


/* =========================================================
   v0.72 — checkout + thank you
   ========================================================= */

.checkout-page,
.thankyou-page {
  min-height: 100vh;
  background: #FAFAFA;
}

.checkout-header {
  border-bottom: 1px solid rgba(34,34,34,.07);
  background: #FAFAFA;
}

.checkout-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.checkout-back {
  color: #6F6A66;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.checkout-back:hover {
  color: #222;
}

.checkout-section {
  padding: 70px 0 90px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: start;
}

.checkout-main {
  max-width: 680px;
}

.checkout-main h1 {
  margin: 10px 0 16px;
  color: #222;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.checkout-lead {
  max-width: 600px;
  margin: 0;
  color: #6F6A66;
  font-size: 16px;
  line-height: 1.6;
}

.checkout-form {
  margin-top: 34px;
}

.checkout-field {
  margin-bottom: 18px;
}

.checkout-field label {
  display: block;
  margin-bottom: 7px;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}

.checkout-field input {
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  padding: 0 15px;
  border: 1px solid rgba(34,34,34,.13);
  border-radius: 12px;
  background: #fff;
  color: #222;
  font: inherit;
  outline: none;
}

.checkout-field input:focus {
  border-color: rgba(224,116,44,.7);
  box-shadow: 0 0 0 3px rgba(224,116,44,.08);
}

.checkout-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 24px 0;
  color: #6F6A66;
  font-size: 10.5px;
  line-height: 1.5;
}

.checkout-consent input {
  margin: 2px 0 0;
}

.checkout-submit {
  width: 100%;
  justify-content: center;
}

.checkout-tech-note {
  margin: 9px 0 0;
  color: #9A938D;
  font-size: 9.5px;
  line-height: 1.5;
}

.checkout-status {
  margin: 8px 0 0;
  color: #7F8650;
  font-size: 11px;
  font-weight: 600;
}

.checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.checkout-trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(34,34,34,.08);
  border-radius: 999px;
  background: #fff;
  color: #6F6A66;
  font-size: 10px;
  font-weight: 700;
}

.checkout-small-note {
  margin: 8px 0 0;
  color: #99928c;
  font-size: 9px;
}

.checkout-summary {
  position: sticky;
  top: 94px;
  padding: 20px;
  border: 1px solid rgba(34,34,34,.07);
  border-radius: 22px;
  background: #fff;
}

.checkout-product-mini {
  display: flex;
  justify-content: center;
  padding: 18px;
  border-radius: 16px;
  background: #F3ECE4;
}

.checkout-product-mini img {
  display: block;
  width: 74%;
  height: auto;
}

.checkout-summary-copy {
  padding: 20px 4px 4px;
}

.checkout-summary-label {
  color: #A7AD6F;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.checkout-summary-copy h2 {
  margin: 7px 0 14px;
  color: #222;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -.035em;
}

.checkout-summary-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-summary-copy li {
  position: relative;
  padding-left: 20px;
  color: #6F6A66;
  font-size: 11px;
  line-height: 1.35;
}

.checkout-summary-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #A7AD6F;
  font-weight: 800;
}

.checkout-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(34,34,34,.08);
}

.checkout-total span {
  color: #6F6A66;
  font-size: 12px;
}

.checkout-total strong {
  color: #222;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

.checkout-summary-copy > p {
  margin: 8px 0 0;
  color: #99928c;
  font-size: 9.5px;
}

.checkout-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(34,34,34,.07);
}

.checkout-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8A8580;
  font-size: 10px;
}

.checkout-footer div div {
  display: flex;
  gap: 14px;
}

.checkout-footer a {
  color: inherit;
}

/* Thank you */

.thankyou-section {
  padding: 84px 0 100px;
}

.thankyou-box {
  max-width: 830px;
  margin: 0 auto;
  padding: 58px;
  border: 1px solid rgba(34,34,34,.07);
  border-radius: 28px;
  background: #fff;
  text-align: center;
}

.thankyou-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(167,173,111,.14);
  color: #7F8650;
  font-size: 22px;
  font-weight: 800;
}

.thankyou-box h1 {
  margin: 10px 0 14px;
  color: #222;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.thankyou-lead {
  max-width: 620px;
  margin: 0 auto;
  color: #6F6A66;
  font-size: 16px;
  line-height: 1.6;
}

.thankyou-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
  text-align: left;
}

.thankyou-steps > div {
  padding: 20px;
  border-radius: 16px;
  background: #F3ECE4;
}

.thankyou-steps span {
  display: block;
  margin-bottom: 22px;
  color: #A7AD6F;
  font-size: 10px;
  font-weight: 800;
}

.thankyou-steps strong {
  display: block;
  color: #222;
  font-size: 13px;
}

.thankyou-steps p {
  margin: 6px 0 0;
  color: #6F6A66;
  font-size: 11px;
  line-height: 1.5;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.thankyou-help {
  max-width: 600px;
  margin: 26px auto 0;
  color: #99928c;
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .checkout-main {
    max-width: none;
  }

  .checkout-summary {
    position: static;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .checkout-header-inner {
    min-height: 64px;
  }

  .checkout-back {
    font-size: 10px;
  }

  .checkout-section {
    padding: 44px 0 64px;
  }

  .checkout-main h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .checkout-lead {
    font-size: 14px;
  }

  .checkout-form {
    margin-top: 28px;
  }

  .checkout-summary {
    max-width: none;
    padding: 14px;
  }

  .checkout-product-mini img {
    width: 62%;
  }

  .checkout-footer .container {
    display: block;
  }

  .checkout-footer div div {
    margin-top: 8px;
  }

  .thankyou-section {
    padding: 48px 0 64px;
  }

  .thankyou-box {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .thankyou-lead {
    font-size: 14px;
  }

  .thankyou-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .thankyou-steps > div {
    padding: 18px;
  }

  .thankyou-steps span {
    margin-bottom: 12px;
  }

  .thankyou-actions {
    display: grid;
    gap: 14px;
  }

  .thankyou-actions .button,
  .thankyou-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* v0.74 — Stripe checkout states */
.checkout-cancelled {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: #F3ECE4;
  color: #6F6A66;
  font-size: 11px;
  line-height: 1.45;
}

.checkout-submit:disabled {
  opacity: .6;
  cursor: wait;
}
