/* ===========================================================
   Mistrz Gramatyki Niemieckiej w 30 dni — v2
   Webflow-inspired visual framework
   =========================================================== */

:root {
  --color-accent:        #E53748;
  --color-accent-strong: #FF172D;
  --color-highlight:     #FFDE3A;
  --color-callout:       #BAE7F7;
  --color-callout-alt:   #C6ECFA;
  --color-cream:         #FCFAF3;
  --color-pink-soft:     #FFD3D3;
  --color-success:       #22BD46;
  --color-text:          #333333;
  --color-heading:       #0E0F11;
  --color-bg:            #FFFFFF;
  --color-border:        #ECECEC;

  --font-display: Tahoma, Verdana, "Segoe UI", sans-serif;
  --font-accent:  "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-feature: "Open Sans", Arial, sans-serif;
  --font-body:    Arial, "Helvetica Neue", Helvetica, sans-serif;

  --container: 1200px;
  --radius: 14px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 18px rgba(229,55,72,0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
/* width/height attrs (CLS) must not override CSS-driven responsive sizing */
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------- Headings ----------- */
.section-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.18;
  margin: 0 0 24px;
  text-align: center;
}
.section-sub {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  color: #000;
  text-align: center;
  margin: 0 0 40px;
}
.pre-label {
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  font-size: 14px;
  text-align: center;
  margin: 0 0 16px;
}

/* ----------- HERO ----------- */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}
.hero__pre {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  color: #555;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.12;
  max-width: 960px;
  margin: 0 auto 22px;
}
.hl-yellow {
  background: var(--color-highlight);
  padding: 0 0.18em;
  border-radius: 4px;
}
.hl-red { color: var(--color-accent); }
/* One-line framing above the hero player — names the payoff + runtime (CRO F2). */
.video-kicker {
  font-family: var(--font-body);
  font-size: 17px;
  color: #444;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 14px;
}

.hero__support {
  font-family: var(--font-body);
  font-size: 18px;
  color: #444;
  max-width: 760px;
  margin: 0 auto 32px;
}
.hero__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 24px 0 32px;
}
.hero__trust-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__trust-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  margin-left: -14px;
  background: #f4f4f4;
}
.hero__trust-avatars img:first-child { margin-left: 0; }
.hero__trust-text {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 15px;
  color: #555;
  margin: 0;
}
.hero__trust-stars {
  color: #E53748;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__trust { align-items: center; text-align: center; }
  .hero__trust-avatars { justify-content: center; }
  .hero__trust-avatars img { width: 42px; height: 42px; margin-left: -12px; }
  .hero__trust-text { font-size: 14px; text-align: center; }
  .hero__trust-stars { font-size: 20px; text-align: center; display: block; }
}

/* ----------- Video ----------- */
/* The player itself is styled by _shared/styles/vplayer.css; the page only
   supplies the slot geometry the old .video-slot used to carry. */
.hero .vp { max-width: 760px; margin: 0 auto 32px; }

