/* ============================================================
   Builders Tripwire LP — page styles
   Uses tokens from ds/colors_and_type.css
   Mobile-first; desktop overrides where needed.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--fg-body);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ---------- Container & section scaffolds ---------- */
.lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.lp-section {
  padding: 64px 0;
  background: var(--white);
  position: relative;
}
.lp-section--cream { background: var(--cream); }
.lp-section--dark  { background: var(--grad-signature); color: var(--fg-on-dark); }

@media (min-width: 768px) { .lp-section { padding: 96px 0; } }
@media (min-width: 1024px) { .lp-section { padding: 120px 0; } .lp-container { padding: 0 24px; } }

/* ---------- Typography helpers (compose on tokens) ---------- */
.lp-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--bordeaux);
  margin: 0;
}
.lp-eyebrow--ondark { color: #e8a8b0; }
.lp-eyebrow--muted { color: var(--gray); }

.lp-display {
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.lp-display em { font-style: normal; color: var(--bordeaux); }

.lp-h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.lp-h2--ondark { color: var(--fg-on-dark); }
.lp-h2 em { font-style: normal; color: var(--bordeaux); }

.lp-h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h3);
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.lp-h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: var(--fg);
  margin: 0;
}
.lp-lead {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--fg-body);
  margin: 0;
  text-wrap: pretty;
}
.lp-body { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--fg-body); margin: 0; }
.lp-fine { font-size: var(--fs-small); color: var(--fg-muted); margin: 0; }
.lp-center { text-align: center; }
.lp-maxw-640 { max-width: 640px; }
.lp-maxw-720 { max-width: 720px; }
.lp-maxw-840 { max-width: 840px; }
.lp-mxauto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: 17px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  color: var(--white);
  background: var(--bordeaux);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: transform .18s ease-out, box-shadow .18s ease-out, background-color .18s ease-out;
  min-height: 48px;
}
.lp-btn:focus-visible { outline: 3px solid rgba(104,24,34,.35); outline-offset: 2px; }
.lp-btn--primary {
  background: linear-gradient(180deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  box-shadow: var(--sh-cta);
}
.lp-btn--primary:hover { box-shadow: var(--sh-cta-hover); }
.lp-btn--primary:active { box-shadow: var(--sh-cta); }
.lp-btn--lg { padding: 20px 40px; font-size: 19px; min-height: 56px; }
.lp-btn--sm { padding: 11px 20px; font-size: 14px; min-height: 44px; }
.lp-btn--full { width: 100%; }
.lp-btn--invert {
  background: var(--white);
  color: var(--bordeaux);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.lp-btn--invert:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.25); background: #fff; }

/* Sticky-attention pulse for primary CTAs that need to grab the eye */
.lp-cta-pulse {
  position: relative;
  animation: lp-ctaPulse 2.4s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.lp-cta-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(104,24,34,0.55);
  animation: lp-ctaRing 2.4s ease-out infinite;
}
.lp-cta-pulse:hover { animation-play-state: paused; }
.lp-cta-pulse:hover::after { animation-play-state: paused; opacity: 0; }
@keyframes lp-ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: var(--sh-cta); }
  50%      { transform: scale(1.025); box-shadow: var(--sh-cta-hover); }
}
@keyframes lp-ctaRing {
  0%   { box-shadow: 0 0 0 0 rgba(104,24,34,0.45); opacity: 0.9; }
  70%  { box-shadow: 0 0 0 18px rgba(104,24,34,0); opacity: 0; }
  100% { box-shadow: 0 0 0 0 rgba(104,24,34,0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-cta-pulse, .lp-cta-pulse::after { animation: none; }
}
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transform: translateY(-100%);
  transition:
    transform .35s ease-out,
    background-color .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
  pointer-events: none;
}
.lp-header.is-scrolled {
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--gray-light);
}
.lp-header__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  height: 72px;
}
@media (min-width: 768px) {
  .lp-header__inner { padding: 0 24px; height: 84px; }
}

/* Logo — appears with the header once scrolled */
.lp-header__logo {
  position: absolute;
  left: 16px;
  top: 50%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}
.lp-header__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.lp-header__logo .lp-logo--dark  { display: block; }
.lp-header__logo .lp-logo--light { display: none; }
@media (min-width: 768px) {
  .lp-header__logo { left: 24px; }
  .lp-header__logo img { height: 40px; }
}

/* CTA — visible whenever the header is */
.lp-header__cta {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  padding: 12px 22px;
  min-height: 44px;
}
@media (min-width: 768px) { .lp-header__cta { right: 24px; font-size: 16px; padding: 14px 26px; min-height: 48px; } }

/* Pulse animation override for the header CTA so vertical centering is preserved */
.lp-header__cta.lp-cta-pulse { animation: lp-ctaPulseHeader 2.4s ease-in-out infinite; }
@keyframes lp-ctaPulseHeader {
  0%, 100% { transform: translateY(-50%) scale(1);     box-shadow: var(--sh-cta); }
  50%      { transform: translateY(-50%) scale(1.025); box-shadow: var(--sh-cta-hover); }
}
.lp-header__cta.lp-cta-pulse:hover { transform: translateY(-50%) scale(1); }
.lp-cta-long  { display: inline; }
.lp-cta-short { display: none; }
@media (max-width: 480px) {
  .lp-header__cta { font-size: 12px; padding: 9px 14px; min-height: 40px; }
  .lp-cta-long  { display: none; }
  .lp-cta-short { display: inline; }
}

/* ---------- Hero (Sec 1) ---------- */
.lp-hero { padding: 56px 0 40px; background: var(--cream); }
@media (min-width: 768px) { .lp-hero { padding: 80px 0 56px; } }
@media (min-width: 1024px) { .lp-hero { padding: 96px 0 64px; } }
.lp-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.lp-hero__eyebrow { margin-bottom: 4px; }
.lp-hero__h1 {
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: var(--fw-black);
  color: var(--dark);
  margin: 0;
  text-wrap: balance;
}
.lp-hero__h1 em { font-style: normal; color: var(--bordeaux); }
.lp-hero__sub { max-width: 640px; }
.lp-hero__video {
  width: 100%;
  max-width: 880px;
  margin-top: 16px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--dark);
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
  display: block;
  border: none;
  padding: 0;
}
.lp-hero__video-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  overflow: hidden;
}
.lp-hero__video-thumb::before {
  /* atmospheric warm light */
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(104,24,34,0.25), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(245,210,160,0.10), transparent 60%);
}
.lp-hero__video-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mix-blend-mode: overlay;
}
.lp-hero__video-cap {
  position:absolute; left: 20px; bottom: 20px;
  color: rgba(245,245,245,0.85);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.lp-hero__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--bordeaux);
  box-shadow: 0 12px 40px rgba(104,24,34,0.55), 0 0 0 12px rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-hero__video:hover .lp-hero__play { transform: translate(-50%, -50%) scale(1.06); }
.lp-hero__play svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
@media (min-width: 768px) {
  .lp-hero__play { width: 88px; height: 88px; }
  .lp-hero__play svg { width: 34px; height: 34px; }
}
.lp-hero__video-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.lp-hero__cta { margin-top: 8px; }
.lp-hero__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .lp-hero__proof { flex-direction: row; gap: 16px; }
}
.lp-hero__proof-avatars { display: flex; align-items: center; }
.lp-hero__proof-avatars > * {
  width: 44px; height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 2.5px solid var(--cream);
  background: var(--cream);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  margin-left: -12px;
}
.lp-hero__proof-avatars > *:first-child { margin-left: 0; }
.lp-hero__proof-avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-hero__proof-text { text-align: center; }
@media (min-width: 480px) { .lp-hero__proof-text { text-align: left; } }
.lp-hero__proof-count {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--dark);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.lp-hero__proof-count b { font-weight: var(--fw-black); }
.lp-hero__proof-sub { font-size: 13px; color: var(--gray); line-height: 1.3; }

