/* ============================================
   GRAVITYFUSE — CSS
   Dark editorial luxury, kinetic energy
   Firefox + Mobile fix: 2024
   ============================================ */

:root {
  --bg: #05050a;
  --bg2: #08080f;
  --card: #0e0e1c;
  --accent: #e8ff47;
  --accent2: #c8e600;
  --white: #f5f5f0;
  --fg: #f5f5f0;
  --muted: rgba(245,245,240,0.45);
  --border: rgba(245,245,240,0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --max: 1200px;
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
#cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  /* FIX: mix-blend-mode eltávolítva — Firefoxon/mobilon problémás volt */
}
#cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(232,255,71,0.4); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.25s;
}

/* ---- NOISE OVERLAY ---- */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028; pointer-events: none; z-index: 9997;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.4s, background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  padding: 16px 48px;
  background: rgba(5,5,10,0.92);
  /* FIX: Firefox prefix a backdrop-filter-hez */
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 2px;
  color: var(--white); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.5px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  background: var(--accent); color: #05050a !important;
  padding: 11px 26px; border-radius: 100px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(232,255,71,0.3) !important;
}

/* ---- NAV RIGHT CLUSTER ---- */
.nav-right {
  display: flex; align-items: center; gap: 12px;
}

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-link {
  font-family: var(--font-display); font-size: 48px; letter-spacing: 2px;
  color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mm-link:hover { color: var(--accent); }
.mm-cta {
  background: var(--accent); color: #05050a !important;
  padding: 14px 28px; border-radius: 100px;
  font-size: clamp(15px, 4.5vw, 28px); letter-spacing: 0.5px; white-space: nowrap;
}

/* ---- MOBILE LANGUAGE SELECTOR ---- */
.mm-lang {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  width: 100%; max-width: 320px;
}
/* .mm-lang-btn — stílusok a css/lang.css-ből jönnek */
.mm-lang-code { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: #05050a; }
/* hide old flag/label */
.mm-lang-flag, .mm-lang-label { display: none; }
.mm-lang-arrow { color: #05050a; opacity: 0.65; transition: transform 0.25s; }
.mm-lang-selector.open .mm-lang-arrow { transform: rotate(180deg); }

.mm-lang-dropdown {
  width: 100%; background: #12121c;
  border: 1px solid rgba(245,245,240,0.1);
  border-radius: 14px; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s;
  margin-top: 8px;
}
.mm-lang-selector.open .mm-lang-dropdown { max-height: 500px; opacity: 1; }
.mm-lang-option {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 14px 20px;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(245,245,240,0.05);
  color: rgba(245,245,240,0.7);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; text-align: left;
  transition: background 0.15s, color 0.15s;
}
.mm-lang-option:last-child { border-bottom: none; }
.mm-lang-option:hover { background: rgba(245,245,240,0.06); color: var(--white); }
.mm-lang-option.active { color: var(--accent); }
.mm-lo-code {
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: 1px; min-width: 32px;
  color: inherit;
}
.mm-lang-option.active .mm-lo-code { color: var(--accent); }
.mm-lo-name { font-size: 14px; color: inherit; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.hero-mesh { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(100px); }
.blob1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,255,71,0.12) 0%, transparent 65%);
  top: -200px; right: -100px;
  animation: blobMove1 12s ease-in-out infinite;
}
.blob2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,40,180,0.18) 0%, transparent 65%);
  bottom: -100px; left: 100px;
  animation: blobMove2 15s ease-in-out infinite;
}
.blob3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,255,71,0.07) 0%, transparent 65%);
  top: 50%; left: 40%;
  animation: blobMove3 9s ease-in-out infinite;
}
@keyframes blobMove1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-60px,40px) scale(1.1)} 66%{transform:translate(40px,-30px) scale(0.95)} }
@keyframes blobMove2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(80px,-60px) scale(1.15)} }
@keyframes blobMove3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,40px)} }
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(245,245,240,0.03) 1px, transparent 1px),
    linear-gradient(90deg,rgba(245,245,240,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before { content:''; width:24px; height:1px; background:var(--accent); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px,7.5vw,112px);
  line-height: 0.92; letter-spacing: 2px; margin-bottom: 32px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s 0.35s forwards;
}
/* FIX: -webkit-text-stroke prefix + Firefox fallback */
.hero-title .line2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,245,240,0.35);
  text-stroke: 1px rgba(245,245,240,0.35);
}
.hero-title .accent-word { color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--muted); max-width: 520px; line-height: 1.75; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.65s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  background: var(--accent); color: #05050a;
  padding: 16px 36px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 48px rgba(232,255,71,0.25); white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(232,255,71,0.4); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-size: 15px; font-weight: 500; color: var(--muted);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* Hero card */
