/* ============================================================
   COINEE LANDING v2 — moderni vizualni styl
   Designove principy:
   - Zachovani zluteho akcentu (#F5C518) + tmaveho bg
   - Glow efekty, mesh gradient, floating orbs
   - Mikro-animace pro vsechny interaktivni prvky
   - Scroll-reveal animace
   - Stack screenshot v hero (3 vrstvy s perspektivou)
   - Floating live badges (cara o trzich)
   - VS comparison strip ($XX/m vs zdarma)
   - Animated counter pro staty
   ============================================================ */

:root {
  --gold: #F5C518;
  --gold-dim: rgba(245, 197, 24, 0.7);
  --gold-glow: rgba(245, 197, 24, 0.4);
  --gold-bg: rgba(245, 197, 24, 0.08);
  --bg-deep: #0a0a0c;
  --bg-card: rgba(20, 20, 24, 0.7);
  --bg-card-hover: rgba(28, 28, 34, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-mid: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(245, 197, 24, 0.3);
  --text-primary: #ffffff;
  --text-mid: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.5);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 32px rgba(245, 197, 24, 0.25);
}

/* === Body & background === */
body.lp-v2 {
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
}

.lp2-bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(245, 197, 24, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 25%, rgba(120, 50, 240, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245, 197, 24, 0.04) 0%, transparent 60%);
}

.lp2-bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: lp2-orb-float 16s ease-in-out infinite;
}
.lp2-orb-1 { width: 460px; height: 460px; top: -120px; left: -120px; background: rgba(245, 197, 24, 0.25); animation-delay: 0s; }
.lp2-orb-2 { width: 380px; height: 380px; top: 40%; right: -120px; background: rgba(120, 50, 240, 0.18); animation-delay: -5s; }
.lp2-orb-3 { width: 320px; height: 320px; bottom: -80px; left: 30%; background: rgba(245, 197, 24, 0.18); animation-delay: -10s; }

@keyframes lp2-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Pre-reveal stav (pro scroll animace) */
.lp2-pre-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp2-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === Container === */
.lp2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Section base === */
.lp2-section {
  padding: 6rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .lp2-section { padding: 4rem 0; }
}

.lp2-section-head {
  margin-bottom: 3rem;
  max-width: 800px;
}
.lp2-section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp2-section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  margin-bottom: 1rem;
}

.lp2-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}
.lp2-section-title span { display: block; }

.lp2-headline-gold {
  background: linear-gradient(135deg, #F5C518 0%, #F8D055 50%, #F5C518 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block !important;
}

/* Shimmer animace pro key text */
.lp2-shimmer {
  background-size: 200% 100%;
  animation: lp2-shimmer 6s linear infinite;
}
@keyframes lp2-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === NAVBAR override (zachovat existujici styles.css) === */
.lp2-navbar {
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 12, 0.7);
  border-bottom: 1px solid var(--border-subtle);
}

/* ============ HERO ============ */
.lp2-hero {
  padding: 6rem 1.5rem 4rem;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.lp2-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 968px) {
  .lp2-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
}

.lp2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.lp2-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: lp2-pulse 2s ease-out infinite;
}
@keyframes lp2-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.lp2-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.lp2-headline span { display: block; }

.lp2-subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 0 2rem;
}
@media (max-width: 968px) { .lp2-subheadline { margin-left: auto; margin-right: auto; } }

/* === VS strip (jinde vs Coinee) === */
.lp2-vs-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}
@media (max-width: 600px) {
  .lp2-vs-strip { flex-direction: column; gap: 0.75rem; }
}

.lp2-vs-item {
  flex: 1;
  min-width: 0;
}
.lp2-vs-old { opacity: 0.85; }
.lp2-vs-new {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin-left: -0.5rem;
}
.lp2-vs-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}
.lp2-vs-label-gold { color: var(--gold); }
.lp2-vs-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lp2-vs-line {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
}
.lp2-vs-price {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lp2-vs-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.lp2-vs-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.lp2-vs-tiny {
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

/* === CTA row === */
.lp2-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
@media (max-width: 968px) {
  .lp2-cta-row { justify-content: center; }
}

.lp2-cta-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #F5C518 0%, #F8D055 100%) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35), 0 0 0 1px rgba(245, 197, 24, 0.5) inset !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  position: relative;
  overflow: hidden;
}
.lp2-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}
.lp2-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 197, 24, 0.5), 0 0 0 1px rgba(245, 197, 24, 0.7) inset !important;
}
.lp2-cta-primary:hover::before {
  left: 150%;
}
.lp2-cta-arrow {
  transition: transform 0.2s ease;
}
.lp2-cta-primary:hover .lp2-cta-arrow {
  transform: translateX(4px);
}