/* ---------- Benefits strip (bordeaux gradient, 3 items) ---------- */
.lp-benefits {
  background: var(--cream);
  padding: 0 0 56px;
}
@media (min-width: 768px) { .lp-benefits { padding: 0 0 80px; } }
@media (min-width: 1024px) { .lp-benefits { padding: 0 0 96px; } }
.lp-benefits__bar {
  background: var(--grad-signature);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: var(--fg-on-dark);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.lp-benefits__bar::before {
  /* subtle bordeaux glow accent in corner */
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(138,42,54,0.4), transparent 60%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-benefits__bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 32px;
  }
}
@media (min-width: 1024px) {
  .lp-benefits__bar { padding: 48px 56px; gap: 48px; }
}
.lp-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: relative;
  padding: 20px 12px;
  min-height: 96px;
}
/* Mobile: hairline divider between rows */
.lp-benefits__item + .lp-benefits__item {
  border-top: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 768px) {
  .lp-benefits__item {
    flex-direction: row;
    text-align: left;
    padding: 0;
    min-height: 60px;
    gap: 18px;
    justify-content: center;
  }
  .lp-benefits__item + .lp-benefits__item { border-top: none; }
  .lp-benefits__item + .lp-benefits__item::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255,255,255,0.12);
  }
}
@media (min-width: 1024px) {
  .lp-benefits__item + .lp-benefits__item::before { left: -24px; }
}
.lp-benefits__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.lp-benefits__icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
@media (min-width: 768px) {
  .lp-benefits__icon { width: 60px; height: 60px; border-width: 1.5px; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
  .lp-benefits__icon svg { width: 26px; height: 26px; }
}
.lp-benefits__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; align-items: center; }
@media (min-width: 768px) { .lp-benefits__text { align-items: flex-start; } }
.lp-benefits__title {
  font-weight: var(--fw-bold);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .lp-benefits__title { font-size: 18px; color: var(--cream); line-height: 1.15; }
}
.lp-benefits__sub {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.62);
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.005em;
}
@media (min-width: 768px) { .lp-benefits__sub { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.72); } }

/* ---------- Section head ---------- */
.lp-sectionHead {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .lp-sectionHead { margin-bottom: 72px; } }

/* ---------- Problem grid (Sec 2) ---------- */
.lp-problemGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) { .lp-problemGrid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.lp-problemCard {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lp-problemCard:hover {
  border-color: rgba(26,26,26,0.6);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.lp-problemCard__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-problemCard__num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--bordeaux);
  text-transform: uppercase;
}

/* ---------- Problem visuals (mini brand-color mock UIs) ---------- */
.lp-pcVisual {
  position: relative;
  height: 180px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 900px) { .lp-pcVisual { height: 200px; padding: 22px 24px; } }
.lp-pcVisual::after {
  /* faint inner top highlight for an Apple-card feel */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent 35%);
  pointer-events: none;
  z-index: 0;
}
.lp-pcVisual > * { position: relative; z-index: 1; }

/* Brand logo badge in the visual corner (Google · WhatsApp · Bazoš) */
.lp-pcLogo {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}
@media (min-width: 900px) { .lp-pcLogo { width: 32px; height: 32px; top: 14px; right: 14px; padding: 6px; } }

/* --- Visual 1: Google/Facebook ads (blue/multi-color search + Ad badges) --- */
.lp-pcVisual--google {
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(66,133,244,0.10), transparent 60%),
    linear-gradient(180deg, #f3f6fc 0%, #ffffff 100%);
}
.lp-pcGoogle__bar {
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 6px rgba(60,64,67,0.10);
  font-size: 12px;
  color: #3c4043;
}
.lp-pcGoogle__bar svg { width: 14px; height: 14px; color: #5f6368; flex-shrink: 0; }
.lp-pcGoogle__q { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -0.005em; }
.lp-pcGoogle__dots { display: flex; gap: 4px; flex-shrink: 0; }
.lp-pcGoogle__dots i { width: 6px; height: 6px; border-radius: 999px; display: block; }
.lp-pcGoogle__ads { display: flex; flex-direction: column; gap: 6px; }
.lp-pcGoogle__ad {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  line-height: 1.2;
  color: #1f1f1f;
}
.lp-pcGoogle__adTag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #92400e;
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.lp-pcGoogle__adText {
  color: #1a73e8;
  text-decoration: underline;
  text-decoration-color: rgba(26,115,232,0.35);
  text-underline-offset: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.lp-pcGoogle__burn {
  position: absolute;
  right: 18px; bottom: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--bordeaux);
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.7);
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.lp-pcGoogle__burn span { color: var(--gray); font-weight: 600; }

/* --- Visual 2: Word of mouth / WhatsApp ghost --- */
.lp-pcVisual--chat {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(37,211,102,0.12), transparent 60%),
    linear-gradient(180deg, #f0f8f2 0%, #ffffff 100%);
  align-items: flex-end;
}
.lp-pcChat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}
.lp-pcChat__msg {
  font-size: 11.5px;
  line-height: 1.35;
  background: #dcf8c6;
  color: #1f2a1f;
  padding: 7px 10px 5px;
  border-radius: 10px 10px 2px 10px;
  max-width: 82%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.lp-pcChat__time {
  display: block;
  font-size: 9px;
  color: #5a7960;
  text-align: right;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.lp-pcChat__time b { color: #6aa56e; font-weight: 700; letter-spacing: 0; }
.lp-pcChat__wait {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-style: italic;
  color: var(--gray);
  background: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  margin-top: 2px;
}
.lp-pcChat__wait i {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--gray);
  display: inline-block;
  opacity: 0.55;
}

/* --- Visual 3: Bazoš listing (yellow strip, price collapse) --- */
.lp-pcVisual--bazos {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,206,0,0.20), transparent 60%),
    linear-gradient(180deg, #fffaeb 0%, #ffffff 100%);
  padding: 18px 20px;
}
.lp-pcBazos {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.lp-pcBazos__head {
  background: linear-gradient(90deg, #ffce00 0%, #ffb800 100%);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #1a1a1a;
}
.lp-pcBazos__head strong { font-weight: 900; letter-spacing: 0.04em; }
.lp-pcBazos__head span { opacity: 0.65; }
.lp-pcBazos__head em {
  margin-left: auto;
  font-style: normal;
  font-weight: 600;
  opacity: 0.7;
}
.lp-pcBazos__row { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.lp-pcBazos__title { font-size: 12px; font-weight: 600; color: var(--dark); line-height: 1.25; }
.lp-pcBazos__prices { display: flex; align-items: baseline; gap: 6px; font-size: 12px; flex-wrap: wrap; }
.lp-pcBazos__strike { text-decoration: line-through; color: var(--gray); font-weight: 500; }
.lp-pcBazos__new { color: var(--bordeaux); font-weight: 800; }
.lp-pcBazos__arrow { color: var(--gray); font-weight: 700; font-size: 11px; }
.lp-bridge {
  margin-top: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--dark);
  text-wrap: balance;
}
@media (min-width: 768px) { .lp-bridge { margin-top: 64px; } }

/* ---------- 4th path — mysterious teaser card ---------- */
.lp-fourth {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  margin: 20px auto 0;
  max-width: none;
  width: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(138,42,54,0.45), transparent 65%),
    linear-gradient(135deg, #2a1218 0%, #1a1a1a 60%, #251015 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--fg-on-dark);
  text-decoration: none;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 30px 70px rgba(104,24,34,0.30),
    0 8px 20px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .lp-fourth { grid-template-columns: 1fr 1.2fr; margin-top: 24px; }
}
.lp-fourth:hover {
  transform: translateY(-3px);
  box-shadow:
    0 38px 90px rgba(104,24,34,0.42),
    0 12px 28px rgba(0,0,0,0.28);
}
.lp-fourth:focus-visible {
  outline: 3px solid rgba(232,168,176,0.6);
  outline-offset: 3px;
}

/* Left — mysterious visual side */
.lp-fourth__visual {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) { .lp-fourth__visual { min-height: 340px; } }

/* Futuristic radar visual — replaces the blurred image */
.lp-fourth__radar {
  position: absolute;
  width: 84%;
  max-width: 320px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 30px rgba(232,168,176,0.25));
}
.lp-fourth__ping {
  transform-origin: 156px 158px;
  animation: lp-fourthPing 2.2s ease-out infinite;
}
@keyframes lp-fourthPing {
  0%   { transform: scale(0.6); opacity: 1; }
  60%  { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.6); opacity: 1; }
}
.lp-fourth__sweep {
  transform-origin: 120px 120px;
  animation: lp-fourthSweep 4.5s linear infinite;
}
@keyframes lp-fourthSweep {
  to { transform: rotate(360deg); }
}

/* Monospace coordinate strip — adds futuristic instrument feel */
.lp-fourth__coord {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,168,176,0.78);
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(232,168,176,0.22);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  white-space: nowrap;
}
.lp-fourth__coordDot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #ffb8c0;
  box-shadow: 0 0 8px rgba(255,184,192,0.6);
  animation: lp-pulseDot 1.6s ease-in-out infinite;
}
.lp-fourth:hover .lp-fourth__tease {
  filter: blur(7px) saturate(1.1) brightness(1.05) contrast(1.05);
  transform: scale(1.02);
}
.lp-fourth__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.lp-fourth__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.05) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 1.2s ease;
  pointer-events: none;
}
.lp-fourth:hover .lp-fourth__sheen { transform: translateX(100%); }