.hero-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; position: relative;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}
.hero-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 20px;
  background: linear-gradient(135deg,rgba(232,255,71,0.15),transparent 50%); z-index: -1;
}
.hcard-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hcard-stat { margin-bottom: 24px; }
.hcard-stat .num { font-family: var(--font-display); font-size: 64px; letter-spacing: 1px; line-height: 1; color: var(--white); }
.hcard-stat .num span { color: var(--accent); font-size: 40px; }
.hcard-stat .desc { font-size: 13px; color: var(--muted); margin-top: 4px; }
.hcard-divider { height: 1px; background: var(--border); margin: 20px 0; }
.hcard-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.hcard-row .label { font-size: 13px; color: var(--muted); }
.hcard-row .val { font-size: 13px; font-weight: 700; }
.hcard-row .val.green { color: var(--accent); }
.hcard-pulse {
  display: flex; align-items: center; gap: 10px; margin-top: 20px;
  padding: 12px 16px; background: rgba(232,255,71,0.06);
  border-radius: 10px; border: 1px solid rgba(232,255,71,0.12);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(232,255,71,0.4)} 50%{box-shadow:0 0 0 6px rgba(232,255,71,0)} }
.pulse-text { font-size: 12px; color: var(--muted); }
.pulse-text strong { color: var(--accent); }
.scroll-hint {
  position: absolute; bottom: 40px; left: 48px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  animation: lineGrow 2s ease-in-out infinite;
}
@keyframes lineGrow { 0%,100%{transform:scaleX(1)} 50%{transform:scaleX(1.4)} }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ---- TICKER ---- */
.ticker { background: var(--accent); padding: 14px 0; overflow: hidden; }
/* FIX: Firefox-on a 'width: max-content' nem mindig működik — explicit szélesség fallback-kel */
.ticker-inner {
  display: flex;
  animation: tickerScroll 28s linear infinite;
  /* FIX: max-content fallback */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-display); font-size: 18px; letter-spacing: 3px;
  color: #05050a; padding: 0 40px; white-space: nowrap;
  display: flex; align-items: center; gap: 16px;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: #05050a; opacity: 0.4; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ---- SECTIONS ---- */