/* ----------- CTA ----------- */
.cta-block {
  margin: 24px auto 0;
  text-align: center;
}
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  padding: 18px 36px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 0 #B42333;
  transition: all 0.2s ease;
}
.cta-btn:hover {
  background: var(--color-accent-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.cta-micro {
  font-size: 14px;
  color: #666;
  margin: 12px 0 0;
  font-family: var(--font-body);
}
.cta-block--with-refund {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-refund {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin: 0 0 16px;
}
.cta-refund__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-refund { font-size: 14px; gap: 8px; }
  .cta-refund__icon { width: 26px; height: 26px; }
}

/* ----------- Highlighted callouts (must-mention) ----------- */
.callout-big {
  background: var(--color-callout);
  border-radius: var(--radius);
  padding: 32px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  color: #000;
  text-align: center;
  line-height: 1.35;
  margin: 36px auto 0;
  max-width: 900px;
  box-shadow: var(--shadow-card);
}
.callout-big--inside {
  background: #fff;
  margin-top: 28px;
  box-shadow: none;
  border: 2px dashed rgba(0,0,0,0.15);
}
.bridge-callout { padding: 40px 0 0; background: #fff; }
.callout-big--bridge { margin: 0 auto; }
.callout-big--final {
  background: var(--color-cream);
  border: 2px solid var(--color-accent);
  margin-bottom: 36px;
}

/* ----------- Novelty block (hero) ----------- */
.novelty {
  max-width: 780px;
  margin: 36px auto 0;
  padding: 20px 24px;
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  text-align: center;
}
.novelty__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.novelty__text {
  margin: 0;
  font-size: 16px;
  color: #333;
}

/* ----------- TIMER ----------- */
.timer {
  background: var(--color-accent);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.timer__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 28px;
  color: #fff;
}
.timer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 0 auto 20px;
}
.timer__cell {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 20px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.timer__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}
.timer__unit {
  font-family: var(--font-accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.timer__note {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  opacity: 0.95;
  margin: 14px 0 0;
}

/* ----------- PROBLEM ----------- */
.problem { padding: 80px 0; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.problem__card {
  background: var(--color-pink-soft);
  padding: 26px 22px;
  border-radius: var(--radius);
  font-family: var(--font-feature);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-heading);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.problem__emoji {
  display: block;
  font-size: 36px;
  line-height: 1;
  margin: 0 auto 18px;
  padding-bottom: 4px;
}

/* ----------- DISCOVERY ----------- */
.discovery { padding: 0; background: var(--color-callout); }
.discovery > .container { padding-top: 56px; padding-bottom: 80px; }
.discovery__box {
  background: transparent;
  border-radius: 0;
  padding: 48px 40px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.discovery__box p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.discovery__box p strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
  font-size: 1.12em;
}
.discovery__box p:last-of-type { margin-bottom: 24px; }

/* Unified Discovery block — headline + text + key line + diagram, all on blue */
.discovery__box--unified {
  padding: 0;
  text-align: center;
  box-shadow: none;
  max-width: 960px;
}
.discovery__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
  color: var(--color-accent);
  margin: 0 auto 28px;
  max-width: 900px;
}
.discovery__key {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.25;
  color: var(--color-accent);
  margin: 26px auto 18px;
  max-width: 820px;
}
/* Facebook-style comment card */
.fb-proof { padding: 44px 0 12px; }
.fbcard {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
}
.fbcard__text mark {
  background: linear-gradient(180deg, transparent 55%, #FFF066 55%, #FFF066 92%, transparent 92%);
  color: #050505;
  padding: 0 2px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* Price comparison (anchoring) */
.price-compare {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 6px auto 22px;
  max-width: 640px;
  text-align: left;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}
.price-compare__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 14px;
  text-align: center;
}
.price-compare__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.price-compare__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}
.price-compare__list li:last-child { border-bottom: none; }
.price-compare__list li span { flex: 0 0 auto; font-size: 18px; }
.price-compare__us {
  background: #F0FBF2;
  border-radius: 10px;
  padding: 10px 12px !important;
  color: #1a1a1a !important;
}
.price-compare__us strong { color: var(--color-success); }
.price-compare__kicker {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: #555;
  margin: 0;
  text-align: center;
}

/* "Jak się uczymy?" — clean collage + chips */
.inside__figure--clean {
  max-width: 620px;
  margin: 0 auto 26px;
}
.inside__figure--clean img {
  width: 100%;
  height: auto;
  display: block;
}
.inside-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 0;
  margin: 0 auto 44px;
  max-width: 760px;
}
.inside-chips__item {
  background: #fff;
  border: 2px solid var(--color-accent);
  color: #0E0F11;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 15.5px;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .inside-chips { gap: 10px; }
  .inside-chips__item { font-size: 14px; padding: 9px 15px; }
}

/* Carousel wrap: arrows + swipe pill */
.fb-feed-wrap { position: relative; max-width: 1010px; margin: 0 auto; }
.fb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: opacity 0.25s ease, transform 0.15s ease;
}
.fb-arrow:hover { transform: translateY(-50%) scale(1.08); }
.fb-arrow svg { width: 22px; height: 22px; }
.fb-arrow--prev { left: -10px; }
.fb-arrow--next { right: -10px; animation: fbArrowNudge 1.6s ease-in-out infinite; }
.fb-arrow--hidden { opacity: 0; pointer-events: none; }
@keyframes fbArrowNudge {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(5px); }
}
.fb-swipe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 5;
  pointer-events: none;
  animation: fbSwipeSlide 1.8s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.fb-swipe svg { width: 17px; height: 17px; }
.fb-swipe--gone { opacity: 0; }
@keyframes fbSwipeSlide {
  0%, 100% { transform: translate(-50%, -50%) translateX(-7px); }
  50% { transform: translate(-50%, -50%) translateX(7px); }
}
@media (max-width: 640px) {
  .fb-arrow { width: 42px; height: 42px; }
  .fb-arrow--prev { left: 4px; }
  .fb-arrow--next { right: 4px; }
}

/* FB/IG feed (testimonials section) — horizontal swipe carousel */
.fb-feed {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  max-width: 980px;
  margin: 8px auto 0;
  padding: 6px 6px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.fb-feed .fbcard {
  margin: 0;
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: center;
}
.fb-feed-hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  margin: 6px 0 0;
}
@media (max-width: 560px) {
  .fb-feed .fbcard { flex: 0 0 82vw; max-width: 82vw; }
}
.fbcard__ava--initial { filter: none; transform: none; }
.fbcard--ig .fbcard__bubble {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 2px 0 0;
}
.fbcard--ig .fbcard__meta { margin-left: 50px; }
.fbcard__igheart {
  margin-left: 8px;
  align-self: center;
  color: #8e8e8e;
  font-size: 16px;
}
.fbcard__loc {
  font-weight: 400;
  color: #65676B;
  font-size: 12px;
}
.fbcard__src {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #9a9a9a;
  margin: 8px 0 0 50px;
}
/* Screenshot testimonial cards (real screen grabs) */
.fbcard--shot { background: transparent; }
.shot-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: #0E0F11;
  margin: 0 0 12px;
}
.shot-quote mark {
  background: linear-gradient(180deg, transparent 55%, #FFF066 55%, #FFF066 92%, transparent 92%);
  color: #0E0F11;
  padding: 0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.shot-stars {
  color: var(--color-accent);
  font-size: 17px;
  letter-spacing: 2px;
  white-space: nowrap;
}
.fbcard--shot .fbcard__src { margin-left: 4px; }
.shot-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}
.shot-zoom-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.shot-btn img { display: block; width: 100%; height: auto; }
.fb-feed .fbcard--shot { flex: 0 0 550px; max-width: 550px; }
@media (max-width: 640px) {
  .fb-feed .fbcard--shot { flex: 0 0 88vw; max-width: 88vw; }
}

.fbcard__arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  color: var(--color-accent);
  pointer-events: none;
  z-index: 2;
}
.fbcard__arrow--top {
  top: -34px;
  right: -8px;
  transform: rotate(14deg);
}
.fbcard__arrow--bottom {
  bottom: 44px;
  left: -34px;
  transform: rotate(24deg);
}
@media (max-width: 560px) {
  .fbcard__arrow { width: 42px; height: 42px; }
  .fbcard__arrow--top { right: 2px; }
  .fbcard__arrow--bottom { left: -8px; bottom: 36px; }
}
.fbcard__row { display: flex; gap: 8px; align-items: flex-start; }
.fbcard__avawrap {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.fbcard__ava {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.15);
}
.fbcard__bubble {
  background: #F0F2F5;
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.fbcard__name {
  font-weight: 700;
  font-size: 13px;
  color: #050505;
  margin: 0 0 2px;
}
.fbcard__surname {
  filter: blur(4px);
  user-select: none;
}
.fbcard__text {
  font-size: 15px;
  line-height: 1.45;
  color: #050505;
  margin: 0;
}
.fbcard__meta {
  display: flex;
  gap: 16px;
  margin: 6px 0 0 62px;
  font-size: 12px;
  font-weight: 600;
  color: #65676B;
}

.discovery__truths {
  list-style: none;
  margin: 0 auto 14px;
  padding: 0;
  max-width: 660px;
  text-align: left;
}
.discovery__truths li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
}
.discovery__truths li::before {
  content: "👉";
  position: absolute;
  left: 0;
  top: 0;
}
.discovery__figure {
  margin: 8px auto 0;
  max-width: 960px;
}
.discovery__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* ----------- COMPARE DIAGRAM (HTML version) ----------- */
.compare-diagram {
  margin: 32px auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-diagram__col {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.compare-diagram__col--before { border-top: 6px solid #E53748; }
.compare-diagram__col--after  { border-top: 6px solid #22BD46; }
.compare-diagram__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.25;
  color: #0E0F11;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.compare-diagram__title small {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: #E53748;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 6px;
}
.compare-diagram__rows {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 12px;
  flex: 1;
}
.compare-diagram__rows li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
  background: #fafafa;
  border-radius: 10px;
  padding: 14px 14px;
  min-height: 64px;
}
.compare-diagram__col--after .compare-diagram__rows li { background: #f0fdf4; }
.compare-diagram__icon {
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  padding-top: 1px;
}
.compare-diagram__rows li div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: 1.35;
  min-width: 0;
}
.compare-diagram__rows li strong {
  font-family: var(--font-feature);
  font-weight: 700;
  font-size: 14.5px;
  color: #0E0F11;
  display: block;
}
.compare-diagram__rows li span {
  font-size: 13px;
  color: #555;
  margin-top: 3px;
  display: block;
}
.compare-diagram__summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 14px 16px;
  border-radius: 10px;
  line-height: 1.4;
}
.compare-diagram__summary--before {
  background: #FFE5E8;
  color: #C72D3C;
}
.compare-diagram__summary--after {
  background: #22BD46;
  color: #fff;
}

@media (max-width: 768px) {
  .compare-diagram {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px auto 0;
  }
  .compare-diagram__col { padding: 20px 16px 16px; }
  .compare-diagram__title { font-size: 17px; }
  .compare-diagram__rows li strong { font-size: 15px; }
  .compare-diagram__rows li span { font-size: 13.5px; }
}

/* Desktop: no scroll-frame UI */
.discovery__figure .scroll-frame { position: relative; }
.discovery__figure .scroll-wrap { overflow: visible; }
.discovery__figure .swipe-overlay,
.discovery__figure .scroll-hint { display: none; }

/* Zoom trigger (tap to enlarge) */
.zoom-trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}
.zoom-trigger img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.zoom-trigger__badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 55, 72, 0.95);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.zoom-trigger__badge svg { width: 14px; height: 14px; }

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overflow: auto;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  width: min(900px, 92vw);
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  touch-action: pinch-zoom;
  align-self: safe center;
  margin: auto;
}
@media (max-width: 768px) {
  .lightbox__img {
    max-width: none;
    max-height: none;
    width: 180vw;
    height: auto;
  }
}
.lightbox__close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  backdrop-filter: blur(6px);
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* Mobile: full-bleed edge-to-edge — no swipe, image as wide as viewport */
@media (max-width: 768px) {
  .discovery__figure {
    max-width: 100vw;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .discovery__figure .scroll-frame,
  .discovery__figure .scroll-wrap {
    border-radius: 0;
    overflow: visible;
  }
  .discovery__figure .scroll-wrap img {
    width: 100%;
    max-width: 100vw;
    border-radius: 0;
    display: block;
  }
  .discovery__figure .swipe-overlay,
  .discovery__figure .scroll-hint,
  .discovery__figure .scroll-frame::after { display: none; }
}
@media (max-width: 768px) {
  .discovery > .container { padding-top: 40px; padding-bottom: 56px; }
  .discovery__box--unified { padding: 0; }
  .discovery__headline { font-size: 24px; line-height: 1.3; margin-bottom: 22px; }
  .discovery__key { font-size: 23px; margin: 18px auto 24px; }
}
@media (max-width: 768px) {
  .discovery__box p { font-size: 16px; line-height: 1.6; }
}

/* ----------- REFRAME ----------- */
.section-h1--red { color: var(--color-accent); }

.reframe { padding: 80px 0; background: #fafafa; }
.reframe__figure {
  margin: 32px auto 36px;
  max-width: 1000px;
}
.reframe__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.anti-position {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 32px;
  background: #0E0F11;
  color: #fff;
  border-radius: var(--radius);
  border-left: 6px solid var(--color-accent);
}
.anti-position p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #eee;
}

/* ----------- QUALIFICATION ----------- */
.qualification { padding: 80px 0 0; }
.qual-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 64px;
  max-width: 820px;
  display: grid;
  gap: 18px;
}
.qual-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  font-size: 17px;
}
.check {
  flex-shrink: 0;
  font-size: 20px;
}
.cream-block {
  background: var(--color-cream);
  padding: 64px 0;
  border-top: 1px solid #f0ecdc;
  border-bottom: 1px solid #f0ecdc;
  text-align: center;
}
.cream-block__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.2;
  color: #000;
  max-width: 980px;
  margin: 0 auto 32px;
}