.lp-fourth__locked {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(232,168,176,0.22);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(232,168,176,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  white-space: nowrap;
}
.lp-fourth__locked svg { width: 14px; height: 14px; }

/* Right — copy + CTA */
.lp-fourth__body {
  position: relative;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
@media (min-width: 768px) {
  .lp-fourth__body { padding: 40px 36px; gap: 16px; }
}
.lp-fourth__body .lp-eyebrow {
  color: rgba(232,168,176,0.92);
  align-self: flex-start;
}

.lp-fourth__h {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: var(--fw-black);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
  margin: 0;
}
.lp-fourth__h em {
  font-style: normal;
  color: #ffb8c0;
}
.lp-fourth__p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,245,245,0.78);
  margin: 0;
  text-wrap: pretty;
}
.lp-fourth__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.lp-fourth:hover .lp-fourth__cta {
  color: #ffb8c0;
  border-color: #ffb8c0;
  gap: 16px;
}
.lp-fourth__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--bordeaux);
  color: #fff;
  transition: transform .25s ease;
}
.lp-fourth:hover .lp-fourth__arrow {
  transform: translateY(3px);
}
.lp-fourth__arrow svg { width: 14px; height: 14px; }

/* ---------- Solution / Models (Sec 3) ---------- */
.lp-modelGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) { .lp-modelGrid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lp-modelCard {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-modelCard:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: rgba(26,26,26,0.5);
}
.lp-modelCard__body {
  padding: 24px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-modelCard__num {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bordeaux);
  margin: 0 0 2px;
}
@media (min-width: 768px) { .lp-modelCard__num { font-size: 64px; } }

/* ---------- Model visuals (mini mock UIs) ---------- */
.lp-mcVisual {
  position: relative;
  height: 200px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 900px) { .lp-mcVisual { height: 200px; padding: 22px 24px; } }
.lp-mcVisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 38%);
  pointer-events: none;
  z-index: 0;
}
.lp-mcVisual > * { position: relative; z-index: 1; }

/* --- Visual 1: Profesia.sk listing with "Odovzdané vám" handoff --- */
.lp-mcVisual--profesia {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(0,157,223,0.14), transparent 60%),
    linear-gradient(180deg, #eef6fc 0%, #ffffff 100%);
}
.lp-profesia {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.lp-profesia__head {
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.lp-profesia__head strong {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #009DDF;
  font-size: 11px;
}
.lp-profesia__head span { opacity: 0.6; color: #1f1f1f; }
.lp-profesia__head em {
  margin-left: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #007cb0;
  background: #e6f4fa;
  padding: 2px 7px;
  border-radius: 999px;
}
.lp-profesia__list { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 5px; }
.lp-profesia__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 6px 8px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fafbfc;
  line-height: 1.25;
}
.lp-profesia__title {
  color: var(--dark);
  font-weight: 600;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-profesia__item--match {
  background: rgba(104,24,34,0.05);
  border-color: rgba(104,24,34,0.22);
}
.lp-profesia__match {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--bordeaux);
  flex-shrink: 0;
}

/* --- Visual 2: Trade-stack (subcontracting one slice) --- */
.lp-mcVisual--stack {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(104,24,34,0.10), transparent 60%),
    linear-gradient(180deg, #f7f4ed 0%, #ffffff 100%);
}
.lp-stack { display: flex; flex-direction: column; gap: 4px; }
.lp-stack__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 11px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 6px;
  letter-spacing: 0.005em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.lp-stack__row em { font-style: normal; font-size: 9px; opacity: 0.55; font-weight: 600; }
.lp-stack__row--mine {
  background: var(--bordeaux);
  color: #fff;
  border-color: var(--bordeaux);
  box-shadow: 0 4px 12px rgba(104,24,34,0.22);
}
.lp-stack__row--mine em { color: rgba(255,255,255,0.75); opacity: 1; }
.lp-stack__tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.22);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
}

/* --- Visual 3: Year of contracts under one developer (calendar bar) --- */
.lp-mcVisual--year {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(104,24,34,0.10), transparent 70%),
    linear-gradient(180deg, #faf6ef 0%, #ffffff 100%);
  gap: 10px;
}
.lp-year { display: flex; flex-direction: column; gap: 6px; }
.lp-year__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}
.lp-year__head b { color: var(--dark); font-weight: 800; font-size: 11px; letter-spacing: 0.04em; }
.lp-year__head em {
  font-style: normal;
  font-weight: 800;
  color: var(--bordeaux);
  letter-spacing: 0.04em;
  font-size: 11px;
}
.lp-year__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.lp-year__cell {
  height: 22px;
  background: var(--bordeaux);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(104,24,34,0.15);
}
.lp-year__cell--empty { background: #e8e3d8; box-shadow: none; }
.lp-year__labels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  font-size: 8px;
  color: var(--gray);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lp-year__share {
  font-size: 11px;
  color: var(--dark-soft);
  font-weight: 500;
  margin-top: 2px;
  text-align: center;
}
.lp-year__share b { color: var(--bordeaux); font-weight: 800; }

.lp-accentBox {
  margin: 56px auto 0;
  max-width: 680px;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  font-weight: 500;
  box-shadow: var(--sh-cta);
}
.lp-accentBox em { font-style: normal; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .lp-accentBox { padding: 44px 48px; margin-top: 72px; } }

/* ---------- Mentors (Sec 4) ---------- */
.lp-mentors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) { .lp-mentors { grid-template-columns: 1fr 1fr; gap: 40px; } }
.lp-mentor { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.lp-mentor__photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-light);
  background: var(--cream);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-mentor__photo:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.lp-mentor__photo img,
.lp-mentor__photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-mentor__bio { max-width: 380px; }