.lp2-cta-ghost {
  font-size: 0.92rem;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.lp2-cta-ghost:hover { color: var(--gold); }

.lp2-cta-big {
  padding: 1.25rem 2.5rem !important;
  font-size: 1.1rem !important;
}

/* === Trust strip (hero) === */
.lp2-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
@media (max-width: 968px) {
  .lp2-trust { justify-content: center; }
}
.lp2-trust-counter {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.lp2-trust-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lp2-trust-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.lp2-trust-text {
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--text-mid);
}
.lp2-trust-text strong {
  color: var(--text-primary);
}
.lp2-trust-stars {
  margin-left: auto;
  text-align: right;
  font-size: 0.78rem;
}
@media (max-width: 600px) { .lp2-trust-stars { margin-left: 0; text-align: left; } }
.lp2-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.lp2-trust-rating-label {
  color: var(--text-dim);
  margin-top: 0.2rem;
}

/* === HERO RIGHT (stack) === */
.lp2-hero-right {
  position: relative;
  perspective: 1400px;
  overflow: visible;
}

.lp2-hero-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  max-width: 600px;
  margin: 0 auto;
}

.lp2-hero-stack img {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lp2-stack-back {
  width: 80%;
  height: 70%;
  top: 0;
  left: 0;
  transform: translateZ(0) rotate(-4deg);
  opacity: 0.85;
  z-index: 1;
  filter: brightness(0.85);
}
.lp2-stack-mid {
  width: 75%;
  height: 65%;
  top: 18%;
  right: 5%;
  transform: translateZ(40px) rotate(2deg);
  z-index: 2;
  opacity: 0.92;
}
.lp2-stack-front {
  width: 85%;
  height: 75%;
  bottom: 0;
  left: 8%;
  transform: translateZ(80px) rotate(-1deg);
  z-index: 3;
  border: 1px solid rgba(245, 197, 24, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 197, 24, 0.15), 0 8px 30px rgba(245, 197, 24, 0.15);
}
.lp2-hero-stack:hover .lp2-stack-back { transform: translateZ(0) rotate(-6deg) translateX(-15px); }
.lp2-hero-stack:hover .lp2-stack-mid { transform: translateZ(40px) rotate(4deg) translateX(15px); }
.lp2-hero-stack:hover .lp2-stack-front { transform: translateZ(80px) rotate(0deg) scale(1.02); }

.lp2-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(20, 20, 24, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  z-index: 5;
  animation: lp2-float 5s ease-in-out infinite;
}
.lp2-badge-1 { top: 8%; left: -2%; animation-delay: 0s; }
.lp2-badge-2 { top: 38%; right: 2%; animation-delay: -1.5s; }
.lp2-badge-3 { bottom: 12%; left: 0%; animation-delay: -3s; }
@keyframes lp2-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.lp2-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: lp2-pulse 2s ease-out infinite;
}
.lp2-badge-icon { font-size: 0.95rem; }

@media (max-width: 968px) {
  .lp2-float-badge { display: none; } /* Schovat na mobile pro cistsi vzhled */
}

/* === Scroll indicator === */
.lp2-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  pointer-events: none;
}
.lp2-scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.lp2-scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  animation: lp2-scroll-arrow 2s ease-in-out infinite;
}
@keyframes lp2-scroll-arrow {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}
@media (max-width: 1200px) { .lp2-scroll-indicator { display: none; } }

/* ============ LOGOS marquee ============ */
.lp2-logos-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.lp2-logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.lp2-logos-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.lp2-logos-track {
  display: flex;
  gap: 2.5rem;
  animation: lp2-marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes lp2-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lp2-logo-pill {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-mid);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.lp2-logo-pill:hover {
  color: var(--gold);
  border-color: var(--border-gold);
}

/* ============ BENEFITS GRID ============ */
.lp2-bcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .lp2-bcards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lp2-bcards { grid-template-columns: 1fr; } }

.lp2-bcard {
  position: relative;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s, background 0.3s, box-shadow 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.lp2-bcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.lp2-bcard:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border-gold);
}
.lp2-bcard:hover::before { opacity: 1; }

.lp2-bcard-feature {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.06), var(--bg-card));
  border-color: var(--border-gold);
}
.lp2-bcard-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lp2-bcard-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  transition: transform 0.3s;
}
.lp2-bcard:hover .lp2-bcard-icon-wrap {
  transform: rotate(-4deg) scale(1.05);
}

.lp2-bcard-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: var(--gold);
  color: #000;
}
.lp2-bcard-tag-new {
  background: #22c55e;
  color: #000;
}

.lp2-bcard-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 0.6rem;
}

.lp2-bcard-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0 0 1rem;
}

.lp2-bcard-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.lp2-bcard:hover .lp2-bcard-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============ APP PREVIEW ============ */
.lp2-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  padding: 1rem;
  margin-top: 2rem;
  backdrop-filter: blur(12px);
  position: relative;
}
.lp2-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top, rgba(245, 197, 24, 0.06), transparent 70%);
  pointer-events: none;
}

