/* =========================================================
   TrueLife — arkusz stylów
   Kolory i czcionki zmieniasz w sekcji :root poniżej.
   ========================================================= */

:root {
  --cream: #FFFDEC;   /* jasne tło */
  --sand:  #FCE9CB;   /* piaskowe tło / akcent */
  --gold:  #F7B956;   /* złoty — przyciski, akcenty */
  --ink:   #1E1E1E;   /* kolor tekstu */
  --serif: 'Playfair Display', Georgia, serif;   /* nagłówki */
  --sans:  'Inter', system-ui, sans-serif;       /* tekst */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  padding-top: 80px;             /* miejsce na przyklejony nagłówek */
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--serif); line-height: 1.2; font-weight: 700; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; }

/* ---------- Ikony (SVG w stylu lucide) ---------- */
.icon {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(247,185,86,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(247,185,86,0.5); }

.btn-white {
  background: #fff;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-full { width: 100%; }

/* Pokazywanie/ukrywanie zależnie od ekranu */
.hide-mobile { display: none; }
.show-mobile { display: inline; }
@media (min-width: 640px) {
  .hide-mobile { display: inline; }
  .show-mobile { display: none; }
}

/* =========================================================
   NAGŁÓWEK
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header-logo { background: none; border: none; cursor: pointer; padding: 0; }
.header-logo img { height: 36px; width: auto; }

/* ---------- Przełącznik języka ---------- */
.lang-switch {
  position: fixed;
  top: 96px; right: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(247,185,86,0.4);
  transition: transform 0.25s;
}
.lang-switch:hover { transform: scale(1.05); }
.lang-switch .icon { width: 16px; height: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.hero-logo { height: 48px; width: auto; margin-bottom: 8px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  color: var(--ink);
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  font-size: 1.15rem;
  margin: 24px 0 32px;
  max-width: 34ch;
}
.hero-img { border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.2); }

/* Grafika w hero — zaokrąglone rogi jak przy pozostałych zdjęciach */
.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

/* =========================================================
   Wspólne: nagłówek sekcji i zdanie-puenta
   ========================================================= */
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  text-align: center;
  color: var(--ink);
  margin-bottom: 48px;
}
.section-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  text-align: center;
  max-width: 46ch;
  margin: 40px auto 0;
  color: var(--ink);
}
.section-quote.italic { font-style: italic; }

/* =========================================================
   PROBLEM ("Może to znasz…")
   ========================================================= */
