/* ════════════════════════════════════════════════════════════════════
   COLORA I CAPOLAVORI — Playful kids edition
   Chunky type · vivid pop palette · doodles · bounce
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* warm paper backgrounds */
  --cream:        #fff5dc;
  --cream-warm:   #ffeec2;
  --paper:        #fffaf0;
  --ink:          #2a1a3e;
  --ink-soft:     #4d3a5e;
  --ink-mute:     #8a7a9a;

  /* POP palette */
  --yellow:       #ffc83a;
  --yellow-d:     #e8a91d;
  --orange:       #ff7a3a;
  --orange-d:     #e85a1f;
  --red:          #ff4f6a;
  --red-d:        #d9304a;
  --pink:         #ff7ac6;
  --pink-d:       #e055a7;
  --blue:         #4ab8ff;
  --blue-d:       #2a8ed9;
  --indigo:       #5d3aff;
  --green:        #44c879;
  --green-d:      #28a85b;
  --purple:       #a45df0;
  --teal:         #2dd4bf;

  --border:       #2a1a3e;

  --display: "Caprasimo", "Lilita One", Georgia, serif;
  --heading: "Fredoka", "Nunito", -apple-system, sans-serif;
  --sans:    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 8% 12%, var(--yellow) 0 6px, transparent 7px),
    radial-gradient(circle at 92% 22%, var(--pink) 0 4px, transparent 5px),
    radial-gradient(circle at 18% 78%, var(--blue) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 88%, var(--green) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, var(--orange) 0 3px, transparent 4px);
  background-size: 800px 800px;
  background-attachment: fixed;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
img, svg { max-width: 100%; }

/* ─── EYEBROW · sticker style ──────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 18px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 100px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}
.eyebrow--light {
  background: var(--orange);
  color: var(--paper);
}

/* ─── HEADINGS ─────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  line-height: 1;
  color: var(--ink);
  text-wrap: balance;
  letter-spacing: -0.005em;
}
h4, h5 { font-family: var(--heading); font-weight: 700; letter-spacing: 0; }

h2 em, h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
h2 em::after, h1 em::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16' preserveAspectRatio='none'%3E%3Cpath d='M2 10 Q 30 2, 60 8 T 120 8 T 198 6' stroke='%23ffc83a' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/* ─── TOPBAR ──────────────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  letter-spacing: 0.02em;
  font-family: var(--heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.topbar__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 12px rgba(255, 79, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 79, 106, 0); }
}
.topbar__label { font-weight: 700; }
.topbar__time { display: inline-flex; gap: 5px; font-variant-numeric: tabular-nums; }
.topbar__time b {
  background: var(--yellow);
  color: var(--ink);
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 800;
  font-family: var(--display);
  display: inline-block;
  min-width: 30px;
  text-align: center;
}
.topbar__time span { opacity: 0.6; padding: 0 2px; }
.topbar__price { color: var(--yellow); font-weight: 700; }
.topbar__price s { opacity: 0.5; font-weight: 400; margin: 0 4px; }
.topbar__price b { color: var(--paper); font-family: var(--display); font-size: 16px; }
.topbar__lang {
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  padding: 4px 11px;
  text-decoration: none;
  font-weight: 800;
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
  padding: 50px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  text-align: center;
}

.hero__top {
  max-width: 920px;
  margin: 0 auto;
}
.hero__top .hero__kicker { margin-left: auto; margin-right: auto; }

.hero__capa {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 8px auto 4px;
}
.hero__capa-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 0 rgba(42, 26, 62, 0.06))
          drop-shadow(0 30px 60px rgba(42, 26, 62, 0.18));
  animation: capaFloat 6s ease-in-out infinite;
}
@keyframes capaFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__bottom {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 100%;
}
.hero__bottom .hero__lead { margin: 0; }
.hero__bottom .hero__cta  { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__bottom .hero__assure { justify-content: center; }
.hero__bottom .hero__strip { width: 100%; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 28px;
  transform: rotate(-1.5deg);
}
.kicker__star { color: var(--orange); font-size: 13px; letter-spacing: 1px; }

.hero__h {
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 0.92;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero__h-sub {
  display: block;
  font-family: var(--heading);
  font-size: 0.34em;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-top: 14px;
  line-height: 1.3;
}
.hero__lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero__lead b { color: var(--ink); font-weight: 800; }

.hero__cta { margin-bottom: 32px; }
.hero__assure {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  flex-wrap: wrap;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hero__strip > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero__strip > div:nth-child(1) { background: #fffbe5; transform: rotate(-1deg); }
.hero__strip > div:nth-child(2) { background: #fff0f5; transform: rotate(1deg); }
.hero__strip > div:nth-child(3) { background: #e5f5ff; transform: rotate(-1deg); }
.hero__strip > div:nth-child(4) { background: #e8fbef; transform: rotate(1deg); }

.hero__strip b {
  font-family: var(--display);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}
.hero__strip span { color: var(--ink-mute); font-size: 14px; font-weight: 700; }
.hero__strip i {
  font-style: normal;
  font-size: 11px;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* hero right — pixel art frame */
