/* ============================================================
   LoopTV — landing page stílusok
   Juuno-inspirált irány: fehér alap, fekete pill gombok,
   színes bento-kártyák · Poppins (display) + Inter (szöveg)
   ============================================================ */

:root {
  --ink: #101113;
  --ink-2: #4B5563;
  --ink-3: #6B7280;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --line: #E8E8EA;
  --soft: #F6F6F4;

  --black: #0E0E10;
  --accent: #0B76CC;          /* LoopTV-kék: logó, linkek, apró kiemelések */
  --accent-bright: #0EA5E9;
  --indigo: #5B5BD6;

  /* vertikum-színek */
  --c-cafe: #E8434A;   --c-cafe-soft: #FFE9E6;   --c-cafe-deep: #B43A28;
  --c-gym: #4F46E5;    --c-gym-soft: #E9E7FE;
  --c-padel: #0E9F6E;  --c-padel-soft: #E2F7EE;
  --c-hotel: #9333EA;  --c-hotel-soft: #F3E8FF;
  --c-other: #0D9488;  --c-other-soft: #DFF6F2;

  --amber: #FFB020;
  --green: #16A34A;
  --red: #FF4D5E;

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 30px rgba(16, 17, 19, .07);
  --shadow-big: 0 30px 80px rgba(16, 17, 19, .16);

  --font-display: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: var(--accent); text-decoration: none; }
ul { list-style: none; }
s { opacity: .65; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1280px; }

.section { padding: 96px 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 600;
}
h2 { font-size: clamp(30px, 4vw, 46px); text-align: center; }
.section-sub {
  text-align: center;
  color: var(--ink-3);
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 17.5px;
}

sup a {
  color: var(--ink-3);
  font-size: 11px;
  text-decoration: none;
  padding: 0 2px;
}
sup a:hover { color: var(--accent); }

/* ---------- Gombok ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-size: 16px;
  padding: 14px 28px;
  line-height: 1.3;
}
.btn:active { transform: translateY(1px); }

.btn-dark {
  background: var(--black);
  color: #fff;
  box-shadow: 0 8px 22px rgba(14, 14, 16, .22);
}
.btn-dark:hover { background: #000; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(14, 14, 16, .3); }
.btn-dark .arr { display: inline-block; transition: transform .15s; }
.btn-dark:hover .arr { transform: translateX(3px); }

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--black); }

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}
.btn-light:hover { transform: translateY(-1px); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* ---------- Lebegő pill fejléc ---------- */
.float-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1060px, calc(100% - 28px));
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(20px) saturate(1.7);
  -webkit-backdrop-filter: blur(20px) saturate(1.7);
  border: 1px solid rgba(16, 17, 19, .07);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  box-shadow: 0 8px 30px rgba(16, 17, 19, .07), inset 0 1px 0 rgba(255, 255, 255, .65);
  transition: box-shadow .25s, background .25s;
}
.float-nav.scrolled {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 44px rgba(16, 17, 19, .13), inset 0 1px 0 rgba(255, 255, 255, .65);
}

.logo { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.logo-badge { width: 29px; height: 27px; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.035em;
}
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14.5px;
}
.main-nav a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 150px 0 0;
  text-align: center;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 600;
}
.hero-lead {
  margin: 22px auto 0;
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--ink-3);
  max-width: 680px;
}
.hero-ctas { margin-top: 32px; }
.hero-micro {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 500;
}
.hero-micro span {
  background: rgba(246, 246, 244, .72);
  border: 1px solid rgba(16, 17, 19, .07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Helyszínváltós jelenet ---------- */
.scene {
  position: relative;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: clamp(420px, 52vw, 640px);
  background: var(--black);
  box-shadow: var(--shadow-big);
}
.scene-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.scene-bg.is-active { opacity: 1; }
.scene-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.45) contrast(1.02);
  transform: translateY(var(--py, 0px)) scale(1.12);
  will-change: transform;
}
.tint { position: absolute; inset: 0; }
.t-cafe  { background: linear-gradient(180deg, rgba(180, 83, 9, .55), rgba(120, 53, 15, .72)); }
.t-gym   { background: linear-gradient(180deg, rgba(67, 56, 202, .55), rgba(49, 46, 129, .74)); }
.t-padel { background: linear-gradient(180deg, rgba(5, 122, 85, .55), rgba(6, 78, 59, .74)); }
.t-hotel { background: linear-gradient(180deg, rgba(126, 34, 206, .5), rgba(59, 7, 100, .74)); }
.t-salon { background: linear-gradient(180deg, rgba(13, 148, 136, .55), rgba(17, 94, 89, .76)); }