/* ----------- WHAT'S INSIDE ----------- */
.inside { padding: 80px 0; background: var(--color-cream); }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.feature-card__icon {
  display: block;
  font-size: 42px;
  line-height: 1;
  margin: 0 auto 18px;
}
.feature-card__title {
  font-family: var(--font-feature);
  font-weight: 700;
  font-size: 17px;
  color: #0E0F11;
  margin: 0 0 12px;
  line-height: 1.3;
}
.feature-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}
.people-scene {
  margin: 32px auto 28px;
  max-width: 640px;
  padding: 0;
}
.people-scene svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .feature-cards { grid-template-columns: 1fr; max-width: 360px; }
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  max-width: 860px;
  display: grid;
  gap: 18px;
  counter-reset: step;
}
.steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.steps__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li p { margin: 0; font-size: 17px; line-height: 1.6; }
.inside__figure { max-width: 1000px; margin: 0 auto; }
.inside__figure img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* Desktop & tablet: normal display, no scroll frame UI */
.inside__figure .scroll-frame { position: relative; }
.inside__figure .scroll-wrap { overflow: visible; }
.inside__figure .swipe-overlay,
.inside__figure .scroll-hint { display: none; }

/* Mobile: wrap image in horizontal-scroll container with swipe overlay */
@media (max-width: 768px) {
  .inside__figure {
    /* allow image wrapper to go edge-to-edge visually */
    max-width: 100%;
  }
  .inside__figure .scroll-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fafafa;
  }
  .inside__figure .scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .inside__figure .scroll-wrap img {
    width: 820px;
    max-width: none;
    border-radius: 0;
  }
  /* Right edge fade — signals more content beyond viewport */
  .inside__figure .scroll-frame::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 56px;
    background: linear-gradient(to left, rgba(255,255,255,0.95), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
  }
  /* Animated red swipe pill overlay */
  .inside__figure .swipe-overlay {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(229, 55, 72, 0.95);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    animation: swipeHint 2s ease-in-out infinite;
    white-space: nowrap;
  }
  .inside__figure .swipe-overlay svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .inside__figure .scroll-frame.scrolled .swipe-overlay {
    opacity: 0;
    transition: opacity 0.4s ease-out;
  }
  .inside__figure .scroll-hint {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #888;
    margin: 10px 0 0;
    padding: 0 16px;
  }
}