/* "Foto bude doplnená" overlay — used while a real portrait is pending */
.lp-mentor__photo-coming {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(26,26,26,0.78);
  color: #f5f5f5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ---------- Story author header (Martin · majiteľ) — full-width bordeaux card ---------- */
.lp-story__author {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  background: var(--grad-signature);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  text-align: left;
  overflow: hidden;
  box-shadow:
    0 16px 36px rgba(104,24,34,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  margin-top: 8px;
}
.lp-story__author-photo {
  width: 38%;
  max-width: 240px;
  min-width: 130px;
  flex-shrink: 0;
  position: relative;
  background: var(--dark-soft);
  border-right: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .lp-story__author-photo { width: 36%; min-width: 180px; } }
@media (min-width: 768px) { .lp-story__author-photo { width: 38%; max-width: 280px; } }
.lp-story__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.lp-story__author-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
}
@media (min-width: 640px) { .lp-story__author-meta { padding: 18px 22px; gap: 6px; } }
@media (min-width: 768px) { .lp-story__author-meta { padding: 22px 28px; gap: 8px; } }
.lp-story__author-name {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.15;
  text-wrap: balance;
}
.lp-story__author-role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.78);
}
.lp-story__author-stats {
  list-style: none;
  margin: 6px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) { .lp-story__author-stats { font-size: 13px; gap: 4px 24px; } }
.lp-story__author-stats li {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.3;
}
.lp-story__author-stats b {
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) { .lp-story__author-stats b { font-size: 18px; } }
.lp-story__author-stats span { color: rgba(255,255,255,0.7); }

/* ---------- Story block (Sec 4 dark editorial) ---------- */
.lp-story {
  margin-top: 64px;
  background: var(--dark);
  color: var(--fg-on-dark);
  border-radius: var(--r-lg);
  padding: 40px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
@media (min-width: 640px) { .lp-story { padding: 48px 28px; } }
@media (min-width: 768px) { .lp-story { padding: 72px 56px; margin-top: 96px; } }
@media (min-width: 1024px) { .lp-story { padding: 88px 88px; } }
.lp-story__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) { .lp-story__inner { gap: 56px; } }
.lp-story__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  align-items: center;
}
.lp-story__head h2 { text-wrap: balance; }
.lp-story__head .lp-story__author { text-align: left; align-items: stretch; }
.lp-story__head .lp-story__intro { text-align: center; }
.lp-story__chapter {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-story__chapter:first-of-type {
  border-top: none;
  padding-top: 0;
}
.lp-story__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}
.lp-story__tag-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--bordeaux-light);
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border: 1px solid rgba(232,168,176,0.3);
  border-radius: 999px;
}
.lp-story__tag-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(232,168,176,0.9);
}
.lp-story__quote {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  color: var(--fg-on-dark);
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--bordeaux-light);
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.lp-story__body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,245,245,0.82);
  margin: 0;
  text-wrap: pretty;
}
.lp-story__intro {
  font-size: 13px;
  font-style: italic;
  color: rgba(245,245,245,0.55);
  margin: 0 0 -4px;
}

/* Refined pivot quote — Apple-style callout card */
.lp-story__pivot {
  background: linear-gradient(180deg, var(--bordeaux) 0%, #571320 100%);
  color: #fff;
  padding: 28px 26px;
  border-radius: var(--r-md);
  position: relative;
  box-shadow:
    0 18px 44px rgba(104,24,34,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
@media (min-width: 768px) { .lp-story__pivot { padding: 36px 40px; } }
.lp-story__pivot p {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.lp-story__pivot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.lp-story__pivot-label svg { width: 14px; height: 14px; opacity: 0.85; }

/* Closing "Plný kruh." — dividers + circular icon + accent */
.lp-story__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.lp-story__close-rule {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.lp-story__close-rule i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,168,176,0.4), transparent);
  max-width: 140px;
}
.lp-story__close-icon {
  width: 44px;
  height: 44px;
  color: var(--bordeaux-light);
  flex-shrink: 0;
}
.lp-story__close-text {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: var(--fw-black);
  letter-spacing: -0.035em;
  color: var(--bordeaux-light);
  line-height: 1;
  margin: 0;
  text-align: center;
}
.lp-story__close-sub {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245,245,245,0.45);
  margin: 0;
}

/* ---------- Trajectory chart (embedded in dark story · chapter 03 Dnes) ---------- */
.lp-trajectory {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
}

.lp-trajectory__chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 4px;
  height: 110px;
  padding-bottom: 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) {
  .lp-trajectory__chart { gap: 8px; height: 140px; padding-bottom: 24px; }
}
.lp-trajectory__bar {
  --h: 30%;
  --i: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
}
.lp-trajectory__bar-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #b94557 0%, var(--bordeaux) 55%, #4a1019 100%);
  border-radius: 4px 4px 0 0;
  transition: height 1s cubic-bezier(.4,.0,.2,1);
  transition-delay: calc(var(--i) * 55ms);
}
.lp-trajectory.is-in .lp-trajectory__bar-fill { height: var(--h); }
.lp-trajectory__bar.is-start .lp-trajectory__bar-fill {
  background: rgba(255,255,255,0.14);
}
.lp-trajectory__bar-year {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(245,245,245,0.5);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .lp-trajectory__bar:nth-child(2) .lp-trajectory__bar-year,
  .lp-trajectory__bar:nth-child(4) .lp-trajectory__bar-year,
  .lp-trajectory__bar:nth-child(6) .lp-trajectory__bar-year,
  .lp-trajectory__bar:nth-child(8) .lp-trajectory__bar-year,
  .lp-trajectory__bar:nth-child(10) .lp-trajectory__bar-year { display: none; }
}
.lp-trajectory__bar.is-end .lp-trajectory__bar-fill::after {
  content: "25+";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  pointer-events: none;
}
@media (min-width: 768px) {
  .lp-trajectory__bar.is-end .lp-trajectory__bar-fill::after { font-size: 12px; top: 8px; }
}

.lp-trajectory__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 640px) {
  .lp-trajectory__cards {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
  }
}
.lp-trajectory__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-trajectory__card-year {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(232,168,176,0.75);
}
.lp-trajectory__card strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}
.lp-trajectory__card p {
  font-size: 13px;
  color: rgba(245,245,245,0.7);
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}
.lp-trajectory__card--end {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  box-shadow: 0 8px 20px rgba(104,24,34,0.3);
}
.lp-trajectory__card--end .lp-trajectory__card-year { color: rgba(255,255,255,0.78); }
.lp-trajectory__card--end p { color: rgba(255,255,255,0.88); }

.lp-trajectory__arrow {
  display: none;
  align-self: center;
  font-size: 22px;
  font-weight: 700;
  color: rgba(232,168,176,0.7);
}
@media (min-width: 640px) { .lp-trajectory__arrow { display: block; } }

/* ---------- DEPROSTAV project gallery (real photos · opens lightbox) ---------- */
.lp-deproGallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.lp-deproGallery__intro {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,245,245,0.78);
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}
.lp-deproGallery__intro b { color: #fff; font-weight: 700; }

.lp-deproGallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .lp-deproGallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 4px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .lp-deproGallery__grid::-webkit-scrollbar { display: none; }
  .lp-deproGallery__item {
    scroll-snap-align: start;
    flex: 0 0 78%;
  }
  /* visual hint: first card peeks behind the next so the swipe is obvious */
  .lp-deproGallery__item:first-child { margin-left: 4px; }
}