.scene-tv {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, calc(-50% + var(--pt, 0px)));
  will-change: transform;
  width: min(62%, 660px);
  background: #15161A;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .07);
}
.tv-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 3vw, 26px);
  color: #fff;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.slide.is-active { opacity: 1; transform: none; }

.s-cafe  { background: linear-gradient(135deg, #F59E0B, #E2543E); }
.s-gym   { background: linear-gradient(135deg, #0EA5E9, #6366F1); }
.s-padel { background: linear-gradient(135deg, #10B981, #0E7490); }
.s-hotel { background: linear-gradient(135deg, #312E81, #9333EA); }
.s-salon { background: linear-gradient(135deg, #0D9488, #115E59); }

.sl-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .9;
}
.sl-main { padding: 4px 0; }
.sl-kicker {
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 600;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sl-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.15;
  margin-top: 4px;
}
.sl-sub { font-size: clamp(12px, 1.6vw, 15px); opacity: .85; margin-top: 6px; }
.sl-price { margin-top: 8px; font-size: clamp(15px, 2.2vw, 21px); }
.sl-price strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 700;
  margin-left: 8px;
}
.sl-chip {
  align-self: flex-start;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: clamp(11px, 1.5vw, 13.5px);
  font-weight: 700;
}
.pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.sl-rows { display: flex; flex-direction: column; gap: 6px; padding: 2px 0; }
.sl-rows .row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 600;
}
.sl-rows .row.hot { background: rgba(255, 255, 255, .92); color: #1F2937; }
.sl-rows .ok { opacity: .8; font-weight: 500; }

.sl-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.slot {
  background: rgba(255, 255, 255, .92);
  color: #065F46;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: clamp(13px, 1.8vw, 17px);
}
.slot.dim {
  background: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.4vw, 13px);
}

.live-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 50% { opacity: .35; } }

.venue-toggle {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.vt {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
}
.vt:hover { color: #fff; }
.vt.is-active { background: #fff; color: var(--ink); box-shadow: 0 4px 14px rgba(0, 0, 0, .25); }

.industries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 8px;
}
.ind-label { font-weight: 700; font-size: 14px; color: var(--ink); margin-right: 6px; }
.ind-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  background: #fff;
}

/* ---------- Statisztika sáv ---------- */
.statbar { padding: 76px 0 0; }
.statbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-label {
  color: var(--ink-3);
  font-size: 13.5px;
  margin-top: 6px;
  line-height: 1.45;
}

/* ---------- Probléma ---------- */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.prob-card {
  border-radius: var(--radius);
  padding: 32px 28px;
}
.prob-card.p-1 { background: var(--c-gym-soft); }
.prob-card.p-2 { background: #FFEFD9; }
.prob-card.p-3 { background: var(--c-cafe-soft); }
.prob-ico {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  font-size: 27px;
  background: rgba(255, 255, 255, .75);
  border-radius: 16px;
  margin-bottom: 18px;
}
.prob-card h3 { font-size: 19px; margin-bottom: 10px; }
.prob-card p { color: var(--ink-2); font-size: 15px; }
.bridge {
  text-align: center;
  font-size: 19px;
  margin-top: 48px;
  color: var(--ink-2);
}
.bridge strong { color: var(--ink); }

/* ---------- Előtte / utána ---------- */
.compare { background: var(--soft); border-radius: var(--radius-lg); margin: 0 16px; }

.ba-wrap {
  position: relative;
  max-width: 780px;
  margin: 48px auto 0;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-big);
  --cut: 50%;
}
.ba-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.ba-static { background: linear-gradient(160deg, #EDEDEA, #DFDFD9); }
.paper {
  width: min(64%, 340px);
  background: #FBF6EA;
  padding: clamp(16px, 4vw, 30px) clamp(18px, 4.5vw, 34px);
  transform: rotate(-2.5deg);
  box-shadow: 0 14px 30px rgba(16, 17, 19, .18);
  color: #4A4639;
  position: relative;
}
.paper-title {
  font-family: "Courier New", monospace;
  font-weight: 700;
  letter-spacing: .3em;
  text-align: center;
  font-size: clamp(13px, 2vw, 17px);
  margin-bottom: clamp(8px, 2vw, 16px);
  color: #3E3A2E;
}
.paper ul li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Courier New", monospace;
  font-size: clamp(10.5px, 1.8vw, 14px);
  padding: clamp(2px, .8vw, 5px) 0;
}
.paper .dots {
  flex: 1;
  border-bottom: 1.5px dotted #B6AE99;
  transform: translateY(-3px);
}
.paper-note {
  font-family: "Courier New", monospace;
  font-size: clamp(9px, 1.4vw, 11.5px);
  margin-top: clamp(8px, 2vw, 14px);
  color: #8E8672;
  text-align: right;
}
.ba-tape {
  position: absolute;
  width: 86px;
  height: 26px;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  z-index: 2;
}
.ba-tape.t1 { top: 9%; left: 22%; transform: rotate(-8deg); }
.ba-tape.t2 { top: 7%; right: 23%; transform: rotate(6deg); }

.ba-digital {
  background: linear-gradient(160deg, #101113, #1C1D22);
  clip-path: inset(0 0 0 var(--cut));
  z-index: 2;
}
.mini-screen {
  width: min(72%, 400px);
  background: linear-gradient(135deg, var(--accent-bright), #6366F1);
  border-radius: 16px;
  border: 6px solid #26272C;
  box-shadow: 0 18px 50px rgba(14, 165, 233, .3);
  color: #fff;
  padding: clamp(12px, 3vw, 22px);
}
.ms-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: clamp(10px, 1.6vw, 12.5px);
  margin-bottom: clamp(8px, 1.6vw, 14px);
}
.ms-live { display: flex; align-items: center; gap: 5px; font-size: 10px; }
.ms-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(11px, 1.9vw, 14.5px);
  font-weight: 500;
  padding: clamp(4px, 1vw, 7px) clamp(6px, 1.4vw, 10px);
  border-radius: 8px;
}
.ms-list .ms-hot {
  background: rgba(255, 255, 255, .94);
  color: #B45309;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}
.ms-list .ms-hot em {
  font-style: normal;
  background: var(--amber);
  color: #fff;
  border-radius: 6px;
  padding: 1px 7px;
  font-size: .82em;
  margin-left: 6px;
}
.ms-foot {
  margin-top: clamp(8px, 1.6vw, 14px);
  font-size: clamp(9.5px, 1.5vw, 12px);
  opacity: .9;
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding-top: clamp(6px, 1.2vw, 10px);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--cut);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 14px rgba(0, 0, 0, .35);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
}
.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.ba-label {
  position: absolute;
  top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
}
.l-static { left: 14px; background: rgba(255, 255, 255, .85); color: var(--ink-2); }
.l-digital { right: 14px; background: var(--black); color: #fff; }

.compare-foot {
  text-align: center;
  color: var(--ink-3);
  font-size: 14.5px;
  margin-top: 28px;
}

/* ---------- Hogyan működik ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.how-step {
  border-radius: var(--radius);
  padding: 34px 30px;
}
.how-step.st-1 { background: var(--c-other-soft); }
.how-step.st-2 { background: var(--c-gym-soft); }
.how-step.st-3 { background: #FFF1F4; }
.how-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}
.how-step h3 { font-size: 19px; margin-bottom: 10px; }
.how-step p { color: var(--ink-2); font-size: 15px; }
.how-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.chip {
  background: var(--soft);
  color: var(--ink-2);
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 999px;
}

/* ---------- Kinek (use case) ---------- */
.uc-scrolly { position: relative; }
.uc-layout {
  display: grid;
  grid-template-columns: .9fr 1.45fr;
  gap: 36px;
  margin-top: 52px;
  align-items: start;
}
@media (min-width: 981px) {
  .uc-scrolly.is-pinned .uc-sticky {
    position: sticky;
    top: 110px;
  }
}
.uc-menu { display: flex; flex-direction: column; }
.uc-item {
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 20px 8px;
  cursor: pointer;
  transition: opacity .15s;
}
.uc-item:last-child { border-bottom: 1px solid var(--line); }
.uc-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.02em;
  color: #C6C8CC;
  transition: color .2s;
}
.uc-sub {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: transparent;
  transition: color .2s;
}
.uc-item:hover .uc-title { color: var(--ink-3); }
.uc-item.is-active .uc-sub { color: var(--ink-3); }
.uc-item.is-active[data-uc="gym"] .uc-title { color: var(--c-gym); }
.uc-item.is-active[data-uc="padel"] .uc-title { color: var(--c-padel); }
.uc-item.is-active[data-uc="hotel"] .uc-title { color: var(--c-hotel); }
.uc-item.is-active[data-uc="cafe"] .uc-title { color: var(--c-cafe); }
.uc-item.is-active[data-uc="other"] .uc-title { color: var(--c-other); }

.uc-panel {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
}
.uc-panel[hidden] { display: none; }
.uc-panel.uc-gym { background: var(--c-gym-soft); }
.uc-panel.uc-padel { background: var(--c-padel-soft); }
.uc-panel.uc-hotel { background: var(--c-hotel-soft); }
.uc-panel.uc-cafe { background: var(--c-cafe-soft); }
.uc-panel.uc-other { background: var(--c-other-soft); }

.uc-screen {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 17, 19, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 14px 30px rgba(16, 17, 19, .18);
}
.uc-screen span:last-child {
  min-width: 0; /* flex-gyerek zsugorodhat → ellipszis működik, nem feszít */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.uc-col h3 { font-size: 16.5px; margin-bottom: 12px; }

.check-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: var(--ink-2);
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 6px;
  color: var(--green);
  font-weight: 800;
}
.check-list.light li { color: rgba(255, 255, 255, .94); }
.check-list.light li::before { color: #A7F3D0; }

.win-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--ink-2);
  font-size: 15px;
}
.win-list li::before {
  content: "▲";
  position: absolute;
  left: 2px;
  top: 9px;
  color: var(--ink);
  font-size: 12px;
}
.win-list strong { color: var(--ink); }

/* ---------- Bento funkciók ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.bento-card {
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-card h3 { font-size: 19px; }
.bento-card p { font-size: 14px; color: var(--ink-2); }

.b-schedule { grid-column: span 3; background: #DCF3F9; }
.b-screens  { grid-column: span 3; background: #0F9D8F; }
.b-screens h3, .b-screens p { color: #fff; }
.b-screens p { opacity: .85; }
.b-playlist { grid-column: span 2; background: var(--indigo); }
.b-playlist h3, .b-playlist p { color: #fff; }
.b-playlist p { opacity: .85; }
.b-phone    { grid-column: span 2; background: #ECEAFE; }
.b-apps     { grid-column: span 2; background: #FFE9D2; }
.b-users    { grid-column: span 6; background: var(--soft); }

.mini-cal { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.mc-row { display: grid; grid-template-columns: 52px 1fr; gap: 10px; align-items: center; }
.mc-time { font-size: 12px; font-weight: 700; color: var(--ink-3); text-align: right; }
.mc-block {
  border-radius: 9px;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.mb-1 { background: #F59E0B; width: 72%; }
.mb-2 { background: var(--indigo); width: 96%; }
.mb-3 { background: #E8434A; width: 84%; }

.mini-stack { position: relative; margin-top: 18px; height: 110px; }
.stk {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 12px;
  height: 72px;
}
.stk-3 { width: 64%; top: 0;  background: rgba(255, 255, 255, .25); }
.stk-2 { width: 76%; top: 14px; background: rgba(255, 255, 255, .5); }
.stk-1 {
  width: 88%;
  top: 30px;
  background: linear-gradient(135deg, #0EA5E9, #6366F1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
  display: flex;
  align-items: flex-end;
  padding: 10px 14px;
}
.stk-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.mini-pl { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.pl-row {
  background: rgba(255, 255, 255, .16);
  border-radius: 9px;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}
.pl-row.pl-on { background: #fff; color: var(--indigo); }

.mini-phone {
  margin-top: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: 0 10px 24px rgba(16, 17, 19, .08);
}
.ph-line { height: 9px; border-radius: 99px; background: #E5E3F7; }
.ph-line.short { width: 62%; }
.ph-btn {
  align-self: flex-start;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 16px;
}
.ph-toast {
  align-self: flex-end;
  background: #DCFCE7;
  color: #15803D;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 12px;
}

.mini-apps { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.app {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.a-1 { background: #7D2AE8; }
.a-2 { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.a-3 { background: #FF0000; }
.a-4 { background: #B91C1C; font-size: 10px; }
.a-5 { background: #0F9D58; }
.a-6 { background: #1F2937; font-size: 11px; }

.users-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.mini-avatars { display: flex; }
.av {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  border: 3px solid #fff;
  margin-left: -12px;
}
.av:first-child { margin-left: 0; }
.av-1 { background: #F59E0B; }
.av-2 { background: var(--indigo); }
.av-3 { background: #0E9F6E; }
.av-4 { background: var(--black); }

/* ---------- Dizájn extra ---------- */
.design-extra { padding-top: 0; }
.design-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 68px);
  color: #fff;
}
.design-card::before,
.design-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.design-card::before {
  width: 420px; height: 420px; right: -130px; top: -160px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, .45), transparent);
}
.design-card::after {
  width: 300px; height: 300px; right: 90px; bottom: -150px;
  background: radial-gradient(closest-side, rgba(14, 165, 233, .35), transparent);
}
.badge {
  display: inline-block;
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.badge-invert { background: rgba(255, 255, 255, .14); color: #fff; }
.design-copy { position: relative; z-index: 1; max-width: 660px; }
.design-card h2 { text-align: left; color: #fff; }
.design-card > .design-copy > p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
}
.design-card .check-list { margin: 22px 0 32px; }

/* ---------- Árak ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  margin-top: 52px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.price-card.main {
  border: 2px solid var(--black);
  box-shadow: var(--shadow-big);
}
.price-card.secondary { background: var(--soft); border-color: transparent; }
.price-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 52px);
  margin-top: 10px;
  letter-spacing: -0.02em;
}
.price-amount span { font-size: 19px; font-weight: 600; color: var(--ink-3); }
.price-amount.alt { font-size: clamp(26px, 3.4vw, 34px); }
.price-note { color: var(--ink-3); font-size: 14px; margin: 2px 0 22px; }
.price-card .check-list { margin-bottom: 30px; }
.price-small {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 14px;
}

/* ---------- ROI kalkulátor ---------- */
.roi {
  margin-top: 56px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
}
.roi h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.roi-inputs label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  font-size: 15px;
  margin: 18px 0 10px;
}
.roi-inputs label:first-child { margin-top: 0; }
.roi-inputs output {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 19px;
}
.roi-inputs input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 99px;
  background: #EDEDEA;
  outline: none;
}
.roi-inputs input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(16, 17, 19, .35);
  cursor: pointer;
}
.roi-inputs input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(16, 17, 19, .35);
  cursor: pointer;
}
.roi-result {
  text-align: center;
  background: #DCF3F9;
  border-radius: var(--radius);
  padding: 32px 24px;
}
.roi-label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.roi-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
}
.roi-ratio { font-size: 14.5px; color: var(--ink-2); font-weight: 600; }
.roi-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- GYIK ---------- */
.faq-container { max-width: 760px; }
.faq h2 { margin-bottom: 28px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 22px 40px 22px 4px;
  position: relative;
  transition: color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  color: var(--ink-2);
  font-size: 15px;
  padding: 0 4px 24px;
  max-width: 680px;
}