@keyframes swipeHint {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  50%      { transform: translate(-50%, -50%) translateX(-14px); }
}

/* ----------- PRICING ----------- */
.pricing { padding: 80px 0; background: var(--color-cream); }
.pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1180px;
}
.pricing__single {
  max-width: 820px;
}
.pricing__mobile-packshot { display: none; }
@media (max-width: 768px) {
  .pricing__mobile-packshot {
    display: block;
    margin: 0 auto 32px;
    max-width: 100%;
  }
  .pricing__mobile-packshot .scroll-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fafafa;
  }
  .pricing__mobile-packshot .scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .pricing__mobile-packshot .scroll-wrap img {
    width: 820px;
    max-width: none;
    display: block;
  }
  .pricing__mobile-packshot .scroll-frame::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 56px;
    background: linear-gradient(to left, rgba(252,250,243,0.95), rgba(252,250,243,0));
    pointer-events: none;
    z-index: 2;
  }
  .pricing__mobile-packshot .swipe-overlay {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(229, 55, 72, 0.95);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    animation: swipeHint 2s ease-in-out infinite;
    white-space: nowrap;
  }
  .pricing__mobile-packshot .swipe-overlay svg { width: 22px; height: 22px; flex-shrink: 0; }
  .pricing__mobile-packshot .scroll-frame.scrolled .swipe-overlay {
    opacity: 0;
    transition: opacity 0.4s ease-out;
  }
  .pricing__mobile-packshot .scroll-hint {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin: 10px 0 0;
  }
}
.pricing__single .pricing__body {
  display: block;
}
.pricing__single .rating,
.pricing__single .price,
.pricing__single .cta-block { text-align: center; }
.pricing__single .cta-block { align-items: center; }
.pricing__single .cta-refund { justify-content: center; }
.pricing__single .mini-timer { justify-content: center; }
.pricing__figure {
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  min-width: 0;
  max-width: 100%;
}
.pricing__packshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.pricing__figure svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.pricing__body { min-width: 0; }
.pricing__headline { text-align: center; margin: 0 auto 48px; }
.pricing__body .rating { text-align: center; margin-top: 8px; }
.pricing__body .price { text-align: center; }
.pricing__body .cta-block { margin-top: 8px; text-align: center; align-items: center; }
.pricing__body .cta-refund { justify-content: center; }