/* Swipe hint pill — mobile only, dismissable */
.lp-deproGallery__hint {
  display: none;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(232,168,176,0.85);
  background: rgba(232,168,176,0.08);
  border: 1px solid rgba(232,168,176,0.22);
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: -4px;
}
.lp-deproGallery__hint svg {
  width: 14px;
  height: 14px;
  animation: lp-swipeHint 1.8s ease-in-out infinite;
}
@keyframes lp-swipeHint {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@media (max-width: 640px) {
  .lp-deproGallery__hint { display: inline-flex; }
}

.lp-deproGallery__item {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  font-family: inherit;
}
.lp-deproGallery__item--real {
  cursor: pointer;
  display: block;
  text-align: left;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lp-deproGallery__item--real:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.20);
}
.lp-deproGallery__item--real:focus-visible {
  outline: 2px solid var(--bordeaux-light);
  outline-offset: 3px;
}
.lp-deproGallery__item--real::before {
  /* hover affordance: subtle expand icon centre-top */
  content: "";
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(20,20,20,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background-image:
    linear-gradient(45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%);
  background-size: 12px 12px, 12px 12px;
  background-position: 6px 6px, 14px 6px;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .2s ease, transform .2s ease;
}
.lp-deproGallery__item--real:hover::before,
.lp-deproGallery__item--real:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.lp-deproGallery__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.lp-deproGallery__item--real:hover .lp-deproGallery__cover { transform: scale(1.04); }

.lp-deproGallery__item--real::after {
  /* dark overlay so caption is legible */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
  z-index: 1;
}

.lp-deproGallery__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}
.lp-deproGallery__caption strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.lp-deproGallery__caption small {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
}

.lp-deproGallery__count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* pending placeholder cells */
.lp-deproGallery__item--pending {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-deproGallery__pending {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(232,168,176,0.7);
  text-align: center;
  padding: 0 12px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lp-deproGallery__icon {
  width: 26px;
  height: 26px;
  color: rgba(232,168,176,0.55);
}

/* ---------- Video testimonials — coverflow carousel ---------- */
.lp-vtCoverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 0;
  user-select: none;
}
@media (min-width: 768px) { .lp-vtCoverflow { gap: 20px; padding: 16px 0; } }

.lp-vtCoverflow__stage {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
  perspective: 1200px;
  min-height: 1px;
}
@media (min-width: 768px) {
  .lp-vtCoverflow__stage { grid-template-columns: 1fr 1.4fr 1fr; }
}

.lp-vtCoverflow__slot {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.lp-vtCoverflow__slot--left  { justify-content: flex-end; }
.lp-vtCoverflow__slot--right { justify-content: flex-start; }

/* Base card */
.lp-vtCard {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  background: var(--grad-signature);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-align: left;
  isolation: isolate;
  box-shadow: var(--sh-md);
  transition:
    transform .5s cubic-bezier(.2,.7,.2,1),
    opacity .4s ease,
    box-shadow .4s ease,
    filter .4s ease;
  font-family: inherit;
  transform-style: preserve-3d;
}

/* Center card — large, focused, prominent */
.lp-vtCard--center {
  max-width: 360px;
  transform: scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
  box-shadow:
    0 28px 60px rgba(104,24,34,0.32),
    0 10px 24px rgba(0,0,0,0.22);
}
.lp-vtCard--center:hover {
  transform: scale(1.015) translateY(-3px);
  box-shadow:
    0 34px 80px rgba(104,24,34,0.40),
    0 14px 30px rgba(0,0,0,0.28);
}

/* Side cards — smaller, dimmer, slightly tilted */
.lp-vtCard--prev,
.lp-vtCard--next {
  max-width: 220px;
  transform: scale(0.82);
  opacity: 0.6;
  filter: saturate(0.7);
  z-index: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.lp-vtCard--prev { transform: scale(0.82) rotateY(8deg) translateX(8%); transform-origin: right center; }
.lp-vtCard--next { transform: scale(0.82) rotateY(-8deg) translateX(-8%); transform-origin: left center; }
.lp-vtCard--prev:hover { transform: scale(0.85) rotateY(6deg) translateX(6%); opacity: 0.8; }
.lp-vtCard--next:hover { transform: scale(0.85) rotateY(-6deg) translateX(-6%); opacity: 0.8; }

@media (max-width: 640px) {
  .lp-vtCoverflow { gap: 4px; }
  .lp-vtCoverflow__stage { grid-template-columns: 0.5fr 2fr 0.5fr; }
  .lp-vtCard--center { max-width: 260px; }
  .lp-vtCard--prev,
  .lp-vtCard--next { max-width: 110px; opacity: 0.5; }
  .lp-vtCard--prev { transform: scale(0.78) rotateY(10deg) translateX(15%); }
  .lp-vtCard--next { transform: scale(0.78) rotateY(-10deg) translateX(-15%); }
}

/* Poster (preserved from previous design, slimmer side variant) */
.lp-vtCard__poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.lp-vtCard__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 25%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(60% 50% at 80% 90%, rgba(104,24,34,0.55), transparent 55%);
  pointer-events: none;
}
.lp-vtCard__initial {
  font-size: clamp(120px, 22vw, 220px);
  font-weight: var(--fw-black);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255,255,255,0.10);
  user-select: none;
  position: relative;
}
.lp-vtCard__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.lp-vtCard__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 9px;
  border-radius: 999px;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Play button — bigger on center, smaller on sides */
.lp-vtCard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--bordeaux);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    0 14px 36px rgba(104,24,34,0.55),
    0 0 0 12px rgba(255,255,255,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-vtCard__play svg { margin-left: 3px; }
.lp-vtCard--center:hover .lp-vtCard__play {
  transform: translate(-50%, -50%) scale(1.06);
}
.lp-vtCard--prev .lp-vtCard__play,
.lp-vtCard--next .lp-vtCard__play {
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 20px rgba(104,24,34,0.45), 0 0 0 8px rgba(255,255,255,0.04);
}
@media (max-width: 640px) {
  .lp-vtCard--prev .lp-vtCard__play,
  .lp-vtCard--next .lp-vtCard__play { width: 32px; height: 32px; box-shadow: 0 6px 14px rgba(104,24,34,0.4); }
}

.lp-vtCard__dur {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0,0,0,0.42);
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 3;
  font-feature-settings: "tnum";
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lp-vtCard__cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}
.lp-vtCard__cap strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.lp-vtCard__cap small {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}
.lp-vtCard--prev .lp-vtCard__cap,
.lp-vtCard--next .lp-vtCard__cap {
  bottom: 10px;
  left: 12px;
  right: 12px;
}
.lp-vtCard--prev .lp-vtCard__cap strong,
.lp-vtCard--next .lp-vtCard__cap strong { font-size: 14px; }

/* Nav arrows */
.lp-vtNav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  transition: background-color .15s ease, transform .15s ease, border-color .15s ease, color .15s ease;
  z-index: 4;
}
.lp-vtNav:hover {
  background: var(--bordeaux);
  color: #fff;
  border-color: var(--bordeaux);
  transform: scale(1.06);
}
.lp-vtNav:focus-visible { outline: 2px solid var(--bordeaux); outline-offset: 2px; }
@media (min-width: 768px) { .lp-vtNav { width: 52px; height: 52px; } }
@media (max-width: 480px) {
  .lp-vtNav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; }
  .lp-vtNav--prev { left: -4px; }
  .lp-vtNav--next { right: -4px; }
  .lp-vtNav:hover { transform: translateY(-50%) scale(1.06); }
}

/* Dots / name tabs under carousel */
.lp-vtDots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}
.lp-vtDot {
  background: transparent;
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .15s ease;
  min-height: 36px;
}
.lp-vtDot:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}
.lp-vtDot.is-active {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: #fff;
  box-shadow: 0 6px 16px rgba(104,24,34,0.25);
}