.section { padding: 140px 48px; }
.container { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.eyebrow::after { content:''; flex:1; max-width:48px; height:1px; background:var(--accent); }
h2.big {
  font-family: var(--font-display);
  font-size: clamp(48px,6vw,82px);
  line-height: 0.95; letter-spacing: 2px; margin-bottom: 24px;
}
/* FIX: -webkit-text-stroke prefix */
h2.big em {
  font-family: var(--font-serif);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,245,240,0.3);
  text-stroke: 1px rgba(245,245,240,0.3);
}

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---- PROBLEM ---- */
.problem-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.problem-left h2 { font-family: var(--font-display); font-size: clamp(44px,5vw,70px); line-height: 0.95; letter-spacing: 2px; margin-bottom: 32px; }
.problem-left h2 .kill { color: var(--accent); }
.problem-left p { font-size: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.problem-right { display: flex; flex-direction: column; gap: 20px; }
.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover { border-color: rgba(232,255,71,0.25); transform: translateX(8px); }
.pain-icon {
  font-size: 22px; width: 48px; height: 48px;
  background: rgba(232,255,71,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pain-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- HOW IT WORKS ---- */
.how-section { background: var(--bg); }
.how-header { text-align: center; margin-bottom: 72px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px 40px 44px; position: relative;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  overflow: hidden; display: flex; flex-direction: column;
}
.process-step::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,71,0.07) 0%, transparent 70%);
  transition: opacity 0.4s, transform 0.4s; opacity: 0;
}
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,255,71,0.6) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.process-step:hover { border-color: rgba(232,255,71,0.25); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,255,71,0.08); }
.process-step:hover::before { opacity: 1; }
.process-step:hover::after { opacity: 1; transform: scale(1.2); }
.ps-number {
  font-family: var(--font-display); font-size: 72px; line-height: 1;
  color: rgba(245,245,240,0.04); letter-spacing: -3px;
  transition: color 0.4s; user-select: none; position: absolute; top: 28px; right: 32px;
}
.process-step:hover .ps-number { color: rgba(232,255,71,0.12); }
.ps-icon {
  width: 52px; height: 52px; background: rgba(232,255,71,0.06);
  border: 1px solid rgba(232,255,71,0.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.process-step:hover .ps-icon { background: rgba(232,255,71,0.1); border-color: rgba(232,255,71,0.35); transform: scale(1.08); }
.ps-icon svg { width: 24px !important; height: 24px !important; display: block; flex-shrink: 0; }
.process-step h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 1.5px; margin-bottom: 14px; color: var(--white); line-height: 1.1; }
.process-step p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-top: auto; padding-bottom: 20px; }
/* FIX: fit-content Firefox prefix */
.ps-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(232,255,71,0.6); background: rgba(232,255,71,0.06);
  border: 1px solid rgba(232,255,71,0.12); border-radius: 100px;
  padding: 6px 14px; margin-top: auto;
  /* FIX: fit-content cross-browser */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.process-step:hover .ps-tag { background: rgba(232,255,71,0.1); color: rgba(232,255,71,0.9); border-color: rgba(232,255,71,0.25); }