.hero__right { position: relative; }
.hero__frame {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 24px 24px 18px;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
  position: relative;
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed var(--ink);
  border-radius: 12px;
  pointer-events: none;
  opacity: 0.18;
}
.hero__frame-tag {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 2.5px solid var(--ink);
  margin-bottom: 14px;
}
.hero__pencils {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding: 0 4px;
  align-items: flex-end;
  height: 70px;
}
.hero__pencils span {
  flex: 1;
  height: 100%;
  border-radius: 4px 4px 1px 1px;
  position: relative;
  box-shadow: 2px 2px 0 var(--ink);
  border: 2px solid var(--ink);
}
.hero__pencils span:nth-child(odd) { animation: wiggle 3s ease-in-out infinite; }
.hero__pencils span:nth-child(even) { animation: wiggle 3s ease-in-out infinite reverse; }
.hero__pencils span:nth-child(1) { height: 92%; transform: rotate(-3deg); }
.hero__pencils span:nth-child(2) { height: 84%; transform: rotate(2deg); }
.hero__pencils span:nth-child(3) { height: 96%; transform: rotate(-1deg); }
.hero__pencils span:nth-child(4) { height: 78%; transform: rotate(3deg); }
.hero__pencils span:nth-child(5) { height: 88%; transform: rotate(-2deg); }
.hero__pencils span:nth-child(6) { height: 82%; transform: rotate(1deg); }
.hero__pencils span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -2px;
  right: -2px;
  height: 14px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
  filter: brightness(0.7);
}

@keyframes wiggle {
  0%, 100% { transform: translateY(0) rotate(var(--r, -2deg)); }
  50%      { transform: translateY(-3px) rotate(var(--r, -2deg)); }
}

.hero__sticker {
  position: absolute;
  top: -10px;
  right: 4%;
  background: var(--red);
  color: var(--paper);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: rotate(12deg);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  z-index: 5;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50%      { transform: rotate(12deg) translateY(-8px); }
}
.sticker__big {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.sticker__sm {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-top: 4px;
}

/* floating decoration stars */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--1 { top: 10%; left: 4%; animation: spin 18s linear infinite; }
.hero__deco--2 { top: 65%; right: 4%; animation: float 4s ease-in-out infinite; }
.hero__deco--3 { top: 18%; right: 38%; animation: float 3.5s ease-in-out infinite reverse; }
.hero__deco--4 { bottom: 8%; left: 38%; animation: spin 22s linear infinite reverse; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(10deg); }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--orange);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
  position: relative;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn--big {
  padding: 22px 36px;
  font-size: 22px;
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  border-width: 4px;
  box-shadow: 8px 8px 0 var(--ink);
}
.btn--big:hover { box-shadow: 10px 10px 0 var(--ink); }
.btn--big:active { box-shadow: 3px 3px 0 var(--ink); }
.btn__icon {
  background: var(--yellow);
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 2.5px solid var(--ink);
}
.btn--complete { background: var(--red); }
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
}

/* wobble for big CTAs */
.btn--big {
  animation: wobble 4s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { rotate: 0deg; }
  25%      { rotate: -1deg; }
  75%      { rotate: 1deg; }
}