.lp-vtHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray);
}
.lp-vtHint svg {
  width: 14px;
  height: 14px;
  animation: lp-swipeHint 1.8s ease-in-out infinite;
}

/* hide the legacy lp-vtGrid styles below this point — coverflow replaces them */

/* ---------- Video modal (portrait video player) ---------- */
.lp-vtModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.94);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lp-fadeIn .25s ease-out;
}
.lp-vtModal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: background-color .15s ease, transform .15s ease;
}
.lp-vtModal__close:hover {
  background: rgba(104,24,34,0.85);
  transform: scale(1.06);
}
@media (min-width: 768px) {
  .lp-vtModal__close { top: 22px; right: 24px; width: 50px; height: 50px; }
}
.lp-vtModal__frame {
  position: relative;
  width: auto;
  height: 100%;
  max-height: calc(100vh - 80px);
  aspect-ratio: 9/16;
  background: var(--dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-vtModal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-vtModal__placeholder {
  position: absolute;
  inset: 0;
  background: var(--grad-signature);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.lp-vtModal__initial {
  font-size: clamp(180px, 30vh, 260px);
  font-weight: var(--fw-black);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255,255,255,0.10);
  user-select: none;
}
.lp-vtModal__pending {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(232,168,176,0.85);
  background: rgba(232,168,176,0.08);
  border: 1px solid rgba(232,168,176,0.25);
  padding: 8px 14px;
  border-radius: 999px;
}
.lp-vtModal__pendingSub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.lp-vtModal__bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.55);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-vtModal__meta { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; flex: 1; }
.lp-vtModal__meta strong { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.lp-vtModal__meta span { font-size: 11px; color: rgba(255,255,255,0.7); }
.lp-vtModal__dur {
  font-size: 12px;
  font-weight: 700;
  font-feature-settings: "tnum";
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lp-fadeIn .25s ease-out;
}
@keyframes lp-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lp-lightbox__stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lp-lightbox__frame {
  position: relative;
  width: min(1280px, calc(100% - 80px));
  aspect-ratio: 3/2;
  max-height: calc(100vh - 200px);
  overflow: hidden;
  border-radius: var(--r-md);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lp-lightbox__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  animation: lp-imgIn .3s ease-out;
}
@keyframes lp-imgIn {
  from { opacity: 0; transform: scale(1.01); }
  to { opacity: 1; transform: scale(1); }
}

.lp-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: background-color .15s ease, transform .15s ease, border-color .15s ease;
}
.lp-lightbox__close:hover {
  background: rgba(104,24,34,0.85);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.08);
}
.lp-lightbox__close::after {
  /* tiny pulsing ring so the close affordance is unmistakable */
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
  animation: lp-lbCloseRing 2.4s ease-out infinite;
}
@keyframes lp-lbCloseRing {
  0%   { opacity: 0.0; transform: scale(0.94); }
  40%  { opacity: 0.9; transform: scale(1.06); }
  100% { opacity: 0.0; transform: scale(1.18); }
}
@media (min-width: 768px) {
  .lp-lightbox__close { top: 20px; right: 22px; width: 50px; height: 50px; }
}

.lp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: background-color .15s ease, transform .15s ease, border-color .15s ease;
}
.lp-lightbox__nav:hover {
  background: rgba(104,24,34,0.85);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-50%) scale(1.08);
}
.lp-lightbox__nav--prev { left: 14px; }
.lp-lightbox__nav--next { right: 14px; }
@media (min-width: 768px) {
  .lp-lightbox__nav { width: 58px; height: 58px; }
  .lp-lightbox__nav--prev { left: 28px; }
  .lp-lightbox__nav--next { right: 28px; }
}
@media (max-width: 480px) {
  .lp-lightbox__nav { width: 42px; height: 42px; }
  .lp-lightbox__nav--prev { left: 8px; }
  .lp-lightbox__nav--next { right: 8px; }
}

.lp-lightbox__bar {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.6);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  max-width: calc(100% - 32px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
}
.lp-lightbox__meta { display: flex; flex-direction: column; gap: 0; line-height: 1.15; min-width: 0; }
.lp-lightbox__meta strong { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.lp-lightbox__meta span { font-size: 11px; color: rgba(255,255,255,0.7); }
.lp-lightbox__count {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-feature-settings: "tnum";
  color: rgba(255,255,255,0.85);
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.lp-lightbox__dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.lp-lightbox__dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.lp-lightbox__dot:hover { background: rgba(255,255,255,0.6); }
.lp-lightbox__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* ---------- Price section (Sec 5) — premium / futuristic ---------- */
.lp-priceSection {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.lp-priceSection::before {
  /* faint bordeaux glow anchor at top-right — premium ambience without orbs */
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(104,24,34,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.lp-priceSection > * { position: relative; z-index: 1; }

.lp-priceSection__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 64px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .lp-priceSection__head { margin-bottom: 80px; } }

.lp-priceSection__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--success);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.28);
  padding: 7px 14px;
  border-radius: 999px;
}
.lp-priceSection__chipDot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.20), 0 0 8px rgba(74,222,128,0.5);
  animation: lp-pulseGreen 1.8s ease-in-out infinite;
}
@keyframes lp-pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(104,24,34,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(104,24,34,0.06); }
}

.lp-priceSection__h {
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: var(--fw-black);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
  margin: 0;
  text-wrap: balance;
}
.lp-priceSection__h em { font-style: normal; color: var(--bordeaux); }

.lp-priceLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .lp-priceLayout { grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; } }

/* ---------- PDF device mockup (clean image, no wrapper) ---------- */
.lp-pdfMockup {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-pdfMockup__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.25)) drop-shadow(0 8px 18px rgba(0,0,0,0.12));
}
.lp-pdfMockup__cap {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray);
  text-align: center;
}

/* ---------- Shared widget chrome ---------- */
.lp-priceStack { display: flex; flex-direction: column; gap: 16px; }
.lp-widget {
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-light);
  box-shadow: 0 16px 36px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}
.lp-widget__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ---------- Widget 1 — Obsah PDF ---------- */
.lp-contents { background: var(--white); padding: 24px 22px; }
@media (min-width: 768px) { .lp-contents { padding: 28px 30px; } }
.lp-contents .lp-widget__hd {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
  align-items: baseline;
}
.lp-widget__pages {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray);
  font-feature-settings: "tnum";
}

.lp-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-bullet {
  display: grid;
  grid-template-columns: 28px 22px 1fr;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-body);
  color: var(--dark-soft);
  line-height: 1.45;
}
.lp-bullet__no {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-feature-settings: "tnum";
  text-align: right;
}
.lp-bullet__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(22,163,74,0.10);
  color: var(--success);
  flex-shrink: 0;
}
.lp-bullet__text { color: var(--dark-soft); font-weight: 500; }

/* ---------- Widget 2 — Bonusy (cream + green Zadarmo) ---------- */
.lp-bonuses {
  background: var(--cream);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) { .lp-bonuses { padding: 28px 30px; } }
.lp-bonuses .lp-widget__hd {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
  align-items: baseline;
}
.lp-widget__free {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--success);
  background: rgba(22,163,74,0.10);
  border: 1px solid rgba(22,163,74,0.30);
  padding: 5px 10px;
  border-radius: 999px;
}
.lp-bonus { display: flex; flex-direction: column; gap: 6px; }
.lp-bonus__title { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.lp-bonus__title b { font-weight: 700; font-size: 17px; color: var(--dark); }
.lp-bonus__tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bordeaux);
  background: rgba(104,24,34,0.08);
  padding: 4px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}