.lp2-preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.lp2-preview-tab {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-mid);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lp2-preview-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}
.lp2-preview-tab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.lp2-preview-content {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}
.lp2-preview-panel {
  display: none;
  animation: lp2-fade 0.4s ease;
}
.lp2-preview-panel.active { display: block; }
@keyframes lp2-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.lp2-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ STATS BAR ============ */
.lp2-stats-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, transparent, rgba(245, 197, 24, 0.02), transparent);
}
.lp2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) { .lp2-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.lp2-stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.4rem;
}
.lp2-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

/* ============ ABOUT ============ */
.lp2-about-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}
@media (max-width: 768px) { .lp2-about-card { grid-template-columns: 1fr; gap: 2rem; text-align: center; } }

.lp2-about-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 50%;
}
.lp2-about-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  /* zadny border - foto uz je samo v zlutem kruhu */
}
.lp2-about-photo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.5), transparent 65%);
  filter: blur(28px);
  z-index: 1;
  border-radius: 50%;
  animation: lp2-pulse-glow 4s ease-in-out infinite;
}
@keyframes lp2-pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.lp2-about-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 0.3rem;
}
.lp2-about-tagline {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.lp2-about-stats {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .lp2-about-stats { justify-content: center; } }
.lp2-about-stat {
  display: flex;
  flex-direction: column;
}
.lp2-about-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.lp2-about-stat span {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}
.lp2-about-bio {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0 0 1.5rem;
}
.lp2-about-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .lp2-about-socials { justify-content: center; } }
.lp2-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.lp2-social-btn:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-bg);
}

/* ============ TESTIMONIALS ============ */
.lp2-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 968px) { .lp2-testimonials { grid-template-columns: 1fr; } }

.lp2-testimonial {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 18px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.lp2-testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.lp2-testimonial .lp2-stars {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.lp2-testimonial p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  font-style: italic;
}
.lp2-test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.lp2-test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5C518, #F8D055);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp2-test-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.lp2-test-author span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============ STEPS ============ */
.lp2-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}
@media (max-width: 768px) { .lp2-steps { grid-template-columns: 1fr; } }

.lp2-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  z-index: 0;
}
@media (max-width: 768px) { .lp2-steps::before { display: none; } }

.lp2-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp2-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5C518, #F8D055);
  color: #000;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
  border: 4px solid var(--bg-deep);
}
.lp2-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.lp2-step-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ FINAL CTA ============ */
.lp2-final-cta { padding-bottom: 8rem; }

.lp2-cta-card {
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at center, rgba(245, 197, 24, 0.15), transparent 70%),
    linear-gradient(135deg, rgba(20, 20, 24, 0.9), rgba(30, 30, 36, 0.7));
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.lp2-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(245, 197, 24, 0.04) 60deg, transparent 120deg);
  animation: lp2-rotate 20s linear infinite;
  pointer-events: none;
}
@keyframes lp2-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.lp2-cta-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  position: relative;
}
.lp2-cta-headline span { display: block; }

.lp2-cta-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0 0 2rem;
  position: relative;
}

.lp2-cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-mid);
  position: relative;
}
.lp2-trust-icon { font-size: 0.95rem; }

/* ============ FAQ ============ */
.lp2-faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp2-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.lp2-faq-item:hover { border-color: var(--border-gold); }
.lp2-faq-item.open { border-color: var(--border-gold); background: var(--bg-card-hover); }

.lp2-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.lp2-faq-question:hover { color: var(--gold); }

.lp2-faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.lp2-faq-item.open .lp2-faq-chevron {
  transform: rotate(180deg);
}

.lp2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.3s;
  padding: 0 1.5rem;
}
.lp2-faq-item.open .lp2-faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.4rem;
}
.lp2-faq-answer p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* === Mobile fine-tuning === */
@media (max-width: 600px) {
  .lp2-hero { padding: 4rem 1rem 2rem; min-height: auto; }
  .lp2-hero-stack { aspect-ratio: 4/3; }
  .lp2-vs-strip { padding: 1rem; }
  .lp2-bcard { padding: 1.5rem; }
  .lp2-about-card { padding: 1.5rem; }
}



/* ============ TESTIMONIALS PAGINATION ============ */
.lp2-testimonials-wrapper {
  position: relative;
  margin-top: 2rem;
}

.lp2-test-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.85);
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.lp2-testimonials-wrapper:hover .lp2-test-nav,
.lp2-test-nav:focus-visible {
  opacity: 1;
  pointer-events: auto;
}
.lp2-test-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}
.lp2-test-nav-prev { left: -22px; }
.lp2-test-nav-next { right: -22px; }
@media (max-width: 968px) {
  .lp2-test-nav-prev { left: -10px; }
  .lp2-test-nav-next { right: -10px; }
}
/* Touch devices nemaji hover - vzdy viditelne sipky */
@media (hover: none), (max-width: 768px) {
  .lp2-test-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

.lp2-test-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.lp2-test-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.lp2-test-dot:hover {
  background: rgba(245, 197, 24, 0.5);
}
.lp2-test-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 100px;
}

/* Smooth animace pri prepnuti */
.lp2-testimonials {
  transition: opacity 0.3s ease;
}
.lp2-testimonials.transitioning {
  opacity: 0;
}