/* ---------- Demo űrlap ---------- */
.cta-form {
  background: var(--black);
  border-radius: var(--radius-lg);
  margin: 0 16px 16px;
  color: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.form-copy h2 { text-align: left; color: #fff; }
.form-copy .lead {
  margin-top: 18px;
  font-size: 17.5px;
  color: rgba(255, 255, 255, .8);
}
.form-copy .lead strong { color: #fff; }
.form-copy .check-list { margin-top: 24px; }
.form-copy .check-list li { color: rgba(255, 255, 255, .85); }
.form-copy .check-list li::before { color: #5EEAD4; }

.demo-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 38px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  color: var(--ink);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.field .opt { color: var(--ink-3); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--soft);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--black);
  background: #fff;
}
.field textarea { resize: vertical; }

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 6px 0 20px;
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--black);
  flex-shrink: 0;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}
.form-status.err { color: #DC2626; }
.form-status.ok { color: var(--green); }

.form-success { text-align: center; padding: 40px 10px; }
.form-success .big { font-size: 44px; margin-bottom: 14px; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- Lábléc ---------- */
.site-footer {
  background: var(--bg);
  color: var(--ink-2);
  padding: 56px 0 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.logo-light .logo-word { color: var(--ink); }
.footer-tag { margin-top: 12px; font-size: 14.5px; color: var(--ink-3); }
.footer-mail {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--ink-3); font-size: 14.5px; }
.footer-links a:hover { color: var(--ink); }

.sources { margin-top: 28px; font-size: 12.5px; }
.sources summary {
  cursor: pointer;
  color: var(--ink-3);
  font-weight: 600;
}
.sources ol {
  margin: 14px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-3);
}
.sources a { color: var(--ink-2); text-decoration: underline; }
.sources-note { margin-top: 12px; color: #9CA3AF; }
.copyright {
  margin-top: 24px;
  font-size: 13px;
  color: #9CA3AF;
}

/* ---------- Mobil ragadós CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  transform: translateY(150%);
  transition: transform .3s ease;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(16, 17, 19, .08);
  border-radius: 999px;
  padding: 7px;
  box-shadow: 0 16px 44px rgba(16, 17, 19, .22);
  margin-bottom: env(safe-area-inset-bottom);
}
.mobile-cta.show { transform: none; }

/* ---------- Megjelenési animáció ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(7px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---------- Reszponzív ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .float-nav { gap: 12px; }
  .float-nav > .btn { margin-left: auto; }
  .hero { padding-top: 120px; }
  .scene { height: clamp(420px, 70vw, 560px); }
  .scene-tv { width: min(78%, 600px); }
  .statbar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .prob-grid, .how-grid { grid-template-columns: 1fr; }
  /* Vízszintes túllógás elleni biztonsági háló (a sticky csak ≥981px-en aktív, így nem törik) */
  html, body { overflow-x: hidden; }
  .uc-layout { grid-template-columns: 1fr; gap: 22px; }
  /* A grid-elemek min-width:0 nélkül a fül-sor min-content szélességére tágulnának → szétfeszítenék az oldalt */
  .uc-sticky, .uc-menu, .uc-panels { min-width: 0; }
  .uc-menu {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .uc-item, .uc-item:last-child { border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px; flex-shrink: 0; background: #fff; }
  .uc-item .uc-sub { display: none; }
  .uc-title { font-size: 14.5px !important; color: var(--ink-3); white-space: nowrap; }
  .uc-item.is-active { border-color: var(--black); background: var(--black); }
  .uc-item.is-active .uc-title { color: #fff !important; }
  .uc-cols { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .b-schedule, .b-screens, .b-playlist, .b-phone, .b-apps { grid-column: span 1; }
  .b-users { grid-column: span 2; }
  .price-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 108px; }
  .hero h1 br, .hero-lead br { display: none; }
  .hero-ctas .btn { width: 100%; }
  .scene { height: auto; aspect-ratio: 3 / 4; margin-top: 40px; }
  .scene-tv { width: 88%; top: 42%; }
  .venue-toggle { bottom: 14px; max-width: calc(100% - 20px); overflow-x: auto; scrollbar-width: none; }
  .venue-toggle::-webkit-scrollbar { display: none; }
  .vt { padding: 8px 13px; font-size: 13px; }
  .hero-micro span { padding: 7px 12px; font-size: 12.5px; }
  .float-nav { gap: 10px; padding: 8px 8px 8px 16px; }
  .logo-word { font-size: 17px; }
  .industries { display: none; }
  .statbar-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .bento { grid-template-columns: 1fr; }
  .b-users { grid-column: span 1; }
  .compare, .cta-form { margin: 0; border-radius: 0; }
  .cta-form { margin-bottom: 0; }
  .mobile-cta { display: block; }
  .ba-wrap { aspect-ratio: 4 / 5; }
  .ba-tape { width: 56px; height: 18px; }
}

/* ---------- Csökkentett mozgás ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slide, .scene-bg, html.js .reveal, .mobile-cta { transition: none; }
  html.js .reveal { filter: none; transform: none; opacity: 1; }
  .pulse, .live-dot, .ms-list .ms-hot { animation: none; }
  .scene-bg img { transform: scale(1.02); }
  .scene-tv { transform: translate(-50%, -50%); }
}

/* ============================================================
   Vertikum-aloldalak (padel/, kavezo/, konditerem/, hotel/, szalon/)
   ============================================================ */
body.v-gym   { --v: var(--c-gym);   --v-soft: var(--c-gym-soft); }
body.v-padel { --v: var(--c-padel); --v-soft: var(--c-padel-soft); }
body.v-hotel { --v: var(--c-hotel); --v-soft: var(--c-hotel-soft); }
body.v-cafe  { --v: var(--c-cafe);  --v-soft: var(--c-cafe-soft); }
body.v-other { --v: var(--c-other); --v-soft: var(--c-other-soft); }

.page-hero { padding-top: 132px; }
.crumbs {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }

.scene--page { height: clamp(340px, 40vw, 520px); margin-top: 44px; }
.subpage .statbar { padding-top: 64px; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.case-card {
  background: var(--v-soft, var(--soft));
  border-radius: var(--radius);
  padding: 26px 24px;
}
.case-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  color: var(--v, var(--ink));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.case-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.case-card p { font-size: 14px; color: var(--ink-2); }

.proof-box {
  background: var(--soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  margin-top: 48px;
}
.proof-box .win-list li { font-size: 15.5px; padding: 10px 0 10px 34px; }
.proof-box .win-list li::before { color: var(--v, var(--ink)); }
.proof-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 20px;
  text-align: center;
}
.proof-highlight {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 24px;
}
.proof-highlight h3 { font-size: 17px; margin-bottom: 8px; }
.proof-highlight p { font-size: 14.5px; color: var(--ink-2); }

.uc-more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
}
.uc-gym .uc-more { color: var(--c-gym); }
.uc-padel .uc-more { color: var(--c-padel); }
.uc-hotel .uc-more { color: var(--c-hotel); }
.uc-cafe .uc-more { color: var(--c-cafe); }
.uc-other .uc-more { color: var(--c-other); }

.footer-links + .footer-links { margin-left: 0; }

@media (max-width: 980px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .page-hero { padding-top: 106px; }
  .case-grid { grid-template-columns: 1fr; }
  .scene--page { aspect-ratio: auto; height: clamp(300px, 80vw, 420px); }
}