/* ---------- Widget 3 — Cena (dark premium · ROI-focused) ---------- */
.lp-priceCard {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(138,42,54,0.45), transparent 60%),
    linear-gradient(165deg, #2a1218 0%, #1a1a1a 55%, #251015 100%);
  color: var(--fg-on-dark);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  isolation: isolate;
  border-color: transparent;
  box-shadow:
    0 24px 60px rgba(104,24,34,0.30),
    0 8px 18px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .lp-priceCard { padding: 36px 32px 32px; gap: 22px; } }

.lp-priceCard__edge {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background:
    conic-gradient(
      from 210deg at 50% 50%,
      rgba(232,168,176,0.55) 0%,
      transparent 24%,
      transparent 52%,
      rgba(74,222,128,0.40) 74%,
      transparent 100%
    );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: lp-priceEdge 22s linear infinite;
  opacity: 0.6;
}
@keyframes lp-priceEdge {
  to { transform: rotate(360deg); }
}

.lp-priceCard__hd { display: flex; flex-direction: column; gap: 12px; }
.lp-priceCard__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #c8f5d2;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.32);
  padding: 6px 12px;
  border-radius: 999px;
}
.lp-priceCard__chipDot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.20);
  animation: lp-pulseGreen 1.8s ease-in-out infinite;
}
@keyframes lp-pulseGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.20); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0.04); }
}

.lp-priceCard__product { display: flex; flex-direction: column; gap: 4px; }
.lp-priceCard__product strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #fff;
}
.lp-priceCard__product small {
  font-size: 12px;
  color: rgba(245,245,245,0.65);
  letter-spacing: 0.02em;
}

.lp-priceCard__pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.lp-priceCard__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.lp-priceCard__num {
  font-size: clamp(80px, 12vw, 120px);
  font-weight: var(--fw-black);
  color: #fff;
  font-feature-settings: "tnum";
  text-shadow: 0 8px 30px rgba(104,24,34,0.45);
}
.lp-priceCard__currency {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: var(--fw-bold);
  color: rgba(232,168,176,0.85);
  letter-spacing: -0.03em;
}
.lp-priceCard__sub {
  font-size: 13px;
  color: rgba(245,245,245,0.7);
  letter-spacing: 0.01em;
}

/* ROI breakdown table (psychological framing — investment × return) */
.lp-roiTable {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.lp-roiTable__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 16px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-feature-settings: "tnum";
}
.lp-roiTable__row:first-child { border-top: none; }
.lp-roiTable__label {
  color: rgba(245,245,245,0.78);
  font-weight: 500;
}
.lp-roiTable__value {
  color: #fff;
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.005em;
}
.lp-roiTable__row--total {
  background: rgba(74,222,128,0.06);
  border-top-color: rgba(74,222,128,0.20);
}
.lp-roiTable__value--accent {
  color: #c8f5d2;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* Bonus block inside dark price card — AI šablóny zadarmo */
.lp-priceBonus {
  position: relative;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(232,168,176,0.07), rgba(232,168,176,0.02));
  border: 1px solid rgba(232,168,176,0.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) { .lp-priceBonus { padding: 18px 22px; } }
.lp-priceBonus__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-priceBonus__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: #c8f5d2;
  background: rgba(22,163,74,0.14);
  border: 1px solid rgba(22,163,74,0.32);
  padding: 5px 11px;
  border-radius: 999px;
}
.lp-priceBonus__tag span { font-size: 13px; line-height: 1; }
.lp-priceBonus__value {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.78);
  font-feature-settings: "tnum";
}
.lp-priceBonus__value s {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.5);
  text-decoration-thickness: 1.5px;
  font-weight: 800;
}

.lp-priceBonus__body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lp-priceBonus__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background:
    radial-gradient(120% 100% at 30% 20%, rgba(232,168,176,0.35), transparent 65%),
    var(--bordeaux);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(104,24,34,0.35);
}
.lp-priceBonus__icon svg { width: 20px; height: 20px; }
.lp-priceBonus__txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lp-priceBonus__txt strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.2;
}
.lp-priceBonus__txt p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245,245,245,0.78);
  margin: 0;
  text-wrap: pretty;
}

/* Callout pill — "Stačí jedna zákazka" */
.lp-priceCard__callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.20);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245,245,245,0.92);
}
.lp-priceCard__callout b { color: #fff; font-weight: 800; }
.lp-priceCard__calloutIcon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(74,222,128,0.18);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA — white pill on dark with bordeaux text */
.lp-priceCard__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  color: var(--bordeaux);
  font-family: var(--font-sans);
  font-weight: var(--fw-black);
  font-size: 17px;
  letter-spacing: -0.005em;
  padding: 16px 18px 16px 22px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 60px;
  box-shadow:
    0 14px 30px rgba(255,255,255,0.18),
    0 4px 12px rgba(0,0,0,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.lp-priceCard__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(104,24,34,0.06) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.lp-priceCard__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(255,255,255,0.25),
    0 8px 22px rgba(0,0,0,0.25);
}
.lp-priceCard__cta:hover::after { transform: translateX(100%); }
.lp-priceCard__cta:active { transform: translateY(0); }
.lp-priceCard__cta:focus-visible { outline: 3px solid rgba(232,168,176,0.6); outline-offset: 3px; }

.lp-priceCard__ctaArrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--bordeaux);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .18s ease;
}
.lp-priceCard__cta:hover .lp-priceCard__ctaArrow { transform: translateX(2px); }

.lp-priceCard__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
  color: rgba(245,245,245,0.72);
  justify-content: center;
}
.lp-priceCard__trust li { display: inline-flex; align-items: center; gap: 6px; }
.lp-priceCard__trust svg { color: #4ade80; }

/* ---------- Guarantee (Sec 6) — premium shield + step-by-step process ---------- */
.lp-guarantee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lp-guarantee {
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: start;
  }
}

/* SHIELD — replaces the old circular seal */
.lp-shield {
  position: relative;
  width: 200px;
  height: 220px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(104,24,34,0.35)) drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}
@media (min-width: 768px) {
  .lp-shield { width: 220px; height: 240px; margin: 0; position: sticky; top: 90px; }
}
.lp-shield__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lp-shield__glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(ellipse at center, rgba(232,168,176,0.18), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.lp-shield__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 32px 12px 28px;
}
.lp-shield__top {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.lp-shield__num {
  font-size: 86px;
  font-weight: var(--fw-black);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  margin: 0;
}
@media (min-width: 768px) { .lp-shield__num { font-size: 96px; } }
.lp-shield__unit {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.34em;
  margin: 2px 0 12px;
  color: rgba(255,255,255,0.92);
}
.lp-shield__sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  text-align: center;
  line-height: 1.3;
  max-width: 160px;
  white-space: nowrap;
}
.lp-shield__sub b {
  display: block;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.lp-shield__sub i {
  display: block;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(232,168,176,0.85);
  font-size: 10px;
}

.lp-guarantee__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

/* Step-by-step process */
.lp-gSteps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  counter-reset: gstep;
}
@media (min-width: 640px) { .lp-gSteps { grid-template-columns: repeat(3, 1fr); } }

.lp-gStep {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-md);
}
.lp-gStep__no {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--bordeaux);
  background: rgba(104,24,34,0.08);
  border: 1px solid rgba(104,24,34,0.18);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  line-height: 1;
}
.lp-gStep__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-gStep__body strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.lp-gStep__body span {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.35;
}