/* ─── PROBLEM ────────────────────────────────────────────────────── */
.problem {
  padding: 100px 0;
  position: relative;
}
.problem__head { text-align: center; margin-bottom: 56px; }
.problem__head h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-top: 22px;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.problem__card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: left;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem__card:nth-child(1) { background: #ffe8e8; transform: rotate(-1.5deg); }
.problem__card:nth-child(2) { background: #ffefd5; transform: rotate(1deg); }
.problem__card:nth-child(3) { background: #e8f3ff; transform: rotate(-1deg); }
.problem__card:nth-child(4) { background: #ffe5f3; transform: rotate(1.5deg); }
.problem__card:nth-child(5) { background: #e8fbef; transform: rotate(-1deg); }
.problem__card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 8px 8px 0 var(--ink);
}
.problem__emoji {
  font-size: 42px;
  margin-bottom: 12px;
  display: inline-block;
  animation: bounceLight 2.4s ease-in-out infinite;
}
@keyframes bounceLight {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.problem__card h4 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
}
.problem__card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
  font-weight: 500;
}
.problem__verdict {
  margin: 60px auto 0;
  max-width: 820px;
  background: var(--ink);
  color: var(--paper);
  padding: 30px 36px;
  border-radius: 20px;
  text-align: center;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
  transform: rotate(-0.5deg);
}
.problem__verdict b { color: var(--yellow); font-weight: 700; }

/* ─── SOLUTION ───────────────────────────────────────────────────── */
.solution {
  background: var(--indigo);
  color: var(--paper);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1.5px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.solution::after {
  content: "★ ★ ★";
  position: absolute;
  top: 60px;
  left: 6%;
  font-size: 30px;
  color: var(--yellow);
  letter-spacing: 16px;
  opacity: 0.5;
}
.solution__head { text-align: center; margin-bottom: 64px; position: relative; }
.solution__head h2 {
  color: var(--paper);
  font-size: clamp(38px, 5vw, 64px);
  margin-top: 24px;
}
.solution__head h2 em { color: var(--yellow); }
.solution__head h2 em::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16' preserveAspectRatio='none'%3E%3Cpath d='M2 10 Q 30 2, 60 8 T 120 8 T 198 6' stroke='%23ff7ac6' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}
.solution__sub {
  max-width: 660px;
  margin: 22px auto 0;
  font-size: 19px;
  font-weight: 500;
  opacity: 0.85;
}

.solution__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step {
  background: var(--paper);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--yellow);
  position: relative;
}
.step:nth-child(1) { transform: rotate(-1.5deg); }
.step:nth-child(3) { transform: rotate(1deg); box-shadow: 6px 6px 0 var(--pink); }
.step--final {
  transform: rotate(-1deg) !important;
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--red) !important;
}
.step__num {
  font-family: var(--display);
  font-size: 54px;
  color: var(--orange);
  line-height: 0.9;
  -webkit-text-stroke: 2.5px var(--ink);
}
.step--final .step__num { color: var(--red); }
.step__art {
  background: var(--paper);
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  margin: 14px auto 14px;
  position: relative;
  max-width: 200px;
}
.step--final .step__art { background: var(--paper); }

/* image-based step art — full product worksheet preview */
.step__art--img {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 100%;
  margin: 10px auto 18px;
}
.step__art--img img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(42, 26, 62, 0.18));
}

.step__sparkle {
  position: absolute;
  top: -16px;
  right: -16px;
  font-size: 36px;
  animation: spin 5s linear infinite;
}
.step__name {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step p { font-size: 14px; color: var(--ink-soft); margin: 0; font-weight: 600; }
.step__arrow {
  font-family: var(--display);
  font-size: 44px;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--ink);
}

.solution__legend {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--heading);
}
.solution__legend > span:first-child {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-right: 8px;
}
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.18);
}
.swatch i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  color: var(--ink);
  font-family: var(--heading);
  border: 2px solid var(--ink);
}

/* ─── CATALOG ────────────────────────────────────────────────────── */
.catalog { padding: 110px 0; position: relative; }
.catalog__head { text-align: center; margin-bottom: 56px; }
.catalog__head h2 {
  font-size: clamp(38px, 5vw, 60px);
  margin-top: 24px;
}
.catalog__head h2 b {
  font-weight: 400;
  font-family: var(--display);
  color: var(--red);
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.masterpiece {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 6px 6px 0 var(--ink);
}
.masterpiece:nth-child(1) { transform: rotate(-1deg); box-shadow: 6px 6px 0 var(--yellow); }
.masterpiece:nth-child(2) { transform: rotate(1deg); box-shadow: 6px 6px 0 var(--pink); }
.masterpiece:nth-child(3) { transform: rotate(-0.5deg); box-shadow: 6px 6px 0 var(--blue); }
.masterpiece:nth-child(4) { transform: rotate(1deg); box-shadow: 6px 6px 0 var(--green); }
.masterpiece:nth-child(5) { transform: rotate(-1deg); box-shadow: 6px 6px 0 var(--orange); }
.masterpiece:nth-child(6) { transform: rotate(0.5deg); box-shadow: 6px 6px 0 var(--purple); }
.masterpiece:hover {
  transform: translateY(-8px) rotate(0);
  box-shadow: 10px 10px 0 var(--ink);
}
.masterpiece__art {
  background: var(--paper);
  padding: 26px;
  border-bottom: 3px solid var(--ink);
  display: flex;
  justify-content: center;
}
.masterpiece__art > div { width: 100%; max-width: 220px; }
.masterpiece__art--img {
  padding: 18px;
  background: var(--cream);
}
.masterpiece__art--img img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(42, 26, 62, 0.16));
}
.masterpiece__meta {
  padding: 16px 22px 20px;
  background: var(--cream);
}
.masterpiece__tag {
  font-family: var(--heading);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}