/* ---- BENEFITS ---- */
.benefits-section { background: var(--bg2); }
.benefits-layout { display: grid; grid-template-columns: 400px 1fr; gap: 100px; align-items: start; }
.benefits-left h2 { font-family: var(--font-display); font-size: clamp(48px,5vw,72px); letter-spacing: 2px; line-height: 0.95; margin-bottom: 32px; }
.benefits-left p { font-size: 17px; color: var(--muted); line-height: 1.8; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border-radius: 16px; overflow: hidden; }
.benefit-tile { background: var(--card); padding: 44px 36px; transition: background 0.3s; position: relative; overflow: hidden; }
.benefit-tile:hover { background: #111128; }
.btile-icon-wrap { width: 64px; height: 64px; margin-bottom: 20px; }
.bicon { width: 64px; height: 64px; }
.coin { fill: none; stroke: var(--accent); stroke-width: 2; }
.c1 { animation: coinBounce 2.4s ease-in-out infinite; }
.c2 { animation: coinBounce 2.4s ease-in-out infinite 0.15s; }
.c3 { animation: coinBounce 2.4s ease-in-out infinite 0.3s; }
.coin-shine { stroke: rgba(232,255,71,0.5); stroke-width: 1.5; animation: shinePulse 2.4s ease-in-out infinite; }
@keyframes coinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@keyframes shinePulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.clock-face { stroke: var(--accent); stroke-width: 2; fill: rgba(232,255,71,0.05); }
.clock-hand { stroke: var(--accent); stroke-width: 2.5; }
.hour-hand { transform-origin: 32px 32px; animation: rotateHour 4s linear infinite; }  /* hosszú mutató — gyors */
.min-hand { transform-origin: 32px 32px; animation: rotateMins 60s linear infinite; }  /* rövid mutató — lassú */
.tick { stroke: rgba(232,255,71,0.4); stroke-width: 2; stroke-linecap: round; }
@keyframes rotateHour { to { transform: rotate(360deg); } }
@keyframes rotateMins { to { transform: rotate(360deg); } }
.shield-body { fill: rgba(232,255,71,0.08); stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; }
.shield-check { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-dasharray: 40; stroke-dashoffset: 40; }
.benefit-tile:hover .shield-check { animation: drawCheck 0.5s ease forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.trophy-cup { fill: rgba(232,255,71,0.08); stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; }
.trophy-handle { fill: none; stroke: rgba(232,255,71,0.5); stroke-width: 2; stroke-linecap: round; }
.trophy-base, .trophy-base2 { fill: rgba(232,255,71,0.15); stroke: var(--accent); stroke-width: 1.5; }
.trophy-shine { stroke: rgba(255,255,255,0.4); stroke-width: 2; }
.bicon-stand { animation: trophyWobble 3s ease-in-out infinite; transform-origin: 32px 56px; }
@keyframes trophyWobble { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-3deg)} 75%{transform:rotate(3deg)} }
.benefit-tile h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; }
.benefit-tile p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---- ABOUT ---- */
.about-section { background: var(--bg); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(44px,5vw,68px); letter-spacing: 2px; line-height: 0.95; margin-bottom: 32px; }
.about-text p { font-size: 17px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.about-text p strong { color: var(--white); font-weight: 600; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,255,71,0.08); border: 1px solid rgba(232,255,71,0.2);
  border-radius: 100px; padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 16px;
}
.about-single { display: flex !important; justify-content: center; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-wrap {
  border-radius: 16px; overflow: visible; aspect-ratio: unset;
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0;
  position: relative; transition: border-color 0.3s;
}
.photo-wrap .photo-img {
  width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 14px 14px 0 0; display: block; flex-shrink: 0;
}
.about-single .photo-wrap { width: 220px; height: 280px; aspect-ratio: unset; }
.photo-wrap:nth-child(2) { margin-top: 40px; }
.photo-wrap:hover { border-color: rgba(232,255,71,0.2); }
.photo-initial { font-family: var(--font-display); font-size: 80px; letter-spacing: 2px; color: rgba(232,255,71,0.2); }
.photo-name {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  display: block; width: 100%; text-align: center;
  padding: 10px 0 8px; background: transparent;
  position: relative; z-index: 2; flex-shrink: 0;
}
.photo-role { font-size: 12px; color: rgba(245,245,240,0.25); }

/* ---- PRICING ---- */
.pricing-section { background: var(--bg2); }
.pricing-center { text-align: center; margin-bottom: 16px; }
.pricing-subtitle { text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 64px; max-width: 560px; margin-left: auto; margin-right: auto; }
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
/* individual card */
.pc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.pc:hover { border-color: rgba(232,255,71,0.25); }
.pc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,rgba(232,255,71,0.3),transparent);
}
/* featured card */
.pc-featured {
  border-color: rgba(232,255,71,0.35);
  background: #101020;
  transform: translateY(-12px);
}
.pc-featured::before {
  background: linear-gradient(90deg,transparent,var(--accent),transparent);
}
.pc-featured:hover { border-color: rgba(232,255,71,0.6); }
.pc-featured-label {
  background: var(--accent);
  color: #05050a;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
}
.pc-top { padding: 36px 36px 28px; border-bottom: 1px solid var(--border); }
.pc-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.pc-name {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.pc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pc-price-wrap { margin-top: 4px; }
.pc-price {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
}
.pc-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.pc-features {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pf { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.pf::before {
  content: '✓'; width: 22px; height: 22px; min-width: 22px;
  background: rgba(232,255,71,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--accent); flex-shrink: 0;
  margin-top: 1px;
}
.pc-cta { padding: 0 36px 36px; }
.pc-cta .btn-primary,
.pc-cta .btn-ghost { width: 100%; justify-content: center; font-size: 15px; padding: 16px 24px; }
.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: rgba(245,245,240,0.3);
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---- GUARANTEE ---- */
.guarantee-section { background: var(--bg); }
.guarantee-box {
  max-width: 800px; margin: 0 auto;
  background: linear-gradient(135deg,rgba(232,255,71,0.06) 0%,rgba(232,255,71,0.02) 100%);
  border: 1px solid rgba(232,255,71,0.2); border-radius: 24px;
  padding: 80px; text-align: center; position: relative; overflow: hidden;
}
.guarantee-box::before {
  content: '🛡'; position: absolute; font-size: 320px; opacity: 0.025;
  top: 50%; left: 50%; transform: translate(-50%,-50%); user-select: none;
}
.guarantee-box h2 { font-family: var(--font-display); font-size: clamp(44px,5vw,68px); letter-spacing: 2px; line-height: 1; margin-bottom: 24px; position: relative; }
.guarantee-box h2 span { color: var(--accent); }
.guarantee-box p { font-size: 18px; color: var(--muted); line-height: 1.75; position: relative; }

/* ============================================
   REFERENCES / PORTFOLIO SECTION
   ============================================ */
.testimonials-section { background: var(--bg2); }
.testimonials-header { text-align: center; margin-bottom: 72px; }

.ref-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ---- LEFT: Browser frame with real iframe ---- */
.ref-browser-wrap {
  border-radius: 16px; overflow: hidden;
  background: #0a0a12;
  border: 1px solid rgba(245,245,240,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,255,71,0.05);
  transition: box-shadow 0.4s, border-color 0.4s;
}
.ref-browser-wrap:hover {
  border-color: rgba(232,255,71,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,255,71,0.1);
}
.ref-browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(245,245,240,0.04);
  border-bottom: 1px solid rgba(245,245,240,0.06);
}
.ref-dots { display: flex; gap: 6px; }
.ref-dots span { width: 11px; height: 11px; border-radius: 50%; }
.ref-dots span:nth-child(1) { background: #ff5f57; }
.ref-dots span:nth-child(2) { background: #ffbd2e; }
.ref-dots span:nth-child(3) { background: #28c840; }
.ref-url-bar {
  flex: 1; background: rgba(245,245,240,0.06); border-radius: 20px;
  padding: 5px 14px; display: flex; align-items: center; gap: 8px;
}
.ref-url-bar svg { color: rgba(245,245,240,0.3); flex-shrink: 0; }
.ref-url-text {
  font-family: var(--font-body); font-size: 11px;
  color: rgba(245,245,240,0.4); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ref-browser-btns { display: flex; gap: 8px; }
.ref-browser-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(245,245,240,0.05); border: 1px solid rgba(245,245,240,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  color: rgba(245,245,240,0.4); text-decoration: none; font-size: 13px;
}
.ref-browser-btn:hover { background: rgba(245,245,240,0.1); color: var(--white); }
.ref-iframe-scaler {
  width: 100%; height: 520px; overflow: hidden; position: relative;
}
.ref-iframe-scaler iframe {
  position: absolute; top: 0; left: 0;
  width: 200%; height: 200%;
  transform: scale(0.5); transform-origin: top left;
  border: none;
  /* FIX: 'auto' a helyes érték Firefox-ban (nem 'all') */
  pointer-events: auto;
}

/* ---- RIGHT: Info block ---- */
.ref-info-block { display: flex; flex-direction: column; gap: 32px; }
.ref-project-header { display: flex; align-items: center; gap: 14px; }
.ref-project-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px rgba(232,255,71,0.5);
  animation: pulse 2s infinite; flex-shrink: 0;
}
.ref-project-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
}
.ref-client-name {
  font-family: var(--font-display); font-size: clamp(36px,4vw,52px);
  letter-spacing: 1px; line-height: 1; color: var(--white);
}
.ref-client-sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.ref-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ref-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid rgba(232,255,71,0.22);
  color: rgba(232,255,71,0.7); border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.ref-tag:hover { background: rgba(232,255,71,0.08); color: var(--accent); }
.ref-divider { height: 1px; background: var(--border); }
.ref-quote-wrap { position: relative; padding-left: 24px; }
.ref-quote-wrap::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--accent), transparent); border-radius: 2px;
}
.ref-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 19px; line-height: 1.75; color: rgba(245,245,240,0.85);
}
.ref-author { display: flex; align-items: center; gap: 14px; }
.ref-author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #05050a;
  font-family: var(--font-display); font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ref-author-name { font-size: 15px; font-weight: 700; color: var(--white); }