.mini-timer {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin: 0 0 22px;
}
.scarcity-reminder--fomo {
  background: #FFF0F2;
  border-left: 4px solid #E53748;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 0 auto 22px;
  max-width: 680px;
  color: #C72D3C;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.scarcity-reminder--fomo em { font-style: italic; }
.mini-timer__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.mini-timer__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-accent);
  line-height: 1;
}
.mini-timer__unit {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .mini-timer { justify-content: center; }
}
@media (max-width: 520px) {
  .mini-timer { gap: 10px; }
  .mini-timer__num { font-size: 30px; }
  .mini-timer__cell { min-width: 48px; }
}

@media (max-width: 700px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing__headline,
  .pricing__body .rating,
  .pricing__body .price,
  .pricing__body .cta-block { text-align: center; align-items: center; }
  .pricing__body .cta-refund { justify-content: center; }
  .pricing__figure { max-width: 520px; margin: 0 auto; }
}

.stack {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 760px;
  display: grid;
  gap: 14px;
}
.stack li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: 16px;
}
.rating {
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin: 28px auto 20px;
  display: block;
  width: 100%;
}
.rating__stars { display: inline-block; vertical-align: middle; }
.price {
  text-align: center;
  margin: 0 auto 32px;
}
.price__old {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  color: #888;
  margin: 0 0 8px;
}
.price__old s { color: #888; }
.price__new {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-success);
  font-size: clamp(27px, 4.2vw, 48px);
  margin: 0 0 10px;
  line-height: 1.05;
}
.price__save {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-accent);
  margin: 0;
}

/* ----------- VIDEO OPINIONS PLACEHOLDER ----------- */
.video-opinions { padding: 80px 0 20px; background: #fff; }
.video-opinions .section-h1 { margin-bottom: 40px; }
.video-opinions__sub { display: none; }
.video-opinions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.video-opinions__grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.video-opinions__grid--single .video-opinions__slot {
  aspect-ratio: 16 / 9;
}
.video-opinions__embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: #000;
}
.video-opinions__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Video facade wrapper (allows hint to overflow the video frame) */
.video-facade-wrap {
  position: relative;
  width: 100%;
}