.masterpiece h4 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.masterpiece__sub {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.catalog__cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: 8px 8px 0 var(--ink);
}
.cat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 10px 0;
  align-items: start;
}
.cat__i { font-size: 28px; line-height: 1; padding-top: 2px; }
.cat h5 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 2px;
  color: var(--ink);
}
.cat p {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

/* ─── BENEFITS ───────────────────────────────────────────────────── */
.benefits {
  padding: 110px 0;
  background:
    linear-gradient(180deg, transparent 0, var(--cream-warm) 50%, transparent 100%);
}
.benefits__head { text-align: center; margin-bottom: 56px; }
.benefits__head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 24px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 5px 5px 0 var(--ink);
}
.benefit:nth-child(1) { box-shadow: 5px 5px 0 var(--yellow); }
.benefit:nth-child(2) { box-shadow: 5px 5px 0 var(--pink); transform: translateY(-6px); }
.benefit:nth-child(3) { box-shadow: 5px 5px 0 var(--blue); }
.benefit:nth-child(4) { box-shadow: 5px 5px 0 var(--green); }
.benefit:nth-child(5) { box-shadow: 5px 5px 0 var(--orange); transform: translateY(-6px); }
.benefit:nth-child(6) { box-shadow: 5px 5px 0 var(--purple); }
.benefit__i {
  font-size: 36px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 18px;
  line-height: 1;
  transform: rotate(-6deg);
}
.benefit:nth-child(2) .benefit__i { background: var(--pink); transform: rotate(6deg); }
.benefit:nth-child(3) .benefit__i { background: var(--blue); }
.benefit:nth-child(4) .benefit__i { background: var(--green); transform: rotate(6deg); }
.benefit:nth-child(5) .benefit__i { background: var(--orange); }
.benefit:nth-child(6) .benefit__i { background: var(--purple); transform: rotate(-6deg); }
.benefit h4 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.benefit p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials {
  background: var(--pink);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "★";
  position: absolute;
  top: 8%;
  left: 4%;
  font-size: 80px;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--ink);
  animation: spin 12s linear infinite;
}
.testimonials::after {
  content: "★";
  position: absolute;
  bottom: 8%;
  right: 4%;
  font-size: 60px;
  color: var(--paper);
  text-shadow: 4px 4px 0 var(--ink);
  animation: spin 14s linear infinite reverse;
}
.testimonials__head { text-align: center; margin-bottom: 48px; position: relative; }
.testimonials__head h2 {
  color: var(--paper);
  font-size: clamp(36px, 5vw, 58px);
  margin-top: 22px;
  text-shadow: 4px 4px 0 var(--ink);
}
.testimonials__head h2 em { color: var(--yellow); }
.testimonials__head h2 em::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16' preserveAspectRatio='none'%3E%3Cpath d='M2 10 Q 30 2, 60 8 T 120 8 T 198 6' stroke='%23fff5dc' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}
.testimonials__rating {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--paper);
  font-weight: 600;
  background: var(--ink);
  padding: 10px 22px;
  border-radius: 100px;
  border: 3px solid var(--ink);
}
.testimonials__rating b { color: var(--yellow); font-size: 20px; font-family: var(--display); }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 18px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}
.testimonial {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 28px 30px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}
.testimonial:nth-child(1) { transform: rotate(-1deg); }
.testimonial:nth-child(2) { transform: rotate(1deg); background: var(--cream); }
.testimonial:nth-child(3) { transform: rotate(0.8deg); background: var(--cream); }
.testimonial:nth-child(4) { transform: rotate(-0.8deg); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: 22px;
  background: var(--yellow);
  color: var(--ink);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0.5;
  padding-bottom: 14px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.testimonial__stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 17px;
  margin-top: 18px;
}
.testimonial__quote {
  font-family: var(--heading);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 500;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 2px dashed var(--ink);
}
.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: 800;
  font-size: 16px;
  font-family: var(--display);
  border: 3px solid var(--ink);
}
.testimonial:nth-child(2) .testimonial__avatar { background: var(--blue); }
.testimonial:nth-child(3) .testimonial__avatar { background: var(--green); }
.testimonial:nth-child(4) .testimonial__avatar { background: var(--red); }
.testimonial__author b { font-family: var(--display); font-size: 17px; font-weight: 400; display: block; }
.testimonial__author span { font-family: var(--heading); font-size: 12px; color: var(--ink-soft); font-weight: 600; }

.testimonials__strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.testimonials__strip > div {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
}
.testimonials__strip > div:nth-child(1) { background: var(--yellow); transform: rotate(-1deg); }
.testimonials__strip > div:nth-child(2) { background: var(--blue); transform: rotate(1deg); }
.testimonials__strip > div:nth-child(3) { background: var(--green); transform: rotate(-1deg); }
.testimonials__strip > div:nth-child(4) { background: var(--orange); transform: rotate(1deg); }
.testimonials__strip b {
  font-family: var(--display);
  font-size: 38px;
  display: block;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}
.testimonials__strip span {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 6px;
  display: block;
}