.ref-author-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ref-open-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: #05050a; background: var(--accent);
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  align-self: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(232,255,71,0.2);
}
.ref-open-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,255,71,0.35); }
.ref-open-btn svg { transition: transform 0.2s; }
.ref-open-btn:hover svg { transform: translateX(4px); }
.ref-more {
  text-align: center; margin-top: 64px;
  font-size: 13px; color: rgba(245,245,240,0.25); letter-spacing: 1px;
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 380px 1fr; gap: 100px; align-items: start; }
.faq-left h2 { font-family: var(--font-display); font-size: clamp(44px,5vw,68px); letter-spacing: 2px; line-height: 0.95; margin-bottom: 24px; }
.faq-left p { font-size: 16px; color: var(--muted); line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--white); font-family: var(--font-body); font-size: 17px; font-weight: 600;
  padding: 28px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-plus {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent);
  transition: transform 0.3s, background 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: rgba(232,255,71,0.08); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-a p { padding: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 200px; }

/* ---- SCARCITY ---- */
.scarcity {
  background: rgba(232,255,71,0.05);
  border-top: 1px solid rgba(232,255,71,0.15); border-bottom: 1px solid rgba(232,255,71,0.15);
  padding: 20px 48px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.scarcity-text { font-size: 14px; font-weight: 500; color: var(--accent); letter-spacing: 0.5px; }
.scarcity-text strong { font-weight: 800; }
#timer { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; color: var(--accent); }

/* ---- FINAL CTA ---- */
.final-cta { background: var(--bg2); padding: 140px 48px; text-align: center; }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(56px,8vw,110px); letter-spacing: 2px; line-height: 0.92; margin-bottom: 32px; }
/* FIX: -webkit-text-stroke prefix */
.final-cta h2 .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,245,240,0.25);
  text-stroke: 1px rgba(245,245,240,0.25);
}
.final-cta p { font-size: 18px; color: var(--muted); margin-bottom: 56px; }
/* ---- PACKAGE SELECTOR ---- */
.pkg-selector { max-width: 640px; margin: 0 auto 40px; }
.pkg-selector-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  text-align: center;
}
.pkg-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pkg-opt {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 12px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-family: var(--font-body);
  color: var(--muted);
  text-align: center;
}
.pkg-opt:hover {
  border-color: rgba(232,255,71,0.3);
  background: rgba(232,255,71,0.04);
  transform: translateY(-2px);
  color: var(--white);
}
.pkg-opt.selected {
  border-color: var(--accent);
  background: rgba(232,255,71,0.08);
  color: var(--white);
}
.pkg-opt-icon { font-size: 22px; line-height: 1; margin-bottom: 2px; display:flex; align-items:center; justify-content:center; }
.pkg-opt-icon svg { width:22px; height:22px; flex-shrink:0; }
.pkg-opt-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: inherit;
  line-height: 1;
}
.pkg-opt-sub {
  font-size: 11px;
  color: inherit;
  opacity: 0.7;
  line-height: 1.3;
}
.pkg-opt-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.pkg-opt.selected .pkg-opt-check {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 640px) {
  .pkg-options { grid-template-columns: repeat(2, 1fr); }
}