/* Refund pact callout (green = success / safety) */
.lp-gPact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(22,163,74,0.06), rgba(22,163,74,0.02));
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: var(--r-md);
  position: relative;
}
.lp-gPact::before {
  /* tiny accent bar */
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: var(--success);
  border-radius: 0 3px 3px 0;
}
.lp-gPact__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-gPact__icon svg { width: 16px; height: 16px; }
.lp-gPact__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lp-gPact__body strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.lp-gPact__body p {
  font-size: 14px;
  color: var(--dark-soft);
  margin: 0;
  line-height: 1.5;
}
.lp-gPact__body a {
  color: var(--bordeaux);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-gPact__body b { color: var(--dark); font-weight: 800; }

/* ---------- FAQ (Sec 7) — refined futuristic touch ---------- */
.lp-faqEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bordeaux);
  background: rgba(104,24,34,0.06);
  border: 1px solid rgba(104,24,34,0.18);
  padding: 6px 13px;
  border-radius: 999px;
  margin: 0 auto;
}
.lp-faqEyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(104,24,34,0.16);
  animation: lp-pulseDot 2.2s ease-in-out infinite;
}

.lp-faq {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faqItem {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.lp-faqItem:hover {
  border-color: rgba(104,24,34,0.45);
  box-shadow: 0 6px 18px rgba(104,24,34,0.06);
}
.lp-faqItem.is-open {
  border-color: var(--bordeaux);
  box-shadow: 0 12px 30px rgba(104,24,34,0.10);
}
/* faint left accent stripe — only when open */
.lp-faqItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bordeaux);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.lp-faqItem.is-open::before { transform: scaleY(1); }

.lp-faqItem__q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.005em;
  min-height: 64px;
  line-height: 1.35;
}
@media (min-width: 640px) {
  .lp-faqItem__q { padding: 22px 26px; font-size: 17px; }
}

.lp-faqItem__no {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-feature-settings: "tnum";
  background: rgba(104,24,34,0.04);
  border: 1px solid rgba(104,24,34,0.10);
  padding: 4px 7px;
  border-radius: 5px;
  line-height: 1;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.lp-faqItem.is-open .lp-faqItem__no {
  color: var(--bordeaux);
  background: rgba(104,24,34,0.10);
  border-color: rgba(104,24,34,0.30);
}

.lp-faqItem__qtext {
  text-wrap: balance;
  min-width: 0;
}

.lp-faqItem__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  transition: background-color .22s ease, border-color .22s ease, transform .25s ease;
}
.lp-faqItem__icon::before, .lp-faqItem__icon::after {
  content: "";
  position: absolute;
  background: var(--bordeaux);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.lp-faqItem__icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.lp-faqItem__icon::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: transform .25s ease; }
.lp-faqItem.is-open .lp-faqItem__icon {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  transform: rotate(180deg);
}
.lp-faqItem.is-open .lp-faqItem__icon::before { background: #fff; }
.lp-faqItem.is-open .lp-faqItem__icon::after  { background: #fff; transform: translate(-50%, -50%) scaleY(0); }

.lp-faqItem__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.lp-faqItem.is-open .lp-faqItem__body { max-height: 400px; }
.lp-faqItem__a {
  padding: 4px 22px 22px 62px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-body);
  margin: 0;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .lp-faqItem__a { padding: 4px 26px 24px 70px; font-size: 16px; }
}
@media (max-width: 480px) {
  .lp-faqItem__q { padding: 16px 16px; gap: 10px; min-height: 60px; }
  .lp-faqItem__a { padding: 2px 16px 18px 16px; font-size: 15px; }
  .lp-faqItem__no { font-size: 10px; padding: 3px 6px; }
}

/* ---------- Final CTA (Sec 8) — Apple-style restraint ---------- */
.lp-final {
  position: relative;
  background: var(--dark);
  color: var(--fg-on-dark);
  padding: 112px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) { .lp-final { padding: 144px 0; } }

.lp-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lp-final__bgImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 45%;
  opacity: 0.55;
  filter: saturate(0.85) contrast(1.05) brightness(0.95);
  transform: scale(1.06);
  animation: lp-finalBgDrift 28s ease-in-out infinite alternate;
}
@keyframes lp-finalBgDrift {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.06) translateX(-1.5%); }
}
.lp-final__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(20,5,8,0.55) 0%, rgba(20,5,8,0) 70%),
    linear-gradient(135deg, rgba(104,24,34,0.40) 0%, rgba(58,15,22,0.45) 50%, rgba(20,20,20,0.65) 100%);
  pointer-events: none;
}
.lp-final::after {
  /* edge vignette */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}
.lp-final__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
}
@media (min-width: 768px) { .lp-final__inner { gap: 28px; } }

/* Eyebrow chip */
.lp-final__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.lp-final__chipDot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffb8c0;
  box-shadow: 0 0 0 3px rgba(232,168,176,0.22), 0 0 8px rgba(255,184,192,0.5);
  animation: lp-pulseDot 2s ease-in-out infinite;
}

.lp-final__h {
  font-size: clamp(34px, 6.4vw, 60px);
  font-weight: var(--fw-black);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--fg-on-dark);
  text-wrap: balance;
  margin: 0;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.55),
    0 12px 40px rgba(0,0,0,0.55);
}
.lp-final__h em {
  font-style: normal;
  color: #ffb8c0;
}
.lp-final__sub {
  font-size: clamp(17px, 1.9vw, 21px);
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

/* CTA with glowing halo */
.lp-final__ctaWrap {
  position: relative;
  margin-top: 12px;
  display: inline-block;
}
.lp-final__halo {
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.20), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.lp-final__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  color: var(--bordeaux);
  font-family: var(--font-sans);
  font-weight: var(--fw-black);
  font-size: 18px;
  letter-spacing: -0.005em;
  padding: 18px 22px 18px 30px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 64px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 8px 22px rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.lp-final__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(104,24,34,0.08) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.lp-final__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.55),
    0 12px 30px rgba(255,255,255,0.22);
}
.lp-final__cta:hover::after { transform: translateX(100%); }
.lp-final__cta:active { transform: translateY(0); }
.lp-final__cta:focus-visible { outline: 3px solid rgba(232,168,176,0.6); outline-offset: 3px; }
.lp-final__ctaArrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bordeaux);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.lp-final__cta:hover .lp-final__ctaArrow { transform: translateX(2px); }
@media (min-width: 768px) {
  .lp-final__cta { font-size: 19px; padding: 20px 22px 20px 32px; }
}

/* Trust chips row */
.lp-final__trust {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}
.lp-final__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.lp-final__trustIcon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(74,222,128,0.20);
  border: 1px solid rgba(74,222,128,0.45);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Footer ---------- */
.lp-footer { background: var(--dark); color: var(--fg-on-dark); padding: 72px 0 24px; }
.lp-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .lp-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding: 0 24px 56px; } }
.lp-footer__brand img { height: 36px; margin-bottom: 16px; }
.lp-footer__brand p { font-size: 14px; color: rgba(245,245,245,0.6); max-width: 280px; line-height: 1.5; margin: 0 0 20px; }
.lp-footer__social { display: flex; gap: 12px; }
.lp-footer__social a {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--fg-on-dark);
  transition: background .2s ease;
  text-decoration: none;
}
.lp-footer__social a:hover { background: var(--bordeaux); }
.lp-footer__social svg { width: 18px; height: 18px; }
.lp-footer__col { display: flex; flex-direction: column; gap: 12px; }
.lp-footer__h {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,245,245,0.4);
  margin: 0 0 4px;
}
.lp-footer__col a {
  color: rgba(245,245,245,0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color .15s ease;
}
.lp-footer__col a:hover { color: #e8a8b0; }
.lp-footer__contact {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 8px;
  text-align: center;
  font-size: 14px;
  color: rgba(245,245,245,0.65);
}
.lp-footer__contact a { color: #e8a8b0; text-decoration: none; }
.lp-footer__contact a:hover { color: #fff; }
.lp-footer__copy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 12px;
  color: rgba(245,245,245,0.4);
  text-align: center;
}

/* ---------- Reveal on scroll ---------- */
.lp-reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.lp-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