/* ─── FOR WHOM ───────────────────────────────────────────────────── */
.forwhom {
  background: var(--green);
  color: var(--ink);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.forwhom__head { text-align: center; margin-bottom: 56px; position: relative; }
.forwhom__head h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 52px);
  margin-top: 24px;
}
.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.forwhom__card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s;
}
.forwhom__card:nth-child(1) { transform: rotate(-1.5deg); }
.forwhom__card:nth-child(2) { transform: rotate(1deg); background: var(--cream); }
.forwhom__card:nth-child(3) { transform: rotate(-1deg); }
.forwhom__card:nth-child(4) { transform: rotate(1.5deg); background: var(--cream); }
.forwhom__card:nth-child(5) { transform: rotate(-1deg); }
.forwhom__card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 8px 8px 0 var(--ink);
}
.forwhom__i {
  font-size: 48px;
  margin-bottom: 14px;
  line-height: 1;
  display: inline-block;
  animation: bounceLight 3s ease-in-out infinite;
}
.forwhom__card h4 {
  font-family: var(--display);
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
}
.forwhom__card p {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

/* ─── BONUSES ────────────────────────────────────────────────────── */
.bonuses { padding: 110px 0; position: relative; }
.bonuses__head { text-align: center; margin-bottom: 48px; }
.bonuses__head h2 {
  font-size: clamp(38px, 5vw, 58px);
  margin-top: 22px;
}
.bonuses__head p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
}
.bonuses__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}
.bonus {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  gap: 24px;
  align-items: center;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s;
}
.bonus:nth-child(1) { transform: rotate(-0.6deg); box-shadow: 5px 5px 0 var(--yellow); }
.bonus:nth-child(2) { transform: rotate(0.6deg); box-shadow: 5px 5px 0 var(--pink); }
.bonus:nth-child(3) { transform: rotate(-0.4deg); box-shadow: 5px 5px 0 var(--blue); }
.bonus:nth-child(4) { transform: rotate(0.4deg); box-shadow: 5px 5px 0 var(--green); }
.bonus:nth-child(5) { transform: rotate(-0.6deg); box-shadow: 5px 5px 0 var(--orange); }
.bonus:hover { transform: rotate(0) translateX(6px); }
.bonus__num {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 16px 8px;
  border-radius: 12px;
  border: 3px solid var(--ink);
}
.bonus__body h4 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 400;
}
.bonus__body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}
.bonus__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.bonus__price s {
  font-family: var(--heading);
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 600;
}
.bonus__price b {
  font-family: var(--display);
  color: var(--red);
  font-size: 26px;
  font-weight: 400;
  transform: rotate(-4deg);
  display: inline-block;
}

.bonuses__total {
  margin: 36px auto 0;
  max-width: 940px;
  background: var(--ink);
  color: var(--paper);
  padding: 24px 28px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
}
.bonuses__total b {
  font-family: var(--display);
  font-size: 30px;
  color: var(--yellow);
  font-weight: 400;
}
.bonuses__total s { opacity: 0.5; margin-right: 8px; }