.email-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto 16px; }
.email-form input {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: 100px; padding: 18px 28px; color: var(--white);
  font-family: var(--font-body); font-size: 16px; outline: none;
  transition: border-color 0.3s;
}
.email-form input::placeholder { color: rgba(245,245,240,0.25); }
.email-form input:focus { border-color: rgba(232,255,71,0.4); }
.email-form .btn-primary { padding: 18px 36px; white-space: nowrap; }
.form-note { font-size: 13px; color: rgba(245,245,240,0.25); }

/* ---- FOOTER ---- */
footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-top {
  max-width: var(--max); margin: 0 auto; padding: 80px 48px 60px;
  display: grid; grid-template-columns: 320px 1fr; gap: 80px;
}
.footer-logo { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.footer-social-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,245,240,0.3); margin-bottom: 12px; }
.footer-socials { display: flex; gap: 16px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--accent); color: var(--accent); }
.footer-links-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); max-width: var(--max); margin: 0 auto;
  padding: 24px 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-copy { font-size: 13px; color: rgba(245,245,240,0.3); }
.footer-legal-note { font-size: 12px; color: rgba(245,245,240,0.2); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9990;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 28px; display: none;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5); max-width: 900px; margin: 0 auto;
}
.cookie-banner.show { display: block; animation: fadeUp 0.5s ease forwards; }
.cookie-inner { display: flex; align-items: center; gap: 24px; }
.cookie-text { flex: 1; font-size: 14px; color: var(--muted); line-height: 1.6; }
.cookie-text strong { color: var(--white); display: block; margin-bottom: 4px; }
.cookie-text a { color: var(--accent); text-decoration: none; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { font-family: var(--font-body); font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 100px; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
.cookie-decline { background: var(--border); color: var(--muted); border: 1px solid var(--border); }
.cookie-decline:hover { color: var(--white); }
.cookie-accept { background: var(--accent); color: #05050a; }
.cookie-accept:hover { box-shadow: 0 4px 20px rgba(232,255,71,0.3); transform: translateY(-1px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .process-step { padding: 32px 28px; }
  .ps-number { font-size: 52px; }
  .ps-icon { width: 44px; height: 44px; margin-bottom: 20px; border-radius: 12px; }
  .process-step h3 { font-size: 22px; }
  .process-step p { font-size: 13px; }
  .ref-showcase { grid-template-columns: 1fr; gap: 48px; }
  .ref-info-block { order: -1; }
  .ref-iframe-scaler { height: 380px; }
}

@media (max-width: 1100px) {
  .pricing-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .pc-featured { transform: translateY(0); }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 60px; }
  .benefits-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photos { order: -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .section { padding: 100px 24px; }
  .hero { padding: 120px 24px 80px; }
  .scarcity { padding: 16px 24px; flex-direction: column; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 40px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 24px; }
  .footer-links-group { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .lang-selector { display: none !important; }
  .nav-right .ls { display: none !important; }
  .hamburger { display: flex; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 32px 28px; }
}

/* ---- MOBILE OVERFLOW PREVENTION ---- */
@media (max-width: 768px) {
  nav { padding: 16px 20px; max-width: 100vw; }
  .nav-right { gap: 8px; overflow: visible; }
}
@media (max-width: 480px) {
  nav { padding: 14px 16px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .email-form { flex-direction: column; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pc-featured { transform: translateY(0); }
  .pc-top, .pc-features, .pc-cta { padding-left: 28px; padding-right: 28px; }
  .guarantee-box { padding: 48px 32px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .ref-iframe-scaler { height: 280px; }
}

/* ============================================================
   REF PREVIEW — képes háttér verzió
   ============================================================ */
.ref-static-preview {
  position: relative;
  width: 100%;
  height: 520px;
  display: block;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

/* Háttérkép réteg */
.ref-preview-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/sziszi-preview.jpg');
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ref-static-preview:hover .ref-preview-img {
  transform: scale(1.04);
}

/* Sötét overlay */
.ref-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,10,0.15) 0%,
    rgba(5,5,10,0.35) 50%,
    rgba(5,5,10,0.75) 100%
  );
  transition: background 0.3s;
}
.ref-static-preview:hover .ref-preview-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5,5,10,0.10) 0%,
    rgba(5,5,10,0.30) 50%,
    rgba(5,5,10,0.70) 100%
  );
}

/* Tartalom a kép tetején */
.ref-preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ref-preview-logo {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1;
}
.ref-preview-sub {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.ref-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.4);
  border-radius: 100px;
  padding: 9px 20px;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  background: rgba(232,255,71,0.06);
}
.ref-static-preview:hover .ref-preview-cta {
  background: rgba(232,255,71,0.14);
  border-color: rgba(232,255,71,0.7);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .ref-static-preview { height: 380px; }
}
@media (max-width: 640px) {
  .ref-static-preview { height: 260px; }
  .ref-preview-content { padding: 20px 24px; }
  .ref-preview-logo { font-size: 30px; }
}

/* ============================================================
   LANG DROPDOWN — több nyelv esetén scrollozható
   ============================================================ */
.ls-drop {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,255,71,0.3) transparent;
}
.ls-drop::-webkit-scrollbar { width: 4px; }
.ls-drop::-webkit-scrollbar-thumb { background: rgba(232,255,71,0.3); border-radius: 4px; }

/* Mobile lang gombok — wrap ha sok van */
.mm-langs {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 360px;
}
/* ---- photo-hidden: accessible replacement for inline display:none ---- */
.photo-hidden { display: none; }


/* ============================================
   INLINE STYLES ÁTHELYEZVE — index.html-ből
   (cache-elhetőség és teljesítmény javítás)
   ============================================ */

/* ---- About: 2 fotó egymás mellett ---- */
.about-photos { display: flex !important; gap: 24px; justify-content: center; align-items: flex-start; }
.photo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }

/* ---- Promó kód ---- */
.promo-section { margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.promo-toggle {
  background: none; border: none; color: rgba(245,245,240,0.4);
  font-family: var(--font-body); font-size: 13px; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s; padding: 0;
}
.promo-toggle:hover { color: rgba(245,245,240,0.7); }
.promo-wrap { display: flex; align-items: center; gap: 10px; }
.promo-wrap[hidden] { display: none !important; }
.promo-input {
  background: rgba(245,245,240,0.06); border: 1px solid rgba(245,245,240,0.15);
  border-radius: 8px; color: var(--white); font-family: var(--font-body);
  font-size: 14px; padding: 10px 14px; outline: none; width: 180px;
  transition: border-color 0.2s; text-transform: uppercase; letter-spacing: 1px;
}
.promo-input:focus { border-color: var(--accent); }
.promo-msg { font-size: 13px; font-family: var(--font-body); min-width: 180px; }

/* ---- Logo ---- */
.logo-img {
  height: 42px; width: 42px;
  display: inline-block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
  margin-right: 8px;
}
.logo { display: inline-flex !important; align-items: center; }
.logo:hover .logo-img { opacity: 0.75; }
.footer-logo { display: inline-flex !important; align-items: center; }
.footer-logo .logo-img { height: 36px; width: 36px; margin-right: 8px; }

/* ---- Launch note ---- */
.launch-note {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(232,255,71,0.05);
  border: 1px solid rgba(232,255,71,0.25);
  border-radius: 14px;
  padding: 18px 28px;
  margin: 20px auto 28px;
  max-width: 560px;
  text-align: center;
}
.launch-badge {
  display: inline-block;
  background: #e8ff47;
  color: #0a0a12;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
}
.launch-note p {
  margin: 0;
  font-size: 15px;
  color: rgba(245,245,240,0.7);
  line-height: 1.7;
}
.launch-note strong { color: #e8ff47; font-weight: 700; }

/* ---- Form row (name field) ---- */
.form-row { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; }
.form-row input[type="text"] {
  flex: 1; min-width: 140px;
  background: rgba(245,245,240,0.06);
  border: 1px solid rgba(245,245,240,0.15);
  border-radius: 12px; color: var(--white);
  font-family: var(--font-body); font-size: 16px;
  padding: 18px 22px; outline: none;
  transition: border-color 0.2s;
}
.form-row input[type="text"]:focus { border-color: var(--accent); }

/* ---- Animáció accessibility fix ---- */
@media (prefers-reduced-motion: reduce) {
  .mesh-blob { animation: none !important; }
}
@media (max-width: 768px) {
  .mesh-blob { animation: none !important; opacity: 0.3; }
}

/* ---- About photos mobile ---- */
@media (max-width: 480px) {
  .about-photos { gap: 16px; }
  .promo-wrap { flex-direction: column; }
  .promo-input { width: 100%; }
}
/* ---- FAQ contact links ---- */
.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.faq-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,245,240,0.55);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.faq-contact-link:hover { color: var(--accent); }
.faq-contact-link svg { flex-shrink: 0; }

/* ---- Footer contact links ---- */
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 20px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,245,240,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--accent); }
.footer-contact-link svg { flex-shrink: 0; }