.bg-cream { background: var(--cream); }
.bg-white { background: #fff; }
.bg-sand  { background: var(--sand); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.problem-item { text-align: center; }
.icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-circle .icon { width: 34px; height: 34px; }
.problem-item p { font-size: 1.1rem; }

/* =========================================================
   SOLUTION ("Daję narzędzia…")
   ========================================================= */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split-grid h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 28px;
}
.checklist { display: flex; flex-direction: column; gap: 20px; }
.check-row { display: flex; align-items: flex-start; gap: 14px; }
.check-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-mark .icon { width: 16px; height: 16px; }
.rounded-img { border-radius: 28px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

/* =========================================================
   PROCESS ("Proces")
   ========================================================= */
.process-desktop { display: none; }
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 48px; left: 10%;
  width: 80%; height: 4px;
  background: linear-gradient(to right, var(--gold), var(--sand));
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step { text-align: center; }
.step-num {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(247,185,86,0.4);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.step p { font-size: 1.05rem; }

.process-mobile { display: flex; flex-direction: column; gap: 28px; }
.process-mobile .step-row { display: flex; align-items: flex-start; gap: 18px; }
.process-mobile .step-num { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 0; }
.process-mobile .step-row p { padding-top: 14px; }

/* =========================================================
   OFFER (Oferta / cennik)
   ========================================================= */
.offer-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  padding: 32px 24px;
  max-width: 680px;
  margin: 0 auto;
}
.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.offer-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.offer-benefits .check-row p { font-size: 0.98rem; }
.offer-benefits .check-mark { background: transparent; color: var(--gold); width: 22px; height: 22px; }
.offer-divider { border-top: 1px solid var(--sand); margin: 32px 0; }
.package {
  background: var(--cream);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
}
.package-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.package-name { font-size: 1.05rem; }
.package-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); }
.package .btn { color: #fff; }

/* ---------- Nowy cennik: pakiety (2 ciemne + 3 jasne) ---------- */
.pricing { display: flex; flex-direction: column; gap: 24px; max-width: 1100px; margin: 48px auto 0; }
.pricing-row { display: grid; grid-template-columns: 1fr; gap: 24px; }

.price-card {
  border-radius: 24px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.plan-emoji { font-size: 1.15rem; line-height: 1; }
.plan-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.price-card .price { font-family: var(--serif); font-size: 2.3rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.price-card .price-sub { font-size: 0.9rem; margin-bottom: 22px; }
.plan-divider { border-top: 1px solid; margin-bottom: 22px; }
.plan-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; flex: 1; }
.plan-list .row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; line-height: 1.4; }
.plan-list .row .icon { width: 18px; height: 18px; margin-top: 2px; }

/* Ciemne karty VIP */
.price-card.dark { background: linear-gradient(135deg, #1E1E1E 0%, #2a2a2a 100%); color: #fff; }
.price-card.dark.featured { border: 2px solid var(--gold); box-shadow: 0 16px 48px rgba(247,185,86,0.28); }
.price-card.dark:not(.featured) { border: 1px solid rgba(247,185,86,0.35); }
.price-card.dark .plan-label { color: var(--gold); }
.price-card.dark .price { color: #fff; }
.price-card.dark .price-sub { color: rgba(255,255,255,0.6); }
.price-card.dark .plan-divider { border-color: rgba(255,255,255,0.18); }
.price-card.dark .plan-list .row .icon { color: var(--gold); }
.price-card.dark .plan-list .row span { color: rgba(255,255,255,0.92); }

/* Jasne karty */
.price-card.light { background: linear-gradient(135deg, #ffffff 0%, #FFFDEC 100%); color: var(--ink); border: 1px solid var(--sand); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.price-card.light.featured { border: 2px solid var(--gold); box-shadow: 0 16px 40px rgba(247,185,86,0.22); }
.price-card.light .plan-label { color: var(--gold); }
.price-card.light .price { color: var(--ink); }
.price-card.light .price-sub { color: rgba(30,30,30,0.55); }
.price-card.light .plan-divider { border-color: rgba(30,30,30,0.12); }
.price-card.light .plan-list .row .icon { color: var(--gold); }
.price-card.light .plan-list .row span { color: rgba(30,30,30,0.82); }

/* Plakietka "najczęściej wybierany" */
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(247,185,86,0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Przyciski w kartach cennika */
.plan-btn { margin-top: auto; width: 100%; }
.plan-btn.solid { background: var(--gold); color: var(--ink); box-shadow: 0 8px 24px rgba(247,185,86,0.3); }
.plan-btn.solid:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(247,185,86,0.45); }
.plan-btn.outline-gold { background: transparent; color: var(--gold); border: 1.5px solid rgba(247,185,86,0.6); }
.plan-btn.outline-gold:hover { background: rgba(247,185,86,0.1); transform: translateY(-2px); }
.plan-btn.outline-dark { background: transparent; color: var(--ink); border: 1.5px solid rgba(30,30,30,0.18); }
.plan-btn.outline-dark:hover { border-color: var(--gold); transform: translateY(-2px); }

/* Nota zachęcająca w karcie (np. „cena zaliczana na poczet pakietu") */
.plan-note {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
  background: rgba(247,185,86,0.15);
  border: 1px solid rgba(247,185,86,0.4);
  border-radius: 10px;
  padding: 9px 12px;
  margin: 4px 0 20px;
}

@media (min-width: 768px) {
  .pricing-row.top { grid-template-columns: 1fr 1fr; }
  .pricing-row.bottom { grid-template-columns: 1fr 1fr 1fr; }
}

/* =========================================================
   ABOUT ("O mnie")
   ========================================================= */
.about-video {
  max-width: 860px;
  margin: 48px auto 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  aspect-ratio: 16 / 9;
}
.about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* =========================================================
   OPINIE GOOGLE (marquee)
   ========================================================= */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.reviews-rating { display: flex; align-items: center; gap: 16px; }
.reviews-rating svg { width: 36px; height: 36px; flex-shrink: 0; }
.reviews-score { display: flex; flex-direction: column; gap: 2px; }
.reviews-score .num { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.reviews-score .stars { color: var(--gold); line-height: 1; }
.reviews-score .label { font-size: 0.75rem; color: rgba(30,30,30,0.6); }

.reviews-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.gr-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
@keyframes gr-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: no-preference) {
  .gr-track { animation: gr-scroll 40s linear infinite; }
}
.gr-track:hover { animation-play-state: paused; }

.review-card {
  flex-shrink: 0;
  width: 280px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(247,185,86,0.25); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.review-date { font-size: 0.75rem; color: rgba(30,30,30,0.55); }
.review-stars { color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.review-text {
  font-size: 0.9rem;
  color: rgba(30,30,30,0.85);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   DLA KOGO ("Target audience")
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.audience-card { border-radius: 28px; padding: 32px; }
.audience-card.yes { background: var(--cream); }
.audience-card.no  { background: var(--sand); }
.audience-card h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 28px; }
.audience-card.yes h3 { color: var(--gold); }
.audience-card.no  h3 { color: var(--ink); }
.audience-list { display: flex; flex-direction: column; gap: 22px; }
.audience-row { display: flex; align-items: flex-start; gap: 16px; }
.mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.mark.gold { background: var(--gold); }
.mark.dark { background: var(--ink); }
.mark .icon { width: 18px; height: 18px; }
.audience-row p { font-size: 1.05rem; }

/* =========================================================
   FINAL CTA (kontakt)
   ========================================================= */
.final-cta { background: var(--gold); text-align: center; color: #fff; }
.final-cta h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: #fff; margin-bottom: 20px; }
.final-cta .lead { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 48px; }
.final-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
.final-contact { color: rgba(255,255,255,0.85); }
.final-contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  margin: 6px 0;
}
.final-contact .icon { width: 18px; height: 18px; }

/* =========================================================
   SEKCJA KSIĄŻKI (CTA na końcu)
   ========================================================= */
.book-cta {
  background: linear-gradient(135deg, #141414 0%, #241d12 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.book-cta .container { position: relative; z-index: 2; max-width: 1000px; }
.book-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.book-cover img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(247,185,86,0.4);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 24px;
}
.book-cta h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.book-cta h2 .white { color: #fff; }
.book-cta h2 .gold { color: var(--gold); }
.book-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 46ch;
  margin: 0 auto 14px;
}
.book-lead {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  max-width: 46ch;
  margin: 0 auto 30px;
}
.book-cta .btn-gold { font-size: 1.05rem; padding: 16px 34px; }

@media (min-width: 768px) {
  .book-cta-grid { grid-template-columns: 280px 1fr; gap: 56px; text-align: left; }
  .book-cover img { margin: 0; }
  .book-sub, .book-lead { margin-left: 0; margin-right: 0; }
}

/* =========================================================
   STOPKA
   ========================================================= */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--sand);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-inner img { height: 32px; width: auto; }
.footer-name { font-family: var(--serif); font-size: 1.1rem; }
.footer-copy { font-size: 0.85rem; color: #666; }

/* =========================================================
   PRZYKLEJONY PRZYCISK MOBILNY
   ========================================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 55;
}
.sticky-cta .btn {
  width: 100%;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* =========================================================
   MODAL ZGÓD
   ========================================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.5);
  padding: 16px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  padding: 28px 24px;
  max-width: 720px;
  width: 100%;
  margin: 40px auto;
  position: relative;
}
.modal h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); text-align: center; margin-bottom: 16px; }
.modal-intro { text-align: center; opacity: 0.8; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  border-radius: 50%;
  padding: 6px;
  line-height: 0;
}
.modal-close:hover { background: #f1f1f1; }
.consent-box {
  background: var(--cream);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
}
.consent-box.scroll { max-height: 260px; overflow-y: auto; }
.consent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent-label input { margin-top: 4px; width: 20px; height: 20px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.consent-title { font-weight: 600; margin-bottom: 6px; }
.consent-text { font-size: 0.85rem; opacity: 0.9; }
.consent-text p { margin-bottom: 8px; }
.consent-text p:last-child { margin-bottom: 0; }
.modal-warning {
  background: #FFF4E0;
  color: var(--gold);
  text-align: center;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.modal-actions { display: flex; flex-direction: column; gap: 12px; }
.modal-actions .btn { flex: 1; }
.btn-cancel {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-accept { background: var(--gold); color: #fff; }
.btn-accept:disabled { opacity: 0.5; cursor: not-allowed; }

/* =========================================================
   RESPONSYWNOŚĆ — od 768px w górę (tablet / desktop)
   ========================================================= */
@media (min-width: 768px) {
  .section { padding: 112px 0; }
  .container { padding: 0 48px; }

  .header-logo img { height: 40px; }

  .lang-switch { right: 24px; }

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

  .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }

  .split-grid { grid-template-columns: 1fr 1fr; gap: 48px; }

  .process-desktop { display: block; margin-bottom: 64px; }
  .process-mobile { display: none; }

  .offer-card { padding: 48px; }
  .package-head { flex-direction: row; justify-content: space-between; align-items: center; }

  .audience-grid { grid-template-columns: 1fr 1fr; }

  .final-buttons { flex-direction: row; }
  .final-contact p { font-size: 1rem; }

  .footer-inner { flex-direction: row; justify-content: space-between; }

  .modal { padding: 40px; }
  .modal-actions { flex-direction: row; }
}

/* Przyklejony przycisk pokazujemy tylko na telefonach */
@media (max-width: 767px) {
  .sticky-cta.visible { display: block; }
}