/* ─── PRICING ────────────────────────────────────────────────────── */
.pricing {
  padding: 110px 0;
  background:
    linear-gradient(180deg, transparent 0, var(--cream-warm) 50%, transparent 100%);
}
.pricing__head { text-align: center; margin-bottom: 64px; }
.pricing__head h2 {
  font-size: clamp(38px, 5vw, 60px);
  margin-top: 22px;
}
.pricing__plans {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.pricing__single {
  max-width: 560px;
  margin: 0 auto;
}
.pricing__single .plan--complete { transform: none; }
.plan__hotmart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}
.plan__hotmart b { color: var(--ink); }
.plan__hotmart-lock { font-size: 15px; }
.plan__preview {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.plan {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
}
.plan--basic { margin-top: 40px; transform: rotate(-1deg); }
.plan__label {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.plan__sub {
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.plan__price {
  font-family: var(--display);
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  color: var(--ink);
  margin: 20px 0;
}
.plan__cur { font-size: 32px; margin-top: 16px; opacity: 0.7; }
.plan__val { font-size: 96px; letter-spacing: -0.04em; }
.plan__dec { font-size: 36px; margin-top: 14px; opacity: 0.7; }
.plan__price--big .plan__val {
  font-size: 120px;
  color: var(--red);
  -webkit-text-stroke: 3px var(--ink);
}
.plan__price--big .plan__cur, .plan__price--big .plan__dec { color: var(--red); opacity: 0.85; }

.plan__feats { list-style: none; padding: 0; margin: 0 0 26px; }
.plan__feats li {
  padding: 9px 0;
  border-bottom: 2px dashed rgba(42,26,62,0.15);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-family: var(--heading);
}
.plan__feats li::before { content: "•"; color: var(--ink-mute); font-size: 18px; line-height: 1; }
.plan__feats--complete li::before {
  content: "✓";
  color: var(--green-d);
  font-weight: 900;
  background: var(--green);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.plan__feats li:last-child { border-bottom: none; }
.plan__feats b { color: var(--ink); font-weight: 800; }

.plan--complete {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(0.5deg);
}
.plan__ribbon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: 100px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  white-space: nowrap;
}
.plan__hero {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 22px;
  max-width: 220px;
}
.plan__hero img { display: block; width: 100%; height: auto; border-radius: 6px; }
.plan__valuesheet {
  background: var(--paper);
  border: 3px dashed var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 10px 0 16px;
}
.plan__valuesheet > div {
  display: flex;
  justify-content: space-between;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  color: var(--ink-soft);
}
.plan__valuesheet b { color: var(--ink); font-family: var(--display); font-size: 18px; font-weight: 400; }
.plan__valuesheet-today {
  border-top: 2px solid var(--ink);
  padding-top: 10px !important;
  margin-top: 6px;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red) !important;
  justify-content: center !important;
}
.plan__installments {
  text-align: center;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.plan__installments b { color: var(--ink); }
.plan__assure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.pricing__verdict {
  text-align: center;
  margin-top: 56px;
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  transform: rotate(-1deg);
}
.pricing__verdict b { color: var(--red); }

/* ─── GUARANTEE ──────────────────────────────────────────────────── */
.guarantee {
  background: var(--green);
  color: var(--ink);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.guarantee__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
}
.seal {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  transform: rotate(-10deg);
  animation: bounce 3s ease-in-out infinite;
}
.seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px dashed var(--ink);
  border-radius: 50%;
}
.seal__inner {
  text-align: center;
  color: var(--ink);
}
.seal__top, .seal__bottom {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.seal__num {
  font-family: var(--display);
  font-size: 70px;
  font-weight: 400;
  line-height: 0.9;
  margin: 4px 0;
  color: var(--red);
  -webkit-text-stroke: 3px var(--ink);
}
.guarantee__text h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 54px);
  margin-top: 18px;
  margin-bottom: 18px;
}
.guarantee__text h2 em { color: var(--red); }
.guarantee__text p {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 14px;
  max-width: 620px;
  line-height: 1.55;
  color: var(--ink);
}
.guarantee__text p b { color: var(--red); }
.guarantee__signature {
  margin-top: 22px !important;
  font-family: var(--display) !important;
  font-style: italic;
  font-size: 18px !important;
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq { padding: 110px 0; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 22px;
}
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
}
.faq__item:nth-child(odd) { background: var(--cream); }
.faq__q {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.005em;
}
.faq__q:hover { color: var(--red); }
.faq__icon {
  font-family: var(--display);
  font-size: 32px;
  color: var(--paper);
  background: var(--red);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  flex-shrink: 0;
  line-height: 0.9;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__item.is-open .faq__a { max-height: 400px; padding: 0 24px 22px; }
.faq__a p {
  margin: 0;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── FINAL CTA ──────────────────────────────────────────────────── */
.finalcta {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1.5px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.finalcta__inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.finalcta__art {
  background: var(--paper);
  padding: 22px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  transform: rotate(-3deg);
  box-shadow: 10px 10px 0 var(--yellow);
}
.finalcta__timer {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 18px 0 24px;
}
.finalcta__timer > div {
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  min-width: 90px;
}
.finalcta__timer b {
  font-family: var(--display);
  font-size: 44px;
  display: block;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
.finalcta__timer span {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.finalcta__sep {
  font-family: var(--display);
  font-size: 38px;
  color: var(--yellow);
  background: none !important;
  border: none !important;
  padding: 0 !important;
  min-width: 0 !important;
  box-shadow: none !important;
}
.finalcta__body h2 {
  color: var(--paper);
  font-size: clamp(36px, 5vw, 58px);
  margin: 22px 0 18px;
}
.finalcta__body h2 em { color: var(--yellow); }
.finalcta__body p {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 500;
  opacity: 0.85;
  margin: 0 0 28px;
  max-width: 600px;
}
.finalcta__body p b { color: var(--yellow); }
.finalcta__body p s { color: var(--red); opacity: 0.7; }
.finalcta__assure {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 24px;
  border-top: 4px solid var(--yellow);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 12px;
}
.footer__logo-pix {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 30px;
  height: 30px;
  gap: 1px;
  border: 2px solid var(--paper);
  padding: 1px;
  border-radius: 4px;
}
.footer__logo-pix i { display: block; }
.footer__brand p {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  margin: 0;
  max-width: 360px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__cols h6 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin: 0 0 10px;
  font-weight: 400;
}
.footer__cols p {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  opacity: 0.85;
}
.footer__legal {
  padding-top: 24px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
  line-height: 1.6;
  text-align: center;
}

/* ─── LIVE NOTIFICATIONS ─────────────────────────────────────────── */
.livenotif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 14px 38px 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 6px 6px 0 var(--ink);
  z-index: 100;
  max-width: 320px;
  animation: notifIn 0.4s ease;
  transform: rotate(-1.5deg);
}
@keyframes notifIn {
  from { transform: translateX(-120%) rotate(-1.5deg); opacity: 0; }
  to { transform: translateX(0) rotate(-1.5deg); opacity: 1; }
}
.livenotif__pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 0 var(--green);
  animation: pulse 1.4s infinite;
  flex-shrink: 0;
}
.livenotif__body {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}
.livenotif__body b { font-weight: 800; }
.livenotif__body i { font-style: normal; color: var(--ink-soft); }
.livenotif__body span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 2px;
}
.livenotif__time {
  font-size: 11px !important;
  color: var(--ink-mute) !important;
  margin-top: 4px !important;
  letter-spacing: 0.04em;
}
.livenotif__x {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: var(--ink-mute);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-family: var(--display);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .hero__inner { gap: 32px; }
  .hero__sticker { width: 108px; height: 108px; right: 2%; top: -6px; }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .solution__steps { grid-template-columns: 1fr; }
  .step__arrow { transform: rotate(90deg); text-align: center; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .catalog__cats { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__strip { grid-template-columns: repeat(2, 1fr); }
  .forwhom__grid { grid-template-columns: repeat(2, 1fr); }
  .bonus { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .bonus__price { align-items: center; }
  .pricing__plans { grid-template-columns: 1fr; }
  .plan--basic { margin-top: 0; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee__text p { margin-left: auto; margin-right: auto; }
  .finalcta__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container, .hero__inner { padding: 0 18px; }
  .hero { padding: 30px 0 60px; }
  .hero__sticker { width: 96px; height: 96px; top: -10px; right: -10px; }
  .sticker__big { font-size: 24px; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .problem__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .catalog__grid { grid-template-columns: 1fr; }
  .forwhom__grid { grid-template-columns: 1fr; }
  .finalcta__timer { flex-wrap: wrap; justify-content: center; }
  .finalcta__timer > div { min-width: 72px; }
  .testimonials__strip { grid-template-columns: 1fr; }
  .topbar { gap: 10px; font-size: 12px; }
  .topbar__price { display: none; }
  .livenotif { bottom: 12px; left: 12px; right: 12px; max-width: none; }
  .btn--big { font-size: 18px; padding: 18px 24px; }
}

/* Spanish landing cleanup */
body.lang-es .hero__sticker,
body.lang-es .hero__deco,
body.lang-es .livenotif,
body.lang-es .solution::after,
body.lang-es .testimonials::before,
body.lang-es .testimonials::after {
  display: none !important;
}

body.lang-es,
body.lang-de {
  background-image: none;
}

body.lang-es .hero__capa-img,
body.lang-es .btn--big,
body.lang-es .eyebrow,
body.lang-es .hero__kicker,
body.lang-es .problem__card,
body.lang-es .step,
body.lang-es .masterpiece,
body.lang-es .testimonial,
body.lang-es .forwhom__card,
body.lang-es .bonus,
body.lang-es .seal,
body.lang-es .finalcta__art {
  animation: none !important;
}

body.lang-es .eyebrow,
body.lang-es .hero__kicker,
body.lang-es .problem__card,
body.lang-es .step,
body.lang-es .masterpiece,
body.lang-es .testimonial,
body.lang-es .forwhom__card,
body.lang-es .bonus,
body.lang-es .finalcta__art {
  transform: none !important;
}

body.lang-es h1 em::after,
body.lang-es h2 em::after {
  bottom: -4px;
  height: 5px;
  opacity: 0.75;
}

body.lang-es .hero__capa {
  max-width: 1040px;
}

body.lang-es .hero__capa-img {
  filter: drop-shadow(0 24px 42px rgba(42, 26, 62, 0.16));
}

body.lang-es .problem__grid,
body.lang-es .benefits__grid,
body.lang-es .forwhom__grid {
  align-items: stretch;
}

body.lang-es .cat {
  gap: 0;
}

@media (max-width: 980px) {
  body.lang-es .hero {
    padding: 34px 0 66px;
  }
  body.lang-es .hero__h {
    font-size: clamp(36px, 8vw, 58px);
    line-height: 1;
  }
  body.lang-es .hero__capa {
    margin-top: 0;
    max-width: 820px;
  }
  body.lang-es .hero__lead {
    font-size: 18px;
  }
  body.lang-es .solution__steps,
  body.lang-es .problem__grid,
  body.lang-es .benefits__grid,
  body.lang-es .forwhom__grid,
  body.lang-es .testimonials__strip {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  body.lang-es .topbar {
    padding: 10px 12px;
    gap: 8px;
  }
  body.lang-es .topbar__label {
    width: 100%;
    text-align: center;
  }
  body.lang-es .topbar__time b {
    min-width: 26px;
    padding: 2px 7px;
  }
  body.lang-es .hero__inner {
    gap: 20px;
  }
  body.lang-es .hero__kicker {
    margin-bottom: 16px;
    max-width: 100%;
    justify-content: center;
  }
  body.lang-es .hero__h {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.03;
    margin-bottom: 14px;
  }
  body.lang-es .hero__h-sub {
    font-size: 0.42em;
  }
  body.lang-es .hero__capa {
    width: calc(100% + 22px);
    margin-left: -11px;
    margin-right: -11px;
  }
  body.lang-es .hero__lead {
    font-size: 17px;
    line-height: 1.45;
  }
  body.lang-es .hero__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.lang-es .btn--big {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 18px;
  }
  body.lang-es .section,
  body.lang-es .problem,
  body.lang-es .solution,
  body.lang-es .catalog,
  body.lang-es .benefits,
  body.lang-es .testimonials,
  body.lang-es .forwhom,
  body.lang-es .bonuses,
  body.lang-es .pricing,
  body.lang-es .guarantee,
  body.lang-es .faq,
  body.lang-es .finalcta {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  body.lang-es .finalcta__art {
    display: none;
  }
}

/* German landing cleanup */
body.lang-de .hero__sticker,
body.lang-de .hero__deco,
body.lang-de .livenotif,
body.lang-de .solution::after,
body.lang-de .testimonials::before,
body.lang-de .testimonials::after {
  display: none !important;
}

body.lang-de .hero__capa-img,
body.lang-de .btn--big,
body.lang-de .eyebrow,
body.lang-de .hero__kicker,
body.lang-de .problem__card,
body.lang-de .step,
body.lang-de .masterpiece,
body.lang-de .testimonial,
body.lang-de .forwhom__card,
body.lang-de .bonus,
body.lang-de .seal,
body.lang-de .finalcta__art {
  animation: none !important;
}

body.lang-de .eyebrow,
body.lang-de .hero__kicker,
body.lang-de .problem__card,
body.lang-de .step,
body.lang-de .masterpiece,
body.lang-de .testimonial,
body.lang-de .forwhom__card,
body.lang-de .bonus,
body.lang-de .finalcta__art {
  transform: none !important;
}

body.lang-de h1 em::after,
body.lang-de h2 em::after {
  bottom: -4px;
  height: 5px;
  opacity: 0.75;
}

body.lang-de .hero__capa {
  max-width: 1040px;
}

body.lang-de .hero__capa-img {
  filter: drop-shadow(0 24px 42px rgba(42, 26, 62, 0.16));
}

body.lang-de .problem__grid,
body.lang-de .benefits__grid,
body.lang-de .forwhom__grid {
  align-items: stretch;
}

body.lang-de .cat {
  gap: 0;
}

@media (max-width: 980px) {
  body.lang-de .hero {
    padding: 34px 0 66px;
  }
  body.lang-de .hero__h {
    font-size: clamp(36px, 8vw, 58px);
    line-height: 1;
  }
  body.lang-de .hero__capa {
    margin-top: 0;
    max-width: 820px;
  }
  body.lang-de .hero__lead {
    font-size: 18px;
  }
  body.lang-de .solution__steps,
  body.lang-de .problem__grid,
  body.lang-de .benefits__grid,
  body.lang-de .forwhom__grid,
  body.lang-de .testimonials__strip {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  body.lang-de .topbar {
    padding: 10px 12px;
    gap: 8px;
  }
  body.lang-de .topbar__label {
    width: 100%;
    text-align: center;
  }
  body.lang-de .topbar__time b {
    min-width: 26px;
    padding: 2px 7px;
  }
  body.lang-de .hero__inner {
    gap: 20px;
  }
  body.lang-de .hero__kicker {
    margin-bottom: 16px;
    max-width: 100%;
    justify-content: center;
  }
  body.lang-de .hero__h {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.03;
    margin-bottom: 14px;
  }
  body.lang-de .hero__h-sub {
    font-size: 0.42em;
  }
  body.lang-de .hero__capa {
    width: calc(100% + 22px);
    margin-left: -11px;
    margin-right: -11px;
  }
  body.lang-de .hero__lead {
    font-size: 17px;
    line-height: 1.45;
  }
  body.lang-de .hero__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.lang-de .btn--big {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 18px;
  }
  body.lang-de .section,
  body.lang-de .problem,
  body.lang-de .solution,
  body.lang-de .catalog,
  body.lang-de .benefits,
  body.lang-de .testimonials,
  body.lang-de .forwhom,
  body.lang-de .bonuses,
  body.lang-de .pricing,
  body.lang-de .guarantee,
  body.lang-de .faq,
  body.lang-de .finalcta {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  body.lang-de .finalcta__art {
    display: none;
  }
}