/* Video facade (click-to-play, no YouTube branding until user clicks) */
.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-facade:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.video-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  display: block;
  pointer-events: none;
  transition: transform 0.2s ease;
  z-index: 2;
}
.video-facade:hover .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-facade__play svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}
/* Pulsing ring behind the play button — draws attention */
.video-facade__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border-radius: 50%;
  background: rgba(229, 55, 72, 0.35);
  z-index: 1;
  pointer-events: none;
  animation: videoPulse 2s ease-out infinite;
}
.video-facade__pulse::before,
.video-facade__pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(229, 55, 72, 0.25);
}
.video-facade__pulse::before {
  animation: videoPulse 2s ease-out infinite 0.4s;
}
.video-facade__pulse::after {
  animation: videoPulse 2s ease-out infinite 0.8s;
}
@keyframes videoPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Hand-drawn hint arrow + label on the LEFT, pointing right toward the play button */
.video-facade-hint {
  position: absolute;
  top: -18px;
  left: -160px;
  width: 220px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: hintBounce 2.2s ease-in-out infinite;
}
.video-facade-hint__label {
  font-family: 'Caveat', 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 30px;
  font-weight: 700;
  color: #E53748;
  line-height: 1.1;
  text-align: left;
  transform: rotate(-5deg);
  margin-left: 4px;
  white-space: nowrap;
}
.video-facade-hint__arrow {
  width: 160px;
  height: auto;
  margin-top: -6px;
  margin-left: 20px;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.video-facade-wrap:has(.video-facade--playing) .video-facade-hint {
  display: none;
}

@media (max-width: 1024px) {
  .video-facade-hint {
    top: -70px;
    left: 10px;
    width: 220px;
  }
  .video-facade-hint__label { font-size: 24px; }
  .video-facade-hint__arrow { width: 130px; }
}
@media (max-width: 520px) {
  .video-facade-hint {
    top: -64px;
    left: 6px;
    width: 180px;
  }
  .video-facade-hint__label { font-size: 20px; }
  .video-facade-hint__arrow { width: 100px; margin-left: 12px; }
}
.video-facade iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-opinions__slot {
  aspect-ratio: 9 / 16;
  background: #F4F4F4;
  border-radius: var(--radius);
  border: 2px dashed #d0d0d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: border-color 0.2s ease;
}
.video-opinions__slot:hover { border-color: #E53748; }
.video-opinions__play {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.video-opinions__label {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .video-opinions__grid { grid-template-columns: 1fr; max-width: 340px; gap: 20px; }
  .video-opinions__slot { aspect-ratio: 16 / 10; }
}

/* ----------- TESTIMONIALS (swipeable carousel) ----------- */
.testimonials { padding: 20px 0 80px; }
.testimonials-scroll {
  position: relative;
  margin: 36px -20px 40px;
}
.testimonials__grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 10px 20px 24px;
  scrollbar-width: thin;
}
.testimonials__grid::-webkit-scrollbar { height: 8px; }
.testimonials__grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.testimonials__grid .tcard {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.testimonials-swipe-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(229, 55, 72, 0.95);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: swipeHint 2s ease-in-out infinite;
  white-space: nowrap;
}
.testimonials-swipe-overlay svg { width: 22px; height: 22px; flex-shrink: 0; }
.testimonials-scroll.scrolled .testimonials-swipe-overlay {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
@media (min-width: 901px) {
  .testimonials__grid .tcard { flex: 0 0 360px; }
}
.tcard {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tcard__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.tcard__avatar--initial { padding: 0; }
.tcard__title {
  font-family: var(--font-feature);
  font-weight: 700;
  font-size: 17px;
  color: #000;
  margin: 6px 0 4px;
  line-height: 1.3;
}
.tcard__quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: #444;
  margin: 0;
}
.tcard__quote mark {
  background: linear-gradient(180deg, transparent 55%, #FFF066 55%, #FFF066 92%, transparent 92%);
  color: #0E0F11;
  padding: 0 2px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.tcard--social {
  background: #fdfdfd;
  border: 1px solid #e5e5ea;
}
.tcard--social .tcard__quote {
  font-size: 14px;
  color: #2a2a30;
}
.tcard__attr {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-accent);
  margin: auto 0 0;
  padding-top: 10px;
}
.testimonials__closing {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  color: #000;
  margin: 40px auto 0;
  max-width: 820px;
}

/* ----------- GUARANTEE ----------- */
.guarantee { padding: 80px 0; background: #fafafa; }
.guarantee__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee__badge img { width: 100%; max-width: 260px; height: auto; }
.guarantee__body .section-h1 { text-align: left; }
.guarantee__body p { font-size: 17px; line-height: 1.65; }
.scarcity-reminder {
  font-size: 14.5px !important;
  color: #B42333;
  border-left: 3px solid var(--color-accent);
  padding-left: 14px;
  margin: 18px 0 24px !important;
}
.guarantee__body .cta-block { text-align: center; align-items: center; }
.guarantee__body .cta-refund { justify-content: center; }

/* ----------- ABOUT ----------- */
.about { padding: 80px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.about__body .section-h1 { text-align: left; }
.about__body p { font-size: 17px; line-height: 1.7; }
.about__bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.about__bullets li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
}
.about__portrait img {
  width: 100%;
  border-radius: 50%;
  background: var(--color-accent);
  padding: 16px;
}

/* ----------- FINAL CTA ----------- */
.final-cta { padding: 80px 0; background: var(--color-cream); text-align: center; }

/* ----------- FAQ ----------- */
.faq { padding: 80px 0; }
.faq__contact {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin: 0 auto 32px;
  max-width: 760px;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.faq__item summary {
  cursor: pointer;
  font-family: var(--font-feature);
  font-weight: 700;
  font-size: 17px;
  color: #000;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--color-accent);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ----------- FOOTER ----------- */
.footer {
  background: #0E0F11;
  color: #bbb;
  padding: 48px 0 32px;
  text-align: center;
}
.footer__logo img {
  width: auto;
  height: 44px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer__links a {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__links a:hover { color: var(--color-accent); }
.footer__contact {
  margin: 0 0 6px;
  font-size: 14px;
  color: #999;
}
.footer__copy {
  margin: 12px 0 0;
  font-size: 12px;
  color: #666;
}

/* ===========================================================
   Responsive — Tablet (≤ 900px)
   =========================================================== */
@media (max-width: 900px) {
  /* carousel stays horizontal on tablet */
  .guarantee__grid,
  .about__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee__body .section-h1,
  .about__body .section-h1 { text-align: center; }
  .guarantee__body .cta-block { text-align: center; }
  .guarantee__badge { margin: 0 auto; }
  .about__portrait { max-width: 320px; margin: 0 auto; }
  .about__bullets li { justify-content: center; }
}

/* ===========================================================
   Responsive — Mobile (≤ 600px)
   =========================================================== */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding: 40px 0 32px; }
  .timer { padding: 40px 0; }
  .timer__grid { grid-template-columns: repeat(4, 1fr); max-width: 340px; gap: 6px; }
  .timer__cell { padding: 10px 2px; border-radius: 10px; }
  .timer__num { font-size: 26px; }
  .timer__unit { font-size: 9px; letter-spacing: 0.05em; }
  .timer__label { font-size: 20px; margin-bottom: 18px; }
  .timer__note { font-size: 13px; }
  .testimonials__grid .tcard { flex: 0 0 280px; }
  .cta-btn { font-size: 16px; padding: 16px 28px; width: 100%; max-width: 360px; }
  .callout-big { padding: 24px 18px; }
  .discovery__box { padding: 32px 22px; }
  .anti-position { padding: 24px 22px; }
  .problem, .reframe, .inside, .pricing, .testimonials, .guarantee, .about, .final-cta, .faq {
    padding: 56px 0;
  }
  .qualification { padding: 56px 0 0; }
  .cream-block { padding: 48px 0; }
  .steps li { padding: 20px; gap: 14px; }
  .steps__num { width: 40px; height: 40px; font-size: 18px; }
}

/* ============ GRAPHIC PLACEHOLDERS (to be created by designer) ============ */
.graphic-placeholder {
  margin: 40px auto;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border: 3px dashed #E53748;
  border-radius: 16px;
  background: repeating-linear-gradient(
    45deg,
    #fdfdfd,
    #fdfdfd 10px,
    #f6f6f6 10px,
    #f6f6f6 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  box-sizing: border-box;
}

.graphic-placeholder--cream {
  background: repeating-linear-gradient(
    45deg,
    #FCFAF3,
    #FCFAF3 10px,
    #f4efe0 10px,
    #f4efe0 20px
  );
  border-color: #E53748;
}

.graphic-placeholder__inner {
  text-align: center;
  max-width: 520px;
}

.graphic-placeholder__label {
  display: inline-block;
  background: #E53748;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.graphic-placeholder__desc {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.graphic-placeholder__desc strong {
  color: #0E0F11;
}

/* Rating stars inline */
.rating__stars {
  width: auto;
  height: 24px;
  vertical-align: middle;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .graphic-placeholder {
    margin: 28px auto;
    padding: 24px 16px;
    aspect-ratio: auto;
    min-height: 200px;
  }
  .graphic-placeholder__desc { font-size: 14px; }
}

/* ============================================================
   WHATSAPP CHAT WIDGET (Variant B) — namespaced .wac__
   ============================================================ */
.wac {
  --wac-wa: #25D366;
  --wac-wa-shadow: #16934a;
  --wac-wa-dark: #1da851;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  font-family: var(--font-body);
}
/* Hidden on load; revealed on engagement (JS sets data-revealed="true"). */
.wac[data-revealed="false"] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}
.wac[data-revealed="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .35s ease, transform .35s ease;
}
/* Tag collapses to just the avatar a few seconds after reveal. */
.wac[data-tag="collapsed"] .wac__tag {
  opacity: 0;
  transform: translateY(6px) scale(.96);
  pointer-events: none;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wac__tag { transition: opacity .25s ease, transform .25s ease, max-height .3s ease, padding .3s ease; }

/* ---- Collapsed launcher (FAB + nudge tag) ---- */
.wac__launcher {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.wac__tag {
  background: #fff;
  border-radius: 12px 12px 4px 12px;
  padding: 8px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12.5px;
  color: #1c1d20;
  max-width: 188px;
  line-height: 1.25;
  text-align: left;
}
.wac__tag small {
  display: block;
  font-weight: 600;
  color: var(--wac-wa-dark);
  font-size: 10.5px;
  margin-top: 2px;
}
.wac__fab {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.2);
  padding: 3px;
  border: 2px solid var(--wac-wa);
  align-self: flex-end;
}
.wac__fab .wac__ava { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.wac__wabadge {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wac-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  color: #fff;
}
.wac__wabadge svg { width: 12px; height: 12px; display: block; }
.wac__attn {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid #fff;
  z-index: 3;
}
.wac__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--wac-wa);
  opacity: .45;
  z-index: -1;
  animation: wacPing 2.8s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes wacPing {
  0%   { transform: scale(1);   opacity: .45; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}

/* ---- Expanded card ---- */
.wac__card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, calc(100vw - 32px));
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
  border: 1px solid rgba(0,0,0,.05);
  transform: translateY(12px) scale(.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.wac[data-open="true"] .wac__card { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wac[data-open="true"] .wac__launcher { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s ease, visibility .15s; }

.wac__hd {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FF172D 100%);
}
.wac__close {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: none;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.wac__avaring { position: relative; flex: 0 0 auto; }
.wac__hd .wac__ava { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.6); display: block; }
.wac__online {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wac-wa);
  border: 2.5px solid var(--color-accent);
}
.wac__who b { font-family: var(--font-display); font-weight: 700; font-size: 16px; display: block; line-height: 1.1; }
.wac__who span { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-family: var(--font-accent); font-weight: 600; opacity: .95; margin-top: 3px; }
.wac__live { width: 7px; height: 7px; border-radius: 50%; background: #7CFFA8; box-shadow: 0 0 0 2px rgba(124,255,168,.35); }

.wac__bd { padding: 15px 16px 16px; }
.wac__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.32;
  color: #0E0F11;
  margin: 0 0 7px;
}
.wac__mark { background: linear-gradient(transparent 62%, var(--color-highlight) 62%); padding: 0 2px; }
.wac__sub { font-size: 12px; color: #666; margin: 0 0 13px; display: flex; align-items: center; gap: 6px; }
.wac__sub svg { flex: 0 0 auto; color: var(--wac-wa-dark); }

.wac__preview { background: var(--color-cream, #FCFAF3); border-radius: 14px; padding: 12px; margin: 0 0 13px; }
.wac__bubble {
  position: relative;
  background: #fff;
  border-radius: 4px 14px 14px 14px;
  padding: 9px 12px;
  font-size: 12.5px;
  color: #2a2b2e;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  max-width: 92%;
}
.wac__time { display: block; text-align: right; font-size: 9.5px; color: #aaa; margin-top: 3px; }

.wac__compose { margin: 0 0 10px; }
.wac__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  color: #2a2b2e;
  background: #fff;
  border: 1.5px solid var(--color-border, #ECECEC);
  border-radius: 12px;
  padding: 11px 13px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wac__input::placeholder { color: #a8a39a; }
.wac__input:focus { border-color: var(--wac-wa); box-shadow: 0 0 0 3px rgba(37,211,102,.15); }

.wac__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--wac-wa);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 18px;
  box-shadow: 0 4px 0 var(--wac-wa-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wac__btn:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(37,211,102,.4); }
.wac__btn svg { width: 18px; height: 18px; display: block; }
.wac__consent { font-size: 10.5px; line-height: 1.4; color: #9a958c; margin: 10px 2px 0; text-align: center; }
.wac__consent a { color: #7a756c; text-decoration: underline; }

@media (max-width: 600px) {
  .wac { right: 12px; bottom: 12px; }
  .wac__tag { max-width: 168px; }
}
@media (prefers-reduced-motion: reduce) {
  .wac__pulse { animation: none; }
  .wac__card { transition: none; }
}

/* ----------- Bonuses (Product-Factory handoff #222) ----------- */
.bonuses { padding: 80px 0; background: var(--color-bg); }
.bonuses__sub {
  text-align: center;
  color: #6b6b6b;
  margin: -8px 0 36px;
  font-size: 18px;
}
.bonus-cards {
  display: grid;
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}
.bonus-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
}
.bonus-card__tag {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 6px;
}
.bonus-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-heading);
  margin: 0 0 12px;
}
.bonus-card p { margin: 0 0 12px; }
.bonus-card p:last-child { margin-bottom: 0; }
.bonus-card__value {
  border-top: 1px dashed #d9d4c6;
  padding-top: 12px;
  font-size: 15px;
  color: #6b6b6b;
}
.bonus-card__scarcity {
  background: var(--color-highlight);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15.5px;
}
.cta-bonus-reminder {
  margin: 14px auto 0;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.5;
  color: #6b6b6b;
  text-align: center;
}
@media (max-width: 600px) {
  .bonuses { padding: 56px 0; }
  .bonus-card { padding: 20px 18px; }
  .bonus-card__title { font-size: 20px; }
}

/* Bonus card with a visual slot (activates only when the media figure is present) */
.bonus-card:has(.bonus-card__media) {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 26px;
  align-items: center;
}
.bonus-card__media {
  margin: 0;
}
.bonus-card__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 700px) {
  .bonus-card:has(.bonus-card__media) { grid-template-columns: 1fr; }
  .bonus-card__media { order: -1; max-width: 260px; margin: 0 auto; }
}

/* Bonus deliverable line: name-first cards (Anna 2026-08-01) */
.bonus-card__format {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-accent);
  margin: -4px 0 10px;
}

/* Section-wide bonus scarcity note (Anna 2026-08-02) — replaces per-card yellow box */
.bonuses__scarcity {
  background: var(--color-highlight);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15.5px;
  max-width: 780px;
  margin: 22px auto 0;
  text-align: center;
}

/* Bonus rows in the value stack read as a distinct "gift" group (Anna 2026-08-02) */
.stack .stack__bonus {
  background: var(--color-cream);
  border: 1px solid #F1E3B8;
}

/* Mobile bonus cards: compact — small square photo beside the name, no full-width hero image
   (Anna 2026-08-02: "na telefonie nie chce się czytać"). Overrides the earlier stacked layout. */
@media (max-width: 700px) {
  .bonus-card:has(.bonus-card__media) { display: block; }
  .bonus-card__media { float: right; width: 92px; max-width: 92px; margin: 2px 0 8px 14px; }
  .bonus-card__media img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; }
  .bonus-card { padding: 18px 18px; }
  .bonus-card__title { font-size: 19px; }
  .bonus-card__format { font-size: 14px; }
}

/* „Gwarancja Spokoju" — branded guarantee section (Anna 2026-08-02) */
.guarantee { background: #F0F9F3; }
.guarantee__eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1F9D55;
  margin: 0 0 8px;
}
