﻿:root { --page-max: 1320px; --gutter: 64px; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { height: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  background: #060608;
  color: #fff;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ── Particle canvas (hero only) ── */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Unified aurora background (fixed, page-wide) ── */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: none; /* láthatatlan réteg (opacity:0 volt) — kivéve a GPU-terhelést minden platformon */
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
/* LEFT blob — kék→lila, csak a bal térfélen ingázik */
.ab1 {
  width: 46vw; height: 46vw; top: 6%; left: -13%;
  background: radial-gradient(circle, rgba(2,100,223,0.32) 0%, rgba(139,92,246,0.15) 45%, transparent 70%);
  animation: auroraLeft 15s ease-in-out infinite, auroraPulse 5s ease-in-out infinite;
}
/* RIGHT blob — lila→rózsaszín, csak a jobb térfélen ingázik */
.ab2 {
  width: 46vw; height: 46vw; top: 42%; right: -13%;
  background: radial-gradient(circle, rgba(139,92,246,0.28) 0%, rgba(236,72,153,0.14) 45%, transparent 70%);
  animation: auroraRight 17s ease-in-out infinite, auroraPulse 6s ease-in-out infinite 1.2s;
}
@keyframes auroraLeft {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%     { transform: translate(7vw, 28vh) scale(1.18); }
}
@keyframes auroraRight {
  0%,100% { transform: translate(0, 0) scale(1.08); }
  50%     { transform: translate(-6vw, 20vh) scale(0.92); }
}
@keyframes auroraPulse {
  0%,100% { opacity: 0.5; }
  50%     { opacity: 0.92; }
}

/* ── Global page ambient glows (always visible, scroll-independent) ── */
.page-glows {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pg {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.pg1 {
  width: 55vw; height: 55vw;
  top: -18%; left: -12%;
  background: radial-gradient(circle, rgba(2,100,223,0.26) 0%, transparent 65%);
  animation: pgDrift1 24s ease-in-out infinite;
}
.pg2 {
  width: 48vw; height: 48vw;
  top: 15%; right: -14%;
  background: radial-gradient(circle, rgba(139,92,246,0.20) 0%, transparent 65%);
  animation: pgDrift2 30s ease-in-out infinite 5s;
}
.pg3 {
  width: 38vw; height: 38vw;
  top: 40%; left: 22%;
  background: radial-gradient(circle, rgba(56,189,248,0.14) 0%, transparent 65%);
  animation: pgDrift3 20s ease-in-out infinite 10s;
}
.pg4 {
  width: 32vw; height: 32vw;
  top: 10%; right: 10%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 65%);
  animation: pgDrift1 26s ease-in-out infinite 3s;
}
@keyframes pgDrift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,14vh) scale(1.1)} }
@keyframes pgDrift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-7vw,-10vh) scale(0.9)} }
@keyframes pgDrift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-9vw,7vh) scale(1.12)} }

/* ── Navbar ── */
nav.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 20px;
  background: rgba(8,10,20,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: calc(min(var(--page-max), 100%) - 2 * var(--gutter));
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
nav.site-nav.nav-scrolled {
  background: rgba(8,10,20,0.45);
  border-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.03) inset;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 6px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.22s, background 0.22s, box-shadow 0.22s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 10px rgba(56,189,248,0.08);
}
.nav-link.active {
  color: #fff;
  background:
    linear-gradient(rgba(8,10,20,0.95), rgba(8,10,20,0.95)) padding-box,
    linear-gradient(120deg, #3b82f6, #38BDF8 55%, #818cf8) border-box;
  box-shadow: 0 0 14px rgba(56,189,248,0.22);
}
.nav-cta {
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  padding: 9px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, #0264DF 0%, #0ea5e9 100%);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.3), 0 2px 16px rgba(2,100,223,0.45), 0 1px 0 rgba(255,255,255,0.1) inset;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.16) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.48s ease;
  pointer-events: none;
}
.nav-cta:hover::after { transform: translateX(120%); }
.nav-cta:hover {
  background: linear-gradient(135deg, #0275f5 0%, #22d3ee 100%);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.5), 0 6px 24px rgba(2,100,223,0.55), 0 1px 0 rgba(255,255,255,0.12) inset;
  transform: translateY(-1px);
}

/* ── Nav right group ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Language Switcher (desktop) ── */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 3px;
}
.lang-opt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  padding: 4px 9px;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.lang-opt.active {
  color: #fff;
  background: #0264DF;
}
.lang-opt:hover:not(.active) {
  color: rgba(255,255,255,0.65);
}
.lang-div {
  display: none;
}

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0264DF, #0ea5e9);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #06080F;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  pointer-events: none;
  overflow: hidden;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -20%;
  width: 75%;
  padding-bottom: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,100,223,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-menu::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -20%;
  width: 60%;
  padding-bottom: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mm-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 24px;
}
.mm-top {
  display: flex;
  align-items: center;
  height: 76px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mm-logo { display: flex; align-items: center; text-decoration: none; }
.mm-logo img { height: 30px; width: auto; }
.mm-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 2px;
}
.mm-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.22s, border-color 0.22s;
  opacity: 0;
  transform: translateX(-18px);
}
.mobile-menu.open .mm-link {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.38s ease, transform 0.38s ease, background 0.22s, border-color 0.22s;
}
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: 0.05s, 0.05s, 0s, 0s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: 0.10s, 0.10s, 0s, 0s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: 0.15s, 0.15s, 0s, 0s; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: 0.20s, 0.20s, 0s, 0s; }
.mobile-menu.open .mm-link:nth-child(5) { transition-delay: 0.25s, 0.25s, 0s, 0s; }
.mm-link:hover, .mm-link:active {
  background:
    linear-gradient(rgba(6,8,15,0.98), rgba(6,8,15,0.98)) padding-box,
    linear-gradient(120deg, #3b82f6, #38BDF8 55%, #818cf8) border-box;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(56,189,248,0.14);
}
.mm-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.22s;
  line-height: 1;
}
.mm-link:hover .mm-label,
.mm-link:active .mm-label { color: #fff; }
.mm-foot {
  padding: 18px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mm-cta {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
  border-radius: 12px;
  display: block;
  margin-top: 12px;
  opacity: 0;
  transform: translateX(-18px);
}
.mobile-menu.open .mm-cta {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.38s ease 0.30s, transform 0.38s ease 0.30s, background 0.25s, box-shadow 0.25s;
}
/* ── Mobile menu language switcher ── */
.mm-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 4px;
  opacity: 0;
  transform: translateX(-18px);
}
.mobile-menu.open .mm-lang {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.38s ease 0.32s, transform 0.38s ease 0.32s;
}
.mm-lang-opt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  padding: 8px 22px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.mm-lang-opt.active {
  color: #fff;
  background: #0264DF;
}
.mm-lang-opt:hover:not(.active) {
  color: rgba(255,255,255,0.6);
}
.mm-lang-div {
  color: rgba(255,255,255,0.1);
  font-size: 0.85rem;
  user-select: none;
  flex-shrink: 0;
}

.mm-contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mm-contact {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-contact:hover { color: rgba(255,255,255,0.6); }

/* ── Hero Block (wrapper fills 100vh) ── */
.hero-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 55% at 68% 28%, rgba(2,100,223,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 10% 72%, rgba(139,92,246,0.09) 0%, transparent 60%);
}
/* Smooth fade: hero particles dissolve into the content below */
.hero-block::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 340px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,6,8,0.45) 45%, rgba(6,6,8,0.85) 78%, #060608 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero Layout ── */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
  padding: 110px var(--gutter) 48px;
  gap: 56px;
  position: relative;
  z-index: 1;
}

/* ── Hero Left ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}
/* Soft dark vignette behind the text so particles don't fight readability */
.hero-left::before {
  content: '';
  position: absolute;
  inset: -80px -60px -80px -80px;
  background: radial-gradient(ellipse 85% 90% at 20% 50%,
    rgba(6,6,8,0.78) 30%,
    rgba(6,6,8,0.35) 65%,
    transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(56,189,248,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(2,100,223,0.08);
  border: 1px solid rgba(2,100,223,0.28);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  box-shadow: 0 0 16px rgba(2,100,223,0.1);
  width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38BDF8, 0 0 4px #38BDF8;
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.6); }
}
.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.hero-h1 .accent {
  background: linear-gradient(120deg, #3b82f6 0%, #38BDF8 55%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.52);
  max-width: 460px;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0264DF 0%, #0ea5e9 100%);
  border: none;
  padding: 13px 24px;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.35), 0 4px 22px rgba(2,100,223,0.45), 0 1px 0 rgba(255,255,255,0.1) inset;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.16) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.48s ease;
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover {
  background: linear-gradient(135deg, #0275f5 0%, #22d3ee 100%);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.55), 0 8px 32px rgba(2,100,223,0.55), 0 1px 0 rgba(255,255,255,0.12) inset;
  transform: translateY(-2px);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary svg { transition: transform 0.2s ease; }
.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 13px 24px;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  padding-top: 4px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  color: rgba(56,189,248,0.85);
  font-weight: 400;
  background: rgba(2,100,223,0.07);
  border: 1px solid rgba(2,100,223,0.25);
  padding: 7px 13px 7px 9px;
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hero-badge:hover {
  background: rgba(2,100,223,0.14);
  border-color: rgba(56,189,248,0.4);
  color: rgba(56,189,248,1);
}
.hero-badge svg {
  color: #38BDF8;
  flex-shrink: 0;
}

/* ── Hero Right: Floating Cards ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 580px;
}

/* Ambient glow behind cards */
.hero-right::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(2,100,223,0.12) 0%, rgba(139,92,246,0.06) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.cards-scene {
  position: relative;
  width: 390px;
  height: 510px;
}

/* Individual notification cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(8,10,18,0.8);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.06) inset;
  white-space: nowrap;
  transition: border-color 0.3s, transform 0.3s;
}
.float-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-2px) !important; }

.fc-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.fc-body { display: flex; flex-direction: column; gap: 3px; }
.fc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}
.fc-sub {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.2;
}
.fc-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 7px;
  flex-shrink: 0;
}

/* Card positions & individual animations */
.card-1 {
  top: 16px; left: 6px;
  animation: cardFloat1 7s ease-in-out infinite;
}
.card-2 {
  top: 148px; right: 0px;
  animation: cardFloat2 9s ease-in-out infinite;
}
.card-3 {
  top: 288px; left: 14px;
  animation: cardFloat3 8s ease-in-out infinite;
}
.card-4 {
  top: 416px; right: 8px;
  animation: cardFloat1 10s ease-in-out infinite 1s;
}

@keyframes cardFloat1 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-11px); }
}
@keyframes cardFloat2 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(10px); }
}
@keyframes cardFloat3 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
@keyframes cardFloat4 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  50%      { transform: translateY(-9px) translateX(3px); }
}

/* Subtle vertical connector line between cards */
.cards-connector {
  position: absolute;
  left: 50%;
  top: 60px; bottom: 60px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(2,100,223,0.28) 18%,
    rgba(56,189,248,0.22) 50%,
    rgba(139,92,246,0.22) 82%,
    transparent 100%);
  pointer-events: none;
}

/* ── Shared section container ── */
.section-container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section tag (reusable) ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(56,189,248,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(2,100,223,0.08);
  border: 1px solid rgba(2,100,223,0.28);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  box-shadow: 0 0 16px rgba(2,100,223,0.08);
}
.section-tag-dot {
  width: 6px; height: 6px;
  background: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38BDF8;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

/* ── Problem Section ── */
.problem-section {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
  background: #060608;
  overflow: hidden;
}

/* Glow blob animations */
@keyframes glowDrift1 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-45px) scale(1.18); }
}
@keyframes glowDrift2 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(38px) scale(0.85); }
}
@keyframes glowDrift3 {
  0%, 100% { transform: translateX(-50%) translateY(0px) scale(1); }
  50%       { transform: translateX(-50%) translateY(-28px) scale(1.12); }
}

/* Ambient glow blobs */
.problem-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -10%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse at center,
    rgba(2,100,223,0.16) 0%,
    rgba(2,100,223,0.06) 40%,
    transparent 70%);
  pointer-events: none;
  filter: blur(36px);
  animation: glowDrift1 9s ease-in-out infinite;
}
.problem-section::after {
  content: '';
  position: absolute;
  top: 8%; right: -8%;
  width: 52%; height: 62%;
  background: radial-gradient(ellipse at center,
    rgba(139,92,246,0.13) 0%,
    rgba(139,92,246,0.04) 40%,
    transparent 70%);
  pointer-events: none;
  filter: blur(44px);
  animation: glowDrift2 11s ease-in-out infinite 1.5s;
}

/* Cyan glow behind the accordion */
.problem-section .glow-mid {
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  width: 65%; height: 55%;
  background: radial-gradient(ellipse at center,
    rgba(56,189,248,0.08) 0%,
    rgba(2,100,223,0.04) 45%,
    transparent 72%);
  pointer-events: none;
  filter: blur(52px);
  animation: glowDrift3 10s ease-in-out infinite 0.8s;
}

/* 2-column layout: text left, accordion right */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
}

.problem-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.problem-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: #fff;
}
.problem-h2 .accent {
  background: linear-gradient(120deg, #3b82f6 0%, #38BDF8 55%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-intro {
  font-size: 0.95rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ── Problem Accordion ── */
.prob-accordion {
  display: flex;
  gap: 12px;
  height: 400px;
  align-items: stretch;
}

.prob-panel {
  position: relative;
  flex: 0 0 68px;
  border-radius: 20px;
  background: rgba(8,10,20,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}
.prob-panel.active {
  flex: 1;
  cursor: default;
}
.prob-panel:hover:not(.active) { background: rgba(8,12,26,0.72); }

/* Gradient border */
.prob-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(2,100,223,0.28) 0%,
    rgba(56,189,248,0.1) 40%,
    rgba(139,92,246,0.14) 80%,
    rgba(2,100,223,0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: background 0.4s;
  pointer-events: none;
}
.prob-panel.active::before {
  background: linear-gradient(135deg,
    rgba(2,100,223,0.65) 0%,
    rgba(56,189,248,0.28) 40%,
    rgba(139,92,246,0.32) 80%,
    rgba(2,100,223,0.18) 100%);
}

/* Inner glow on active */
.prob-panel::after {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(2,100,223,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.prob-panel.active::after { opacity: 1; }

/* Collapsed: vertical number + title */
.prob-collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.18s;
}
.prob-panel.active .prob-collapsed {
  opacity: 0;
  pointer-events: none;
}

.prob-vert-num {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(56,189,248,0.45);
  letter-spacing: 0.12em;
}
.prob-vert-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Expanded: full card content */
.prob-expanded {
  position: absolute;
  inset: 0;
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.28s 0.3s;
  pointer-events: none;
}
.prob-panel.active .prob-expanded {
  opacity: 1;
  pointer-events: auto;
}

.prob-num-big {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(56,189,248,0.38);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Animated icon — no box, bare SVG */
.prob-anim-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.prob-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.prob-text {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ── Animated icon keyframes ── */

/* 01 · Radar ping */
.ping-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: radarPing 2.4s ease-out infinite;
}
.pr1 { animation-delay: 0s; }
.pr2 { animation-delay: 0.8s; }
.pr3 { animation-delay: 1.6s; }
@keyframes radarPing {
  0%   { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* 02 · Browser scan beam */
.scan-beam {
  animation: scanDown 2.2s ease-in-out infinite;
}
@keyframes scanDown {
  0%   { transform: translateY(0px); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateY(31px); opacity: 0; }
}

/* 03 · Flow dashes */
.flow-dashes {
  stroke-dasharray: 7 5;
  stroke-dashoffset: 0;
  animation: dashMove 1.8s linear infinite;
}
@keyframes dashMove {
  to { stroke-dashoffset: -48; }
}
.flow-end-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: endPing 2s ease-out infinite 1.1s;
}
@keyframes endPing {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* 04 · Typing dots */
.typing-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.td1 { animation-delay: 0s; }
.td2 { animation-delay: 0.22s; }
.td3 { animation-delay: 0.44s; }
@keyframes dotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* ── Hero Scene ── */
.hero-right { overflow: hidden; }

.hero-scene {
  position: relative;
  width: 480px;
  height: 500px;
  flex-shrink: 0;
}
.hero-scene::before {
  content: '';
  position: absolute;
  top: 42%; left: 38%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(2,100,223,0.14) 0%, rgba(139,92,246,0.07) 50%, transparent 70%);
  filter: blur(44px);
  pointer-events: none;
}

/* Base floating card */
.sc-card {
  position: absolute;
  background: rgba(8,10,20,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 18px;
  box-shadow: 0 14px 50px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
}

/* ── Dashboard — center, háttér réteg ── */
.sc-dash {
  top: 82px; left: 120px; right: auto;
  width: 240px;
  padding: 14px 13px 15px;
  border: 1px solid rgba(255,255,255,0.1);
  animation: cardFloat4 8s ease-in-out infinite 0.3s;
  z-index: 2;
}
.sc-dash-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sc-dash-dot { width: 7px; height: 7px; border-radius: 50%; background: #0264DF; box-shadow: 0 0 8px rgba(2,100,223,0.7); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
.sc-dash-title { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.sc-dash-stats { display: flex; gap: 7px; margin-bottom: 11px; }
.sc-stat { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 8px 6px 7px; text-align: center; }
.sc-stat-num { font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; display: block; }
.sc-stat-lbl { font-size: 0.57rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.07em; display: block; }
.sc-stat-up  { font-size: 0.62rem; color: #34D399; font-weight: 600; display: block; }
.sc-sparkline { height: 32px; }
.sc-sparkline svg { width: 100%; height: 100%; overflow: visible; }
/* Landscape dashboard body */
.sc-dash-body { display: flex; gap: 14px; align-items: flex-start; }
.sc-dash-left { flex: 1; min-width: 0; }
.sc-dash-right { width: 160px; flex-shrink: 0; display: flex; flex-direction: column; gap: 5px; }
.sc-dash-chart-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.22); text-align: center; letter-spacing: 0.05em; text-transform: uppercase; }
.sc-dash-live {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 600;
  color: #34D399;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.22);
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.sc-dash-metrics {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sc-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  text-align: center;
}
.sc-metric-ico {
  width: 22px; height: 22px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-metric-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.sc-metric-lbl {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Google Review — dashboard alatt, középre igazítva ── */
.sc-review {
  top: 274px; left: 120px; right: auto; bottom: auto;
  width: 240px;
  padding: 13px 15px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: cardFloat1 7s ease-in-out infinite 0.5s;
  z-index: 4;
}
.sc-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sc-g-logo {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-review-author {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.sc-review-platform {
  font-size: 0.61rem;
  color: rgba(255,255,255,0.32);
}
.sc-ai-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(56,189,248,0.85);
  background: rgba(2,100,223,0.1);
  border: 1px solid rgba(2,100,223,0.28);
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}
.sc-ai-dot {
  width: 5px; height: 5px;
  background: #38BDF8;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.sc-stars {
  color: #F59E0B;
  font-size: 0.92rem;
  letter-spacing: 2px;
  margin-bottom: 9px;
}
.sc-review-quote {
  font-size: 0.76rem;
  line-height: 1.58;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  font-style: italic;
}

/* ── AI Chatbot — bal-felső sarok, rálóg a dashboardra ── */
.sc-chat {
  top: 0; left: 0; bottom: auto; right: auto;
  width: 158px;
  border: 1px solid rgba(2,100,223,0.28);
  animation: cardFloat3 7.5s ease-in-out infinite 0.7s;
  overflow: hidden;
  z-index: 4;
}
.sc-chat-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 13px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sc-chat-name {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.sc-chat-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1px;
}
.sc-platforms {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.sc-plat {
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-online-dot {
  width: 7px; height: 7px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 6px #34D399;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.sc-chat-msgs {
  padding: 11px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-msg {
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.73rem;
  line-height: 1.4;
  max-width: 92%;
}
.sc-msg-user {
  align-self: flex-end;
  background: rgba(2,100,223,0.18);
  border: 1px solid rgba(2,100,223,0.24);
  color: rgba(255,255,255,0.85);
  border-bottom-right-radius: 3px;
}
.sc-msg-ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border-bottom-left-radius: 3px;
}
.sc-typing-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  border-bottom-left-radius: 3px;
  width: fit-content;
  align-self: flex-start;
}
.sc-typing-dot {
  width: 5px; height: 5px;
  background: rgba(56,189,248,0.65);
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.sc-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.sc-typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* ── AI Automation — jobb-felső sarok, rálóg a dashboardra ── */
.sc-tasks {
  top: 0; right: 0; left: auto; bottom: auto;
  width: 158px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(139,92,246,0.2);
  animation: cardFloat2 8.5s ease-in-out infinite 1.4s;
  z-index: 4;
}
.sc-tasks-hd {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sc-tasks-ico {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-tasks-label {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.sc-task {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sc-task:last-child { border-bottom: none; padding-bottom: 0; }
.sc-task-done  { color: rgba(255,255,255,0.62); }
.sc-task-running { color: rgba(56,189,248,0.85); }
.sc-task-ico {
  width: 17px; height: 17px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-ico-done    { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.22); }
.sc-ico-running { background: rgba(2,100,223,0.1);  border: 1px solid rgba(2,100,223,0.28); }
.sc-spinner {
  width: 8px; height: 8px;
  border: 1.5px solid rgba(56,189,248,0.25);
  border-top-color: #38BDF8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Floating rating pill */
.sc-pill {
  position: absolute;
  background: rgba(8,10,20,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
/* ── Booking — bal-alsó sarok ── */
.sc-booking {
  bottom: 0; left: 0; top: auto; right: auto;
  width: 158px;
  padding: 13px 13px 14px;
  border: 1px solid rgba(56,189,248,0.18);
  animation: cardFloat1 8.5s ease-in-out infinite 2.2s;
  z-index: 4;
}
.sc-bk-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sc-bk-ico { width: 24px; height: 24px; border-radius: 7px; background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-bk-title { font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.88); line-height: 1.2; }
.sc-bk-sub { font-size: 0.59rem; color: rgba(255,255,255,0.28); }
.sc-bk-item { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sc-bk-item:last-child { border-bottom: none; padding-bottom: 0; }
.sc-bk-time { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 1px; }
.sc-bk-name { font-size: 0.62rem; color: rgba(255,255,255,0.36); }
.sc-bk-badge { display: inline-block; font-size: 0.57rem; font-weight: 600; padding: 2px 7px; border-radius: 100px; margin-top: 3px; }
.sc-bk-ok { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.25); color: #34D399; }
.sc-bk-wait { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: #F59E0B; }

/* ── Rating card — jobb-alsó sarok ── */
.sc-rating {
  bottom: 0; right: 0; top: auto; left: auto;
  width: 158px;
  padding: 16px 15px 17px;
  border: 1px solid rgba(245,158,11,0.2);
  animation: cardFloat2 9s ease-in-out infinite 1.8s;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.sc-rating-stars { font-size: 1.05rem; color: #F59E0B; letter-spacing: 3px; line-height: 1; }
.sc-rating-num { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.sc-rating-count { font-size: 0.62rem; color: rgba(255,255,255,0.35); }
.sc-rating-badge { font-size: 0.58rem; font-weight: 600; color: rgba(56,189,248,0.8); background: rgba(2,100,223,0.1); border: 1px solid rgba(2,100,223,0.22); padding: 2px 8px; border-radius: 100px; margin-top: 3px; }

.sc-pill-rating {
  display: none;
  color: rgba(255,255,255,0.65);
  animation: cardFloat2 7s ease-in-out infinite 0.4s;
  z-index: 5;
}

/* ── Mobile Hero Scene ── */
.hero-mobile-scene {
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
}
.hero-mobile-scene::before {
  content: '';
  position: absolute;
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: radial-gradient(ellipse, rgba(2,100,223,0.13) 0%, rgba(139,92,246,0.06) 50%, transparent 70%);
  filter: blur(38px);
  pointer-events: none;
}
.hm-card {
  background: rgba(8,10,20,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.05) inset;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}
/* Grid placement */
.hm-dash  { grid-column: 1; grid-row: 1 / 3; animation: cardFloat4 8s ease-in-out infinite 0.3s; border-color: rgba(255,255,255,0.1); padding: 11px 11px 10px; display: flex; flex-direction: column; }
.hm-chat  { grid-column: 2; grid-row: 1; animation: cardFloat3 7.5s ease-in-out infinite 0.7s; border-color: rgba(2,100,223,0.25); padding: 10px 11px 10px; }
.hm-tasks { grid-column: 2; grid-row: 2; animation: cardFloat1 9s ease-in-out infinite 1s; border-color: rgba(129,140,248,0.2); padding: 9px 11px 10px; }

/* Dashboard */
.hm-dash-hd { display: flex; align-items: center; gap: 6px; margin-bottom: 9px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hm-dot { width: 6px; height: 6px; border-radius: 50%; background: #0264DF; box-shadow: 0 0 7px rgba(2,100,223,0.7); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
.hm-label { font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.5); flex: 1; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.hm-live { font-size: 0.53rem; font-weight: 600; color: #34D399; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2); padding: 2px 6px; border-radius: 100px; flex-shrink: 0; }
.hm-stats { display: flex; gap: 5px; margin-bottom: 8px; }
.hm-stat { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 6px 3px 5px; text-align: center; }
.hm-num { font-size: 0.84rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 3px; display: block; }
.hm-lbl { font-size: 0.48rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.hm-up  { font-size: 0.53rem; color: #34D399; font-weight: 600; display: block; }
.hm-sparkline { flex: 1; min-height: 28px; }
.hm-sparkline svg { width: 100%; height: 100%; display: block; }

/* Chat */
.hm-chat-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.hm-chat-name { font-size: 0.67rem; font-weight: 600; color: rgba(255,255,255,0.88); }
.hm-online { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 5px rgba(52,211,153,0.7); animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
.hm-msg { font-size: 0.63rem; padding: 5px 8px; border-radius: 8px; margin-bottom: 5px; line-height: 1.35; }
.hm-msg:last-child { margin-bottom: 0; }
.hm-msg-user { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.48); text-align: right; }
.hm-msg-ai   { background: rgba(2,100,223,0.18); border: 1px solid rgba(2,100,223,0.22); color: rgba(255,255,255,0.82); }

/* Tasks */
.hm-tasks-hd { display: flex; align-items: center; gap: 5px; margin-bottom: 7px; }
.hm-tasks-hd span { font-size: 0.61rem; font-weight: 600; color: rgba(129,140,248,0.8); }
.hm-task { display: flex; align-items: center; gap: 5px; font-size: 0.6rem; color: rgba(255,255,255,0.42); margin-bottom: 5px; }
.hm-task:last-child { margin-bottom: 0; }
.hm-check { font-size: 0.56rem; color: #34D399; flex-shrink: 0; }
.hm-spin  { width: 7px; height: 7px; border: 1.5px solid rgba(56,189,248,0.25); border-top-color: #38BDF8; border-radius: 50%; animation: hmSpin 1s linear infinite; flex-shrink: 0; }
@keyframes hmSpin { to { transform: rotate(360deg); } }

/* ── Services Section ── */
.services-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 20px;
  background: #060608;
  overflow: hidden;
}

@keyframes srvGlow1 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-40px) scale(1.14)} }
@keyframes srvGlow2 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(32px) scale(0.88)} }

.services-section::before {
  content:''; position:absolute; top:-60px; right:-5%;
  width:48%; height:65%;
  background:radial-gradient(ellipse at center, rgba(139,92,246,0.1) 0%, transparent 65%);
  filter:blur(50px); pointer-events:none;
  animation:srvGlow1 11s ease-in-out infinite;
}
.services-section::after {
  content:''; position:absolute; bottom:-40px; left:-5%;
  width:48%; height:60%;
  background:radial-gradient(ellipse at center, rgba(2,100,223,0.09) 0%, transparent 65%);
  filter:blur(45px); pointer-events:none;
  animation:srvGlow2 9s ease-in-out infinite 2s;
}

.services-top {
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:20px; margin-bottom:52px;
}
.services-h2 {
  font-family:'Outfit',sans-serif; font-size:clamp(2rem,3vw,2.8rem);
  font-weight:700; line-height:1.12; letter-spacing:-0.025em; color:#fff; max-width:720px;
}
.services-h2 .accent {
  background:linear-gradient(120deg,#3b82f6 0%,#38BDF8 55%,#818cf8 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.services-intro {
  font-size:0.95rem; line-height:1.78; color:rgba(255,255,255,0.45);
  font-weight:300; max-width:560px;
}

/* 3-pillar system connector */
.services-pillars {
  display:flex; align-items:center; justify-content:center;
  gap:0; margin-bottom:52px;
}
.srv-pillar { display:flex; flex-direction:column; align-items:center; gap:5px; padding:12px 28px; }
.srv-pillar-dot { width:10px; height:10px; border-radius:50%; margin-bottom:2px; animation:pulse-dot 3s ease-in-out infinite; }
.srv-pillar-label { font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.85); white-space:nowrap; }
.srv-pillar-sub { font-size:0.65rem; color:rgba(255,255,255,0.3); letter-spacing:0.1em; text-transform:uppercase; }
.srv-pillar-line {
  flex:1; max-width:90px; height:1px;
  background:linear-gradient(to right,rgba(255,255,255,0.08),rgba(255,255,255,0.04),rgba(255,255,255,0.08));
  position:relative;
}
.srv-pillar-line::after {
  content:'›'; position:absolute; top:-9px; left:50%; transform:translateX(-50%);
  font-size:0.75rem; color:rgba(255,255,255,0.18);
}

/* 2×3 grid */
.services-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px;
}

/* Service card */
.srv-card {
  position:relative; padding:32px 32px 30px; border-radius:20px;
  background:rgba(8,10,20,0.6); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  display:flex; flex-direction:column; overflow:hidden;
  transition:background 0.3s;
}
.srv-card:hover { background:rgba(10,14,28,0.78); }

.srv-card::before {
  content:''; position:absolute; inset:0; border-radius:20px; padding:1px;
  background:linear-gradient(135deg, var(--sa,rgba(2,100,223,0.45)) 0%, rgba(56,189,248,0.12) 45%, var(--sb,rgba(2,100,223,0.08)) 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask-composite:exclude; transition:background 0.4s; pointer-events:none;
}
.srv-card:hover::before {
  background:linear-gradient(135deg, var(--sa,rgba(2,100,223,0.7)) 0%, rgba(56,189,248,0.25) 45%, var(--sb,rgba(2,100,223,0.15)) 100%);
}

/* Icon container */
.srv-icon {
  width:52px; height:52px; border-radius:15px; display:flex; align-items:center;
  justify-content:center; margin-bottom:20px; flex-shrink:0; position:relative; z-index:1;
}

.srv-title {
  font-size:1.08rem; font-weight:700; color:#fff; line-height:1.25;
  margin-bottom:10px; position:relative; z-index:1; letter-spacing:-0.01em;
}
.srv-desc {
  font-size:0.875rem; line-height:1.72; color:rgba(255,255,255,0.42);
  font-weight:300; flex:1; margin-bottom:20px; position:relative; z-index:1;
}
.srv-goal {
  display:inline-flex; align-items:center; gap:7px;
  font-size:0.72rem; font-weight:500; color:rgba(255,255,255,0.5);
  position:relative; z-index:1;
}
.srv-goal-dot { width:5px; height:5px; border-radius:50%; flex-shrink:0; }

/* CTA card (6th) */
.srv-card-cta {
  background:linear-gradient(145deg, rgba(2,100,223,0.16) 0%, rgba(139,92,246,0.1) 100%);
  border:1px solid rgba(2,100,223,0.28); justify-content:center; align-items:flex-start;
}
.srv-card-cta::before { display:none; }
.srv-cta-eyebrow { font-size:0.68rem; font-weight:600; color:rgba(56,189,248,0.7); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:12px; }
.srv-cta-title { font-size:1.45rem; font-weight:800; letter-spacing:-0.025em; color:#fff; line-height:1.15; margin-bottom:12px; }
.srv-cta-sub { font-size:0.88rem; color:rgba(255,255,255,0.42); line-height:1.65; margin-bottom:28px; flex:1; }
.srv-cta-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:28px; }
.srv-cta-tag { font-size:0.7rem; font-weight:500; color:rgba(56,189,248,0.75); background:rgba(2,100,223,0.1); border:1px solid rgba(2,100,223,0.22); padding:4px 11px; border-radius:100px; }

/* Service icon keyframes */
@keyframes srvBrowserScan { 0%,100%{transform:translateY(0);opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{transform:translateY(22px);opacity:0} }
@keyframes srvPinPulse { 0%{transform:scale(0.3);opacity:0.8} 100%{transform:scale(2.8);opacity:0} }
@keyframes srvBarRise { 0%,100%{transform:scaleY(0.4)} 50%{transform:scaleY(1)} }
@keyframes srvOrbit { to{transform:rotate(360deg)} }
@keyframes srvFunnelDot { 0%,100%{transform:translateY(-6px);opacity:0} 40%,60%{opacity:1} 100%{transform:translateY(10px);opacity:0} }

.srv-scan-beam { animation:srvBrowserScan 2.4s ease-in-out infinite; }
.srv-pin-ring { transform-box:fill-box; transform-origin:center; animation:srvPinPulse 2.2s ease-out infinite; }
.srv-pin-ring:nth-child(2) { animation-delay:0.7s; }
.srv-bar { transform-box:fill-box; transform-origin:bottom; animation:srvBarRise 2s ease-in-out infinite; }
.srv-bar:nth-child(2) { animation-delay:0.3s; }
.srv-bar:nth-child(3) { animation-delay:0.6s; }
.srv-orbit { animation:srvOrbit 4s linear infinite; transform-box:fill-box; transform-origin:center; }
.srv-funnel-dot { animation:srvFunnelDot 1.8s ease-in-out infinite; }
.srv-funnel-dot:nth-child(2) { animation-delay:0.4s; }
.srv-funnel-dot:nth-child(3) { animation-delay:0.8s; }

/* ════════════════════════════════════════════
   PHONE SCROLL SHOWCASE (pinned storytelling)
   ════════════════════════════════════════════ */
.phone-scroll-section {
  position: relative;
  z-index: 1;
  background: #060608;
  height: auto;
  min-height: 100vh;
}
.pss-sticky {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
}

/* Glow behind phone — hue shifts per slide */
.pss-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 640px; height: 640px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.85;
  pointer-events: none;
  transition: background 0.8s ease;
  background: radial-gradient(circle, rgba(2,100,223,0.38) 0%, transparent 65%);
}

/* Left (blue) + Right (pink) ambient glows */
.pss-sticky::before,
.pss-sticky::after {
  content: '';
  position: absolute;
  top: 8%; height: 80%;
  filter: blur(62px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.pss-sticky::before {
  left: 0; width: 32%;
  background: radial-gradient(ellipse at center, rgba(2,100,223,0.34) 0%, rgba(56,189,248,0.14) 45%, transparent 70%);
  animation: pssGlowLeft 13s ease-in-out infinite;
}
.pss-sticky::after {
  right: 0; width: 30%;
  background: radial-gradient(ellipse at center, rgba(236,72,153,0.28) 0%, rgba(236,72,153,0.10) 45%, transparent 70%);
  animation: pssGlowRight 15s ease-in-out infinite;
}
@keyframes pssGlowLeft {
  0%,100% { transform: translateY(0) scale(1);    opacity: 0.72; }
  50%      { transform: translateY(-44px) scale(1.14); opacity: 1; }
}
@keyframes pssGlowRight {
  0%,100% { transform: translateY(0) scale(1.06);  opacity: 0.62; }
  50%      { transform: translateY(38px) scale(0.9); opacity: 0.96; }
}

.pss-inner {
  position: relative;
  max-width: var(--page-max);
  margin: 80px auto 0;
  width: 100%;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 68px;
  z-index: 2;
}

/* ── Left text column ── */
.pss-left { position: relative; height: 420px; }
.pss-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateX(-26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.pss-text.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.pss-num { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; color: rgba(56,189,248,0.55); margin-bottom: 16px; }
.pss-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.9rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.12; color: #fff; margin-bottom: 20px;
}
.pss-desc { font-size: 1.08rem; line-height: 1.78; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 26px; max-width: 450px; }
.pss-goal {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.62);
  background: rgba(2,100,223,0.08); border: 1px solid rgba(2,100,223,0.22);
  padding: 8px 15px; border-radius: 100px; width: fit-content;
}
.pss-goal-dot { width: 6px; height: 6px; border-radius: 50%; background: #38BDF8; box-shadow: 0 0 8px #38BDF8; flex-shrink: 0; }

/* ── Right badges column ── */
.pss-right { position: relative; height: 420px; }
.pss-badges {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 14px; align-items: flex-start;
  opacity: 0; transform: translateX(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.pss-badges.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.pss-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(8,10,20,0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  padding: 13px 16px; min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.pss-badge-ico { width: 38px; height: 38px; border-radius: 11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pss-badge-val { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.15; }
.pss-badge-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 1px; }

/* ── Named category stepper (clickable) ── */
.pss-nav { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; position: relative; z-index: 3; flex-wrap: wrap; }
.pss-navitem {
  font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 100px;
  padding: 8px 16px; cursor: pointer; white-space: nowrap;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pss-navitem:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.16); }
.pss-navitem.active {
  color: #fff; border: 1px solid transparent;
  background:
    linear-gradient(#0b0e16, #0b0e16) padding-box,
    linear-gradient(120deg, #3b82f6, #38BDF8 55%, #818cf8) border-box;
  box-shadow: 0 0 20px rgba(56,189,248,0.22);
}

/* Arrow navigation — telefon mindkét oldalán, minden nézetben */
.pss-phone-stage { display: flex; flex-direction: row; align-items: center; gap: 14px; }
.pss-arr {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #0264DF 0%, #38BDF8 100%);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; cursor: pointer; flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(2,100,223,0.4);
  transition: transform 0.13s ease, box-shadow 0.16s ease;
  -webkit-tap-highlight-color: transparent;
}
.pss-arr:hover { box-shadow: 0 4px 18px rgba(56,189,248,0.55); }
.pss-arr:active { transform: scale(0.88); }

/* ── Phone hardware ── */
.pss-phone-wrap { perspective: 1300px; display: flex; justify-content: center; }
.pss-phone {
  position: relative;
  width: 300px; height: 612px;
  border-radius: 46px;
  background: #0c0d12;
  box-shadow:
    inset 0 0 0 2px #2a2d3a,
    inset 0 0 0 8px #000,
    0 50px 90px -20px rgba(0,0,0,0.85),
    0 24px 50px -12px rgba(2,100,223,0.18);
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
}
.pss-screen { position: absolute; inset: 8px; border-radius: 38px; background: #05070e; overflow: hidden; }
.pss-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 25px; background: #000; border-radius: 100px; z-index: 60;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 11px;
}
.pss-notch-dot { width: 6px; height: 6px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; animation: pulse-dot 2s ease-in-out infinite; }
.pss-screen-glare {
  position: absolute; inset: 0; z-index: 40; pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 42%);
}

/* realistic iOS status bar */
.pss-statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 55;
  pointer-events: none;
}
.pss-sb-time { font-size: 0.74rem; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.pss-sb-icons { display: flex; align-items: center; gap: 5px; }
.pss-sb-icons svg { display: block; }

/* ── Phone slide (screen content) ── */
.pss-slide {
  position: absolute; inset: 0;
  padding: 44px 15px 18px;
  display: flex; flex-direction: column;
  opacity: 0; transform: scale(0.96) translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.pss-slide.active { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }

/* phone header */
.psc-hd { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; padding: 0 4px; }
.psc-hd-ico { width: 32px; height: 32px; border-radius: 9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.psc-hd-title { font-size: 0.84rem; font-weight: 700; color: #fff; line-height: 1.1; }
.psc-hd-sub { font-size: 0.6rem; color: rgba(255,255,255,0.35); margin-top: 1px; }
.psc-hd-live { margin-left:auto; font-size:0.54rem; font-weight:600; color:#34D399; background:rgba(52,211,153,0.1); border:1px solid rgba(52,211,153,0.22); padding:2px 7px; border-radius:100px; }

/* generic phone cards */
.psc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 13px; padding: 11px 12px; margin-bottom: 8px; }
.psc-card-row { display: flex; align-items: center; gap: 10px; }
.psc-ic { width: 30px; height: 30px; border-radius: 9px; display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.psc-t { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.15; }
.psc-s { font-size: 0.6rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.psc-tag { margin-left:auto; font-size: 0.55rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; flex-shrink:0; }
.psc-tag-ok { background:rgba(52,211,153,0.12); border:1px solid rgba(52,211,153,0.25); color:#34D399; }
.psc-tag-run { background:rgba(56,189,248,0.12); border:1px solid rgba(56,189,248,0.25); color:#38BDF8; }
.psc-tag-wait { background:rgba(245,158,11,0.1); border:1px solid rgba(245,158,11,0.22); color:#F59E0B; }

/* metric grid */
.psc-mgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 9px; }
.psc-metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 11px; }
.psc-mval { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.psc-mlbl { font-size: 0.55rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; }

/* mini bar chart */
.psc-chart { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 10px 11px 8px; }
.psc-chart-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom: 7px; }
.psc-chart-t { font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.psc-chart-up { font-size: 0.58rem; font-weight: 700; color: #34D399; }
.psc-bars { display: flex; align-items: flex-end; gap: 5px; height: 64px; }
.psc-bar { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg,#38BDF8,#0264DF); animation: pscBar 2.4s ease-in-out infinite; transform-origin: bottom; }
@keyframes pscBar { 0%,100%{transform:scaleY(0.85)} 50%{transform:scaleY(1)} }

/* website preview slide */
.psc-web { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); margin-bottom: 9px; }
.psc-web-bar { display:flex; align-items:center; gap:5px; padding: 7px 10px; background: rgba(255,255,255,0.05); }
.psc-web-d { width:6px; height:6px; border-radius:50%; }
.psc-web-url { margin-left:6px; font-size:0.56rem; color:rgba(255,255,255,0.4); }
.psc-web-hero { padding: 16px 13px; background: linear-gradient(160deg, rgba(2,100,223,0.16), rgba(8,10,20,0.4)); }
.psc-web-tag { display:inline-block; font-size:0.5rem; font-weight:600; color:rgba(56,189,248,0.9); background:rgba(2,100,223,0.15); border:1px solid rgba(2,100,223,0.3); padding:2px 7px; border-radius:100px; margin-bottom:8px; }
.psc-web-h1 { font-size:0.98rem; font-weight:800; color:#fff; line-height:1.12; letter-spacing:-0.02em; margin-bottom:10px; }
.psc-web-cta { display:inline-flex; align-items:center; gap:5px; font-size:0.58rem; font-weight:600; color:#fff; background:#0264DF; padding:6px 12px; border-radius:8px; box-shadow:0 4px 14px rgba(2,100,223,0.4); }
.psc-chips { display:flex; gap:6px; }
.psc-chip { flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; padding:9px 4px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); border-radius:10px; }
.psc-chip-lbl { font-size:0.52rem; color:rgba(255,255,255,0.55); font-weight:500; text-align:center; }

/* before/after speed bars */
.psc-speed-row { display:flex; align-items:center; gap:8px; margin-bottom:7px; }
.psc-speed-row:last-child { margin-bottom:0; }
.psc-speed-lbl { font-size:0.55rem; color:rgba(255,255,255,0.42); width:38px; flex-shrink:0; }
.psc-speed-track { flex:1; height:7px; border-radius:100px; background:rgba(255,255,255,0.05); overflow:hidden; }
.psc-speed-fill { display:block; height:100%; border-radius:100px; }
.psc-speed-val { font-size:0.58rem; font-weight:700; width:28px; text-align:right; flex-shrink:0; }

/* "what's included" checklist */
.psc-incl { display:grid; grid-template-columns:1fr 1fr; gap:8px 6px; }
.psc-incl-i { font-size:0.58rem; color:rgba(255,255,255,0.58); display:flex; align-items:center; gap:6px; }
.psc-incl-i svg { flex-shrink:0; }

/* google profile photos + service tags */
.psc-photos { display:flex; gap:5px; }
.psc-photo { flex:1; aspect-ratio:1/1; border-radius:7px; background:linear-gradient(135deg, rgba(56,189,248,0.16), rgba(2,100,223,0.06)); border:1px solid rgba(255,255,255,0.06); }
.psc-photo-more { display:flex; align-items:center; justify-content:center; font-size:0.55rem; font-weight:700; color:rgba(255,255,255,0.55); background:rgba(255,255,255,0.04); }
.psc-mini-tags { display:flex; flex-wrap:wrap; gap:5px; }
.psc-mini-tag { font-size:0.55rem; color:rgba(255,255,255,0.6); background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.07); padding:3px 8px; border-radius:100px; }
.psc-verified { display:inline-flex; align-items:center; gap:3px; font-size:0.55rem; font-weight:600; color:#38BDF8; background:rgba(56,189,248,0.1); border:1px solid rgba(56,189,248,0.25); padding:2px 7px; border-radius:100px; flex-shrink:0; }

/* lead follow-up progress steps */
.psc-followup { display:flex; align-items:center; }
.psc-fu-step { width:11px; height:11px; border-radius:50%; border:1.5px solid rgba(255,255,255,0.2); flex-shrink:0; }
.psc-fu-step.done { background:#38BDF8; border-color:#38BDF8; box-shadow:0 0 6px rgba(56,189,248,0.5); }
.psc-fu-line { flex:1; height:2px; background:rgba(255,255,255,0.1); }
.psc-fu-line.done { background:#38BDF8; }

/* google profile slide */
.psc-stars { color:#F59E0B; font-size:0.7rem; letter-spacing:1px; }
.psc-rate-row { display:flex; align-items:center; gap:6px; margin: 4px 0 2px; }
.psc-rate-num { font-size:0.82rem; font-weight:700; color:#fff; }

/* spinner reuse */
.psc-spin { width:9px; height:9px; border:1.5px solid rgba(56,189,248,0.25); border-top-color:#38BDF8; border-radius:50%; animation:spin 1s linear infinite; }

/* leads stat row */
.psc-statrow { display:flex; gap:6px; margin-bottom:9px; }
.psc-stat-s { flex:1; text-align:center; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); border-radius:11px; padding:9px 4px; }
.psc-stat-n { font-size:1.05rem; font-weight:800; color:#fff; line-height:1; }
.psc-stat-l { font-size:0.5rem; color:rgba(255,255,255,0.32); text-transform:uppercase; letter-spacing:0.05em; margin-top:4px; }
.psc-avatar { width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.6rem; font-weight:700; color:#fff; flex-shrink:0; }

/* ════════════════════════════════════════════
   SYSTEM FLOW (így dolgozik együtt a rendszer)
   ════════════════════════════════════════════ */
.flow-section { position: relative; z-index: 1; background: #060608; padding: 96px 0 110px; overflow: hidden; }
.flow-section::before {
  content:''; position:absolute; top:-40px; left:50%; transform:translateX(-50%);
  width:72%; height:55%;
  background:radial-gradient(ellipse at center, rgba(2,100,223,0.09) 0%, transparent 65%);
  filter:blur(55px); pointer-events:none;
}
.flow-header { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; margin-bottom:64px; position:relative; z-index:1; }
.flow-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,2.9vw,2.7rem); font-weight:700; letter-spacing:-0.025em; line-height:1.12; color:#fff; max-width:720px; }
.flow-h2 .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.flow-wrap { max-width:var(--page-max); margin:0 auto; padding:0 var(--gutter); }
.flow-steps { position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }

/* connector line through node centers + traveling pulse */
.flow-line { position:absolute; top:27px; left:10%; right:10%; height:2px; border-radius:2px; z-index:0;
  background:linear-gradient(90deg, #3b82f6, #38BDF8 55%, #818cf8); opacity:0.85; }
.flow-pulse { position:absolute; top:23px; left:10%; width:10px; height:10px; border-radius:50%; z-index:1;
  background:#38BDF8; box-shadow:0 0 14px 2px rgba(56,189,248,0.85);
  animation:flowTravel 4.5s cubic-bezier(0.45,0,0.55,1) infinite; }
@keyframes flowTravel { 0%{left:10%;opacity:0} 8%{opacity:1} 90%{opacity:1} 100%{left:90%;opacity:0} }

.flow-step { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; text-align:center; }
.flow-node { width:56px; height:56px; border-radius:50%; background:#080a12;
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; flex-shrink:0;
  box-shadow:0 0 0 7px #060608, 0 0 22px rgba(2,100,223,0.22); }
.flow-text { display:flex; flex-direction:column; }
.flow-num { font-size:0.68rem; font-weight:700; letter-spacing:0.14em; color:rgba(56,189,248,0.55); margin-bottom:9px; }
.flow-title { font-size:1rem; font-weight:700; color:#fff; line-height:1.25; margin-bottom:10px; letter-spacing:-0.01em; }
.flow-desc { font-size:0.82rem; line-height:1.62; color:rgba(255,255,255,0.42); font-weight:300; }

/* ════════════════ KINEK AJÁNLOTT (audience) ════════════════ */
.aud-section { position:relative; z-index:1; background:#060608; padding:96px 0 104px; overflow:hidden; }
.aud-section::before { content:''; position:absolute; top:0; right:-5%; width:42%; height:55%;
  background:radial-gradient(ellipse at center, rgba(56,189,248,0.06) 0%, transparent 65%); filter:blur(55px); pointer-events:none; }
.aud-wrap { position:relative; z-index:1; max-width:var(--page-max); margin:0 auto; padding:0 var(--gutter); }
.aud-header { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; margin-bottom:48px; }
.aud-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,2.9vw,2.7rem); font-weight:700; letter-spacing:-0.025em; line-height:1.12; color:#fff; max-width:720px; }
.aud-h2 .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.aud-intro { font-size:0.95rem; line-height:1.78; color:rgba(255,255,255,0.45); font-weight:300; max-width:620px; }
.aud-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.aud-item { display:flex; flex-direction:column; align-items:center; text-align:center; gap:13px; padding:26px 14px; border-radius:16px;
  background:rgba(8,10,20,0.5); border:1px solid rgba(255,255,255,0.07); transition:transform 0.3s, border-color 0.3s, background 0.3s; }
.aud-item:hover { transform:translateY(-4px); border-color:rgba(56,189,248,0.3); background:rgba(10,14,26,0.7); }
.aud-ico { width:48px; height:48px; border-radius:14px; background:rgba(2,100,223,0.1); border:1px solid rgba(2,100,223,0.2);
  display:flex; align-items:center; justify-content:center; transition:background 0.3s, border-color 0.3s; }
.aud-item:hover .aud-ico { background:rgba(2,100,223,0.18); border-color:rgba(56,189,248,0.4); }
.aud-label { font-size:0.85rem; font-weight:500; color:rgba(255,255,255,0.78); line-height:1.3; }

/* ════════════════ MITŐL ÉRTÉKES (value contrast) ════════════════ */
.val-section { position:relative; z-index:1; background:#060608; padding:96px 0 104px; overflow:hidden; }
.val-section::before { content:''; position:absolute; bottom:0; left:-5%; width:45%; height:55%;
  background:radial-gradient(ellipse at center, rgba(2,100,223,0.07) 0%, transparent 65%); filter:blur(55px); pointer-events:none; }
.val-wrap { position:relative; z-index:1; max-width:1100px; margin:0 auto; padding:0 var(--gutter); }
.val-header { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; margin-bottom:48px; }
.val-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,2.9vw,2.7rem); font-weight:700; letter-spacing:-0.025em; line-height:1.16; color:#fff; max-width:680px; }
.val-h2 .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.val-compare { display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start; }
.val-col { padding:32px 30px; border-radius:20px; }
.val-col-old { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.07); }
.val-col-new { position:relative; background:linear-gradient(160deg, rgba(2,100,223,0.13), rgba(8,10,20,0.55)); border:1px solid rgba(2,100,223,0.3); box-shadow:0 0 50px rgba(2,100,223,0.15); }
.val-col-label { display:inline-flex; align-items:center; gap:8px; font-size:0.74rem; font-weight:600; letter-spacing:0.04em; padding:6px 13px; border-radius:100px; margin-bottom:8px; }
.val-col-old .val-col-label { color:rgba(255,255,255,0.45); background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); }
.val-col-new .val-col-label { color:#38BDF8; background:rgba(2,100,223,0.12); border:1px solid rgba(2,100,223,0.3); }
.val-col-title { font-size:1.15rem; font-weight:700; letter-spacing:-0.01em; margin-bottom:22px; }
.val-col-old .val-col-title { color:rgba(255,255,255,0.55); }
.val-col-new .val-col-title { color:#fff; }
.val-list { display:flex; flex-direction:column; gap:13px; }
.val-li { display:flex; align-items:flex-start; gap:11px; font-size:0.88rem; line-height:1.45; }
.val-li-old { color:rgba(255,255,255,0.4); }
.val-li-new { color:rgba(255,255,255,0.8); }
.val-x { flex-shrink:0; margin-top:1px; color:rgba(255,255,255,0.3); }
.val-check { flex-shrink:0; margin-top:1px; }

/* ════════════════ MIÉRT ÉRDEMES (why/stats) ════════════════ */
.why-section { position:relative; z-index:1; padding:96px 0 104px; overflow:hidden; }
.why-wrap { position:relative; z-index:1; max-width:var(--page-max); margin:0 auto; padding:0 var(--gutter); }
.why-header { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; margin-bottom:52px; }
.why-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,2.9vw,2.7rem); font-weight:700; letter-spacing:-0.025em; line-height:1.12; color:#fff; }
.why-h2 .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.why-card { position:relative; padding:32px 26px 28px; border-radius:20px;
  background:rgba(8,10,20,0.6); border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  overflow:hidden; transition:transform 0.3s ease, border-color 0.3s, box-shadow 0.3s; }
.why-card:hover { transform:translateY(-5px); }
.why-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent 5%, rgba(2,100,223,0.7) 50%, transparent 95%); }
.why-card:nth-child(2)::before { background:linear-gradient(90deg, transparent 5%, rgba(139,92,246,0.7) 50%, transparent 95%); }
.why-card:nth-child(3)::before { background:linear-gradient(90deg, transparent 5%, rgba(56,189,248,0.6) 50%, transparent 95%); }
.why-card:nth-child(4)::before { background:linear-gradient(90deg, transparent 5%, rgba(52,211,153,0.55) 50%, transparent 95%); }
.why-card:nth-child(1):hover { border-color:rgba(2,100,223,0.3); box-shadow:0 16px 48px rgba(2,100,223,0.12); }
.why-card:nth-child(2):hover { border-color:rgba(139,92,246,0.3); box-shadow:0 16px 48px rgba(139,92,246,0.12); }
.why-card:nth-child(3):hover { border-color:rgba(56,189,248,0.3); box-shadow:0 16px 48px rgba(56,189,248,0.12); }
.why-card:nth-child(4):hover { border-color:rgba(52,211,153,0.3); box-shadow:0 16px 48px rgba(52,211,153,0.12); }
.why-ico { width:42px; height:42px; border-radius:13px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.why-ico-1 { background:rgba(2,100,223,0.12); border:1px solid rgba(2,100,223,0.28); color:#38BDF8; }
.why-ico-2 { background:rgba(139,92,246,0.12); border:1px solid rgba(139,92,246,0.28); color:#a78bfa; }
.why-ico-3 { background:rgba(56,189,248,0.12); border:1px solid rgba(56,189,248,0.28); color:#38BDF8; }
.why-ico-4 { background:rgba(52,211,153,0.12); border:1px solid rgba(52,211,153,0.28); color:#34D399; }
.why-num { font-family:'Outfit',sans-serif; font-size:3.4rem; font-weight:700; letter-spacing:-0.045em; line-height:1; margin-bottom:10px; display:flex; align-items:baseline; gap:4px; }
.why-num-unit { font-size:1.9rem; font-weight:600; letter-spacing:-0.02em; }
.why-card:nth-child(1) .why-num,
.why-card:nth-child(1) .why-num-unit { background:linear-gradient(135deg,#3b82f6 0%,#38BDF8 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.why-card:nth-child(2) .why-num,
.why-card:nth-child(2) .why-num-unit { background:linear-gradient(135deg,#8b5cf6 0%,#a78bfa 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.why-card:nth-child(3) .why-num,
.why-card:nth-child(3) .why-num-unit { background:linear-gradient(135deg,#0ea5e9 0%,#38BDF8 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.why-card:nth-child(4) .why-num,
.why-card:nth-child(4) .why-num-unit { background:linear-gradient(135deg,#10b981 0%,#34D399 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.why-label { font-size:1rem; font-weight:600; color:#fff; margin-bottom:8px; letter-spacing:-0.01em; }
.why-desc { font-size:0.82rem; line-height:1.6; color:rgba(255,255,255,0.45); font-weight:300; }
.why-note { text-align:center; font-size:0.74rem; color:rgba(255,255,255,0.28); margin-top:28px; line-height:1.5; }

/* ════════════════ GYIK (FAQ accordion) ════════════════ */
.faq-section { position:relative; z-index:1; background:#060608; padding:96px 0 104px; overflow:hidden; }
.faq-wrap { position:relative; z-index:1; max-width:860px; margin:0 auto; padding:0 var(--gutter); }
.faq-header { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; margin-bottom:44px; }
.faq-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,2.9vw,2.7rem); font-weight:700; letter-spacing:-0.025em; color:#fff; }
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { border-radius:14px; background:rgba(8,10,20,0.5); border:1px solid rgba(255,255,255,0.08); overflow:hidden; transition:border-color 0.3s, background 0.3s; }
.faq-item.open { border-color:rgba(2,100,223,0.4); background:rgba(10,14,26,0.6); }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:19px 22px; cursor:pointer;
  font-size:0.98rem; font-weight:600; color:rgba(255,255,255,0.92); list-style:none; }
.faq-q:hover { color:#fff; }
.faq-chevron { flex-shrink:0; color:rgba(56,189,248,0.7); transition:transform 0.35s ease; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-a-inner { padding:0 22px 20px; font-size:0.9rem; line-height:1.72; color:rgba(255,255,255,0.5); font-weight:300; }

/* ════════════════ IDŐPONTFOGLALÁS (booking CTA) ════════════════ */
.book-section { position:relative; z-index:1; background:#060608; padding:80px 0 110px; overflow:hidden; }
.book-wrap { position:relative; z-index:1; max-width:var(--page-max); margin:0 auto; padding:0 var(--gutter); }
.book-card { position:relative; max-width:780px; margin:0 auto; text-align:center; padding:60px 48px; border-radius:26px;
  background:linear-gradient(160deg, rgba(2,100,223,0.16), rgba(139,92,246,0.08)); border:1px solid rgba(2,100,223,0.3); overflow:hidden; }
.book-card::before { content:''; position:absolute; top:-50%; left:50%; transform:translateX(-50%); width:80%; height:120%;
  background:radial-gradient(ellipse at center, rgba(56,189,248,0.12) 0%, transparent 60%); filter:blur(50px); pointer-events:none; }
.book-inner { position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }
.book-tag { display:inline-flex; align-items:center; gap:8px; font-size:0.7rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(56,189,248,0.9); background:rgba(2,100,223,0.1); border:1px solid rgba(2,100,223,0.3); padding:6px 14px; border-radius:100px; margin-bottom:22px; }
.book-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,3.2vw,2.8rem); font-weight:700; letter-spacing:-0.025em; line-height:1.14; color:#fff; max-width:600px; margin-bottom:18px; }
.book-h2 .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.book-sub { font-size:1rem; line-height:1.75; color:rgba(255,255,255,0.55); font-weight:300; max-width:560px; margin-bottom:30px; }
.book-meta { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:32px; }
.book-meta-item { display:inline-flex; align-items:center; gap:7px; font-size:0.82rem; font-weight:500; color:rgba(255,255,255,0.7);
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); padding:8px 15px; border-radius:100px; }
.book-meta-item svg { color:#34D399; flex-shrink:0; }
.book-cta { display:inline-flex; align-items:center; gap:9px; font-family:'DM Sans',sans-serif; font-size:1rem; font-weight:600; color:#fff;
  background:linear-gradient(135deg,#0264DF 0%,#0ea5e9 100%); border:1px solid rgba(56,189,248,0.3); padding:16px 32px; border-radius:12px; cursor:pointer; text-decoration:none; position:relative; overflow:hidden;
  box-shadow:0 0 0 1px rgba(56,189,248,0.35), 0 6px 28px rgba(2,100,223,0.5), 0 1px 0 rgba(255,255,255,0.1) inset; transition:background 0.25s, transform 0.15s, box-shadow 0.25s; }
.book-cta::after { content:''; position:absolute; inset:0;
  background:linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.16) 50%, transparent 65%);
  transform:translateX(-120%); transition:transform 0.48s ease; pointer-events:none; }
.book-cta:hover::after { transform:translateX(120%); }
.book-cta:hover { background:linear-gradient(135deg,#0275f5 0%,#22d3ee 100%); transform:translateY(-2px);
  box-shadow:0 0 0 1px rgba(56,189,248,0.55), 0 12px 40px rgba(2,100,223,0.6), 0 1px 0 rgba(255,255,255,0.12) inset; }
.book-calendar { max-width:920px; margin:34px auto 0; border-radius:22px; overflow:hidden;
  border:1px solid rgba(255,255,255,0.1); background:rgba(8,10,20,0.6); box-shadow:0 20px 60px rgba(0,0,0,0.4); }
.book-calendar iframe { display:block; width:100%; min-height:720px; }

/* ── Booking: two equal panels (info + calendar) ── */
.book-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:1180px; margin:0 auto; align-items:stretch; }
.book-panel { position:relative; border-radius:24px; overflow:hidden;
  background:linear-gradient(165deg, rgba(2,100,223,0.14), rgba(8,10,20,0.62));
  border:1px solid rgba(2,100,223,0.28); box-shadow:0 20px 60px rgba(0,0,0,0.35); }
.book-left { display:flex; flex-direction:column; padding:38px 36px; text-align:left; }
.book-left .book-tag { align-self:flex-start; margin-bottom:20px; }
.book-left .book-h2 { text-align:left; max-width:none; margin-bottom:15px; font-size:clamp(1.6rem,2.4vw,2.2rem); }
.book-left .book-sub { max-width:none; margin-bottom:20px; font-size:0.92rem; line-height:1.68; }
.book-left .book-meta { justify-content:flex-start; margin-bottom:0; }
.book-contacts { margin-top:auto; padding-top:24px; }
.book-divider { height:1px; background:rgba(255,255,255,0.1); margin-bottom:16px; }
.book-contact { display:flex; align-items:center; gap:13px; padding:13px 15px; border-radius:14px;
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); text-decoration:none; margin-bottom:9px;
  transition:border-color 0.3s, background 0.3s, transform 0.2s; }
.book-contact:last-child { margin-bottom:0; }
.book-contact:hover { border-color:rgba(56,189,248,0.35); background:rgba(255,255,255,0.06); transform:translateY(-1px); }
.book-contact-ico { width:38px; height:38px; border-radius:11px; background:rgba(2,100,223,0.12); border:1px solid rgba(2,100,223,0.25);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#38BDF8; }
.book-contact-label { font-size:0.63rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:2px; }
.book-contact-val { font-size:0.94rem; font-weight:600; color:#fff; }
.book-right { display:flex; align-items:stretch; justify-content:stretch; padding:0; border-radius:24px; overflow:hidden; }
.cal-embed-wrap { width:100%; min-height:600px; height:100%; background:#080a14; border-radius:24px; overflow:hidden; }
.cal-embed-wrap iframe { background:#080a14 !important; border:none !important; }
[data-cal-namespace="30min"] { background:#080a14 !important; border-radius:24px; }
[data-cal-namespace="30min"] iframe { background:#080a14 !important; }

/* ── Button ripple effect (click wave) ── */
.btn-primary, .btn-ghost, .nav-cta, .pkg-cta { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,0.32); pointer-events: none;
  animation: rippleEffect 0.65s ease-out forwards;
}
@keyframes rippleEffect { to { transform: scale(2.6); opacity: 0; } }

/* ════════════════════════════════════════════
   REFERENCIÁK — MacBook + iPhone eszköz-mockup
   ════════════════════════════════════════════ */
.ref-section { position: relative; z-index: 1; background: #060608; padding: 96px 0 110px; overflow: visible; }
.ref-wrap { position: relative; z-index: 1; max-width: var(--page-max); margin: 0 auto; padding: 0 var(--gutter); }
/* 2-col layout: text + selector left, devices right */
.ref-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.ref-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.ref-left .section-tag { margin-bottom: 20px; }
.ref-h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 2.6vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.14; color: #fff; margin-bottom: 16px; }
.ref-h2 .accent { background: linear-gradient(120deg, #3b82f6, #38BDF8 55%, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ref-intro { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 30px; max-width: 420px; }

/* reference selector (vertical list) */
.ref-nav { display: flex; flex-direction: column; gap: 11px; width: 100%; max-width: 380px; }
.ref-item {
  position: relative; display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 15px; padding: 13px 16px; cursor: pointer; text-align: left; width: 100%;
  overflow: hidden; transition: background 0.3s, border-color 0.3s, transform 0.25s;
}
.ref-item:hover { transform: translateX(5px); border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); }
.ref-item-thumb {
  width: 48px; height: 33px; border-radius: 7px; object-fit: cover; object-position: top;
  flex-shrink: 0; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  transition: border-color 0.3s;
}
.ref-item-thumb--video {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(2,100,223,0.25), rgba(10,12,28,0.9));
  color: rgba(255,255,255,0.55);
}
.ref-item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.ref-item-name { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.82); line-height: 1.2; letter-spacing: -0.01em; }
.ref-item-desc { font-size: 0.74rem; color: rgba(255,255,255,0.4); }
.ref-item-arrow { flex-shrink: 0; color: #38BDF8; opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s; }
.ref-item.active { background: linear-gradient(135deg, rgba(2,100,223,0.16), rgba(8,10,20,0.5)); border-color: rgba(2,100,223,0.42); box-shadow: 0 0 26px rgba(2,100,223,0.18); }
.ref-item.active .ref-item-thumb { border-color: rgba(56,189,248,0.5); }
.ref-item.active .ref-item-name { color: #fff; }
.ref-item.active .ref-item-arrow { opacity: 1; transform: translateX(0); }
/* story-style auto-progress bar */
.ref-item-progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg,#0264DF,#38BDF8); }
.ref-item.active .ref-item-progress { animation: refProgress 4600ms linear forwards; }
.ref-layout.ref-paused .ref-item.active .ref-item-progress { animation-play-state: paused; }
@keyframes refProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
/* left-side CTA */
.ref-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 26px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: #38BDF8; text-decoration: none; transition: gap 0.2s, color 0.2s; }
.ref-cta:hover { gap: 11px; color: #5cc8fb; }

/* devices stage (right) */
.ref-right { position: relative; }
.ref-stage {
  position: relative;
  width: 100%; max-width: 600px; margin: 0 auto;
  padding-bottom: 40px;
  overflow: visible;
}
.ref-stage::before {               /* main backdrop glow — blue→purple */
  content: '';
  position: absolute;
  top: 5%; left: 45%; transform: translateX(-50%);
  width: 105%; height: 85%;
  background: radial-gradient(ellipse at 42% 48%,
    rgba(2,100,223,0.28) 0%,
    rgba(139,92,246,0.18) 38%,
    transparent 68%);
  filter: blur(58px); pointer-events: none; z-index: 0;
}
.ref-stage::after {                /* bottom purple haze */
  content: '';
  position: absolute;
  bottom: 10px; left: 38%; transform: translateX(-50%);
  width: 70%; height: 45%;
  background: radial-gradient(ellipse at center,
    rgba(139,92,246,0.22) 0%,
    rgba(56,189,248,0.1) 42%,
    transparent 68%);
  filter: blur(48px); pointer-events: none; z-index: 0;
}
/* stacked reference screenshots — cross-fade */
.ref-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity 0.55s ease; }
.ref-shot.active { opacity: 1; }
video.ref-shot { object-position: center; }

/* ── MacBook ── */
.macbook { position: relative; width: 100%; }
.macbook-lid {
  position: relative;
  background: #0c0d12;
  border: 2px solid #2a2d3a;
  border-radius: 18px;
  padding: 7px;
  box-shadow:
    0 40px 90px -25px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 60px -15px rgba(2,100,223,0.35),
    0 0 120px -30px rgba(139,92,246,0.22);
}
.macbook-cam { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #1c1f29; box-shadow: 0 0 0 1px rgba(255,255,255,0.06); }
.macbook-screen {
  position: relative;
  width: 100%; aspect-ratio: 16 / 10;
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, rgba(2,100,223,0.18), rgba(8,10,20,0.9));
}
.macbook-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.macbook-base {
  position: relative;
  width: 116%; margin-left: -8%;
  height: 18px;
  background: linear-gradient(180deg, #3c3f4a 0%, #23262f 55%, #15171d 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 30px -12px rgba(0,0,0,0.7);
}
.macbook-base::before {            /* glow pool below base */
  content: ''; position: absolute;
  bottom: -32px; left: 50%; transform: translateX(-50%);
  width: 72%; height: 52px;
  background: radial-gradient(ellipse at center,
    rgba(2,100,223,0.55) 0%,
    rgba(139,92,246,0.28) 40%,
    transparent 72%);
  filter: blur(22px); pointer-events: none; z-index: 2;
}
.macbook-base::after {             /* opening notch */
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 9px; background: #0c0d12; border-radius: 0 0 9px 9px;
}

/* ── iPhone (offset, in front) ── */
.ref-iphone {
  position: absolute;
  right: -56px; bottom: 0;
  width: 172px;
  z-index: 3;
}
.ref-iphone::before {              /* iPhone glow halo */
  content: ''; position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 145%; height: 60px;
  background: radial-gradient(ellipse at center,
    rgba(139,92,246,0.6) 0%,
    rgba(56,189,248,0.22) 40%,
    transparent 70%);
  filter: blur(18px); pointer-events: none; z-index: -1;
}
.ref-iphone::after {               /* iPhone side glow */
  content: ''; position: absolute;
  top: 15%; left: 50%; transform: translateX(-50%);
  width: 130%; height: 70%;
  background: radial-gradient(ellipse at center,
    rgba(129,140,248,0.12) 0%,
    transparent 68%);
  filter: blur(30px); pointer-events: none; z-index: -1;
}
.ref-iphone-body {
  position: relative;
  border-radius: 32px; padding: 6px;
  background: #0c0d12;
  box-shadow:
    inset 0 0 0 2px #2a2d3a, inset 0 0 0 6px #000,
    0 30px 60px -15px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 45px -10px rgba(139,92,246,0.4),
    0 0 80px -25px rgba(56,189,248,0.2);
}
.ref-iphone-screen {
  position: relative;
  width: 100%; aspect-ratio: 9 / 19.5;
  border-radius: 26px; overflow: hidden;
  background: #050608;
  display: flex; flex-direction: column;
}
.ref-iphone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 21px; background: #000; border-radius: 100px; z-index: 6;
}

/* ── iPhone böngésző-keret (status bar + URL) ── */
.ref-ip-chrome { flex-shrink: 0; position: relative; z-index: 4; background: #050608; }
.ref-ip-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px 8px;
}
.ref-ip-time { font-size: 0.6rem; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.ref-ip-icons { display: flex; align-items: center; gap: 4px; }
.ref-ip-icons svg { display: block; }
.ref-ip-urlbar {
  display: flex; align-items: center; gap: 6px;
  margin: 5px 9px 7px; padding: 4px 9px;
  background: rgba(255,255,255,0.1); border-radius: 8px;
}
.ref-ip-urlbar svg { opacity: 0.55; flex-shrink: 0; }
.ref-ip-url { flex: 1; text-align: center; font-size: 0.56rem; font-weight: 500; color: rgba(255,255,255,0.72); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* viewport holds the website screenshot below the chrome */
.ref-ip-viewport { position: relative; flex: 1; min-height: 0; overflow: hidden; }

/* ── MacBook macOS menüsor (felső csík) ── */
.mac-menubar {
  position: absolute; top: 0; left: 0; right: 0; height: 18px; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 9px; font-size: 0.5rem; font-weight: 500; color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.38); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  letter-spacing: 0.01em;
}
.mac-menu-left { display: flex; align-items: center; }
.mac-menu-left svg { display: block; }
.mac-menu-right { display: flex; align-items: center; gap: 6px; }
.mac-menu-right .ref-mac-clock { font-weight: 500; white-space: nowrap; letter-spacing: 0.02em; }

/* ── MacBook dock (alsó menü) ── */
.mac-dock {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; align-items: flex-end; gap: 7px;
  padding: 6px 9px; border-radius: 15px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.mac-dock-ico { width: 28px; height: 28px; border-radius: 8px; box-shadow: 0 2px 7px rgba(0,0,0,0.35); transition: transform 0.2s; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.mac-dock-ico svg { width: 62%; height: 62%; display: block; }
.mac-dock-ico:hover { transform: translateY(-5px) scale(1.1); }
.mac-dock-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.22); align-self: center; margin: 0 2px; flex-shrink: 0; }

/* placeholder hint (until images are added) */
.ref-ph { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 0.8rem; color: rgba(255,255,255,0.35); letter-spacing: 0.02em; text-align: center; padding: 12px; }

/* gentle float */
@keyframes refFloatMac { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes refFloatPhone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.macbook { animation: refFloatMac 8s ease-in-out infinite; }
.ref-iphone { animation: refFloatPhone 7s ease-in-out infinite 0.6s; }

/* ════════════════════════════════════════════
   SOLUTIONS / PACKAGES (megoldások / csomagok)
   ════════════════════════════════════════════ */
.pkg-section { position: relative; z-index: 1; background: #060608; padding: 96px 0 110px; overflow: hidden; }
.pkg-section::before {
  content:''; position:absolute; top:10%; left:-6%; width:45%; height:55%;
  background:radial-gradient(ellipse at center, rgba(2,100,223,0.08) 0%, transparent 65%);
  filter:blur(55px); pointer-events:none;
}
.pkg-section::after {
  content:''; position:absolute; bottom:6%; right:-6%; width:45%; height:50%;
  background:radial-gradient(ellipse at center, rgba(139,92,246,0.07) 0%, transparent 65%);
  filter:blur(55px); pointer-events:none;
}
.pkg-wrap { position:relative; z-index:1; max-width:var(--page-max); margin:0 auto; padding:0 var(--gutter); }
.pkg-header { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; margin-bottom:52px; }
.pkg-h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,2.9vw,2.7rem); font-weight:700; letter-spacing:-0.025em; line-height:1.12; color:#fff; max-width:760px; }
.pkg-h2 .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.pkg-intro { font-size:0.95rem; line-height:1.78; color:rgba(255,255,255,0.45); font-weight:300; max-width:640px; }

/* 3 fő csomag */
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
.pkg-card { position:relative; display:flex; flex-direction:column; padding:32px 28px 30px; border-radius:22px;
  background:rgba(8,10,20,0.6); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  overflow:hidden; transition:transform 0.3s, background 0.3s;
  opacity:0; animation:pkgRevealLeft 0.9s cubic-bezier(.16,1,.3,1) both paused; }
/* 3 irányból: bal / alul+scale / jobb */
@keyframes pkgRevealLeft {
  from { opacity:0; transform:translateX(-80px) translateY(30px) rotate(-1.5deg); }
  to   { opacity:1; transform:none; }
}
@keyframes pkgRevealCenter {
  from { opacity:0; transform:translateY(70px); }
  to   { opacity:1; transform:none; }
}
@keyframes pkgRevealRight {
  from { opacity:0; transform:translateX(80px) translateY(30px) rotate(1.5deg); }
  to   { opacity:1; transform:none; }
}
.pkg-grid .pkg-card:nth-child(1) { animation-name:pkgRevealLeft;   animation-delay:0.05s; }
.pkg-grid .pkg-card:nth-child(2) { animation-name:pkgRevealCenter; animation-delay:0.05s; }
.pkg-grid .pkg-card:nth-child(3) { animation-name:pkgRevealRight;  animation-delay:0.05s; }
.pkg-card.pkg-in { animation-play-state:running; }
/* tier vonal balról rajzolja magát */
.pkg-tier-line { position:absolute; top:0; left:0; right:0; height:2px;
  transform:scaleX(0); transform-origin:left center;
  transition:transform 1.1s cubic-bezier(.16,1,.3,1) 0.55s; }
.pkg-card.pkg-in .pkg-tier-line { transform:scaleX(1); }
.pkg-tier-1 { background:linear-gradient(90deg, transparent 0%, #3b82f6 25%, #38BDF8 75%, transparent 100%); opacity:0.75; }
.pkg-tier-2 { background:linear-gradient(90deg, #3b82f6 0%, #38BDF8 50%, #818cf8 100%); }
.pkg-tier-3 { background:linear-gradient(90deg, transparent 0%, #818cf8 25%, #ec4899 75%, transparent 100%); opacity:0.75; }
/* lista elemek sorban úsznak be balról */
.pkg-item { opacity:0; transform:translateX(-14px); transition:opacity 0.4s ease, transform 0.4s ease; }
.pkg-card.pkg-in .pkg-item         { opacity:1; transform:none; }
.pkg-card.pkg-in .pkg-item:nth-child(1) { transition-delay:0.54s; }
.pkg-card.pkg-in .pkg-item:nth-child(2) { transition-delay:0.63s; }
.pkg-card.pkg-in .pkg-item:nth-child(3) { transition-delay:0.72s; }
.pkg-card.pkg-in .pkg-item:nth-child(4) { transition-delay:0.81s; }
.pkg-card.pkg-in .pkg-item:nth-child(5) { transition-delay:0.90s; }
.pkg-card.pkg-in .pkg-item:nth-child(6) { transition-delay:0.99s; }
/* featured: pulzáló glow + shimmer sweep */
@keyframes pkgShimmer {
  from { transform:translateX(-220%); }
  to   { transform:translateX(440%); }
}
.pkg-card-featured { box-shadow:0 0 60px rgba(2,100,223,0.18); }
.pkg-card-featured::after { content:''; position:absolute; top:0; bottom:0; left:0; width:45%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.055), transparent);
  animation:pkgShimmer 0.9s ease-out 1.2s forwards; pointer-events:none; }
.pkg-card::before { content:''; position:absolute; inset:0; border-radius:22px; padding:1px; pointer-events:none;
  background:linear-gradient(160deg, rgba(2,100,223,0.4), rgba(56,189,248,0.1) 45%, rgba(2,100,223,0.06));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); mask-composite:exclude; transition:background 0.4s; }
.pkg-card:hover { transform:translateY(-5px); }
.pkg-card:hover::before { background:linear-gradient(160deg, rgba(2,100,223,0.6), rgba(56,189,248,0.2) 45%, rgba(2,100,223,0.12)); }

/* kiemelt zászlóshajó */
.pkg-card-featured { background:linear-gradient(165deg, rgba(2,100,223,0.16), rgba(8,10,20,0.72)); box-shadow:0 0 60px rgba(2,100,223,0.18); }
.pkg-card-featured::before { background:linear-gradient(160deg, rgba(56,189,248,0.7), rgba(139,92,246,0.4) 50%, rgba(2,100,223,0.3)); padding:1.5px; }
.pkg-ribbon { position:absolute; top:16px; right:16px; display:inline-flex; align-items:center; gap:6px;
  font-size:0.64rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:#fff;
  background:linear-gradient(120deg,#0264DF,#38BDF8); padding:5px 12px; border-radius:100px;
  box-shadow:0 4px 16px rgba(2,100,223,0.45); z-index:2; }

.pkg-eyebrow { font-size:0.74rem; font-weight:500; color:rgba(56,189,248,0.7); margin-bottom:13px; }
.pkg-name { font-size:1.3rem; font-weight:700; color:#fff; letter-spacing:-0.02em; margin-bottom:10px; line-height:1.2; }
.pkg-outcome { font-size:0.95rem; font-weight:600; line-height:1.4; margin-bottom:16px;
  background:linear-gradient(120deg,#3b82f6,#38BDF8 60%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.pkg-desc { font-size:0.84rem; line-height:1.62; color:rgba(255,255,255,0.42); font-weight:300; margin-bottom:22px; }
.pkg-divider { height:1px; background:rgba(255,255,255,0.08); margin-bottom:18px; }
.pkg-list-label { font-size:0.68rem; font-weight:600; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:14px; }
.pkg-list { display:flex; flex-direction:column; gap:11px; margin-bottom:26px; }
.pkg-item { display:flex; align-items:flex-start; gap:10px; font-size:0.85rem; color:rgba(255,255,255,0.72); line-height:1.4; }
.pkg-item svg { flex-shrink:0; margin-top:2px; }
.pkg-foot { margin-top:auto; }
.pkg-price { font-size:0.8rem; color:rgba(255,255,255,0.4); margin-bottom:14px; }
.pkg-price strong { display:block; color:#fff; font-weight:600; font-size:0.95rem; margin-bottom:2px; }
.pkg-cta { display:flex; align-items:center; justify-content:center; gap:7px; width:100%;
  font-family:'DM Sans',sans-serif; font-size:0.88rem; font-weight:600; padding:12px 20px; border-radius:10px;
  cursor:pointer; text-decoration:none; transition:background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s; }
.pkg-cta-outline { color:rgba(255,255,255,0.85); background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.15); }
.pkg-cta-outline:hover { border-color:rgba(56,189,248,0.5); color:#fff; transform:translateY(-1px); }
.pkg-cta-primary { color:#fff; background:linear-gradient(135deg,#0264DF 0%,#0ea5e9 100%); border:1px solid rgba(56,189,248,0.3);
  box-shadow:0 4px 22px rgba(2,100,223,0.45), 0 0 0 1px rgba(56,189,248,0.25), 0 1px 0 rgba(255,255,255,0.1) inset; }
.pkg-cta-primary::after { content:''; position:absolute; inset:0;
  background:linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.14) 50%, transparent 65%);
  transform:translateX(-120%); transition:transform 0.48s ease; pointer-events:none; }
.pkg-cta-primary:hover::after { transform:translateX(120%); }
.pkg-cta-primary:hover { background:linear-gradient(135deg,#0275f5 0%,#22d3ee 100%); transform:translateY(-1px);
  box-shadow:0 6px 28px rgba(2,100,223,0.55), 0 0 0 1px rgba(56,189,248,0.45), 0 1px 0 rgba(255,255,255,0.12) inset; }
.pkg-cta-primary svg { transition:transform 0.2s ease; }
.pkg-cta-primary:hover svg { transform:translateX(3px); }

/* add-on sáv */
.pkg-addons-head { text-align:center; margin:60px 0 24px; position:relative; }
.pkg-addons-head::before { content:''; display:block; width:48px; height:1px; background:linear-gradient(90deg,transparent,rgba(56,189,248,0.5),transparent); margin:0 auto 18px; }
.pkg-addons-title { font-family:'Outfit',sans-serif; font-size:clamp(1.45rem,2.2vw,1.9rem); font-weight:700; color:#fff; letter-spacing:-0.025em; line-height:1.2; }
.pkg-addons-title .accent { background:linear-gradient(120deg,#3b82f6,#38BDF8 55%,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.pkg-addons-sub { font-size:0.82rem; color:rgba(255,255,255,0.38); margin-top:8px; }
.pkg-addons { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }

/* ── add-on kártyák: prémium dizájn ── */
.pkg-addon {
  position:relative; display:flex; flex-direction:column;
  border-radius:20px; overflow:hidden;
  background:rgba(6,7,14,0.75);
  border:1px solid rgba(255,255,255,0.07);
  transition:border-color 0.35s, transform 0.3s;
  opacity:0; animation:pkgRevealLeft 0.85s cubic-bezier(.16,1,.3,1) both paused;
}
.pkg-addons .pkg-addon:nth-child(1) { animation-name:pkgRevealLeft;  animation-delay:0.08s; }
.pkg-addons .pkg-addon:nth-child(2) { animation-name:pkgRevealRight; animation-delay:0.08s; }
.pkg-addon.pkg-in { animation-play-state:running; }
/* bal oldali accent csík */
.pkg-addon::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px; border-radius:20px 0 0 20px;
  transition:opacity 0.35s;
}
.pkg-addon:nth-child(1)::before { background:linear-gradient(180deg, #3b82f6, #38BDF8); }
.pkg-addon:nth-child(2)::before { background:linear-gradient(180deg, #818cf8, #ec4899); }
.pkg-addon:hover { border-color:rgba(56,189,248,0.2); transform:translateY(-4px); }

/* fejléc sáv */
.pkg-addon-head {
  display:flex; align-items:center; gap:16px;
  padding:24px 26px 18px;
  background:linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 70%);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.pkg-addon-ic {
  width:48px; height:48px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 20px rgba(0,0,0,0.4);
}
.pkg-addon-title-wrap { display:flex; flex-direction:column; gap:3px; }
.pkg-addon-name { font-size:1.12rem; font-weight:700; color:#fff; line-height:1.25; }
.pkg-addon-for { font-size:0.82rem; color:rgba(255,255,255,0.45); line-height:1.45; }

/* tag zóna */
.pkg-addon-body { padding:18px 26px 0; flex:1; }
.pkg-addon-tags { display:flex; flex-wrap:wrap; gap:7px; }
.pkg-tag {
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.78rem; color:rgba(255,255,255,0.6);
  background:rgba(255,255,255,0.035); border:1px solid rgba(255,255,255,0.07);
  padding:5px 11px 5px 8px; border-radius:100px;
}
.pkg-tag::before { content:''; width:5px; height:5px; border-radius:50%; flex-shrink:0; }
.pkg-addon:nth-child(1) .pkg-tag::before { background:#38BDF8; opacity:0.6; }
.pkg-addon:nth-child(2) .pkg-tag::before { background:#818cf8; opacity:0.6; }

/* lábléc */
.pkg-addon-foot {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:16px 26px 22px; margin-top:18px;
  border-top:1px solid rgba(255,255,255,0.05);
}
.pkg-addon-price { font-size:0.76rem; color:rgba(255,255,255,0.35); }
.pkg-addon-link { display:inline-flex; align-items:center; gap:6px; font-size:0.83rem; font-weight:600; color:#38BDF8; text-decoration:none; white-space:nowrap; transition:gap 0.2s, color 0.2s; }
.pkg-addon-link:hover { gap:9px; color:#5cc8fb; }

/* kockázatcsökkentő — kompakt sáv */
.pkg-reassure {
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin-top:28px; padding:18px 28px; border-radius:14px;
  background:linear-gradient(120deg, rgba(2,100,223,0.08), rgba(139,92,246,0.05));
  border:1px solid rgba(2,100,223,0.16);
}
.pkg-reassure-text { font-size:0.92rem; color:rgba(255,255,255,0.75); line-height:1.55; font-weight:300; flex:1; min-width:260px; }
.pkg-reassure-text strong { color:#fff; font-weight:600; }

/* ════════════════ ELEVATIONS ════════════════ */

/* 1 · Scroll reveal */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }

/* 2 · Audience infinite marquee */
.aud-marquee { display:flex; flex-direction:column; gap:14px; }
.aud-row { overflow:hidden;
  -webkit-mask-image:linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image:linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
.aud-track { display:flex; gap:14px; width:max-content; }
.aud-track-l { animation:audScrollL 46s linear infinite; }
.aud-track-r { animation:audScrollR 52s linear infinite; }
.aud-row:hover .aud-track { animation-play-state:paused; }
@keyframes audScrollL { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes audScrollR { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.aud-chip { display:flex; align-items:center; gap:13px; padding:15px 24px; border-radius:14px;
  background:rgba(8,10,20,0.5); border:1px solid rgba(255,255,255,0.07); white-space:nowrap; flex-shrink:0;
  transition:border-color 0.3s, background 0.3s; }
.aud-chip:hover { border-color:rgba(56,189,248,0.35); background:rgba(10,14,26,0.7); }
.aud-chip .aud-ico { width:40px; height:40px; }
.aud-chip .aud-label { font-size:0.92rem; }

/* 3 · Packages premium effects */
.pkg-card::after {
  content:''; position:absolute; inset:0; border-radius:22px; z-index:5; pointer-events:none;
  opacity:0; transition:opacity 0.35s; mix-blend-mode:screen;
  background:radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(56,189,248,0.16), transparent 45%);
}
.pkg-card:hover::after { opacity:1; }
.pkg-card:hover { transform:translateY(-7px); }

/* 4 · Value contrast emphasis */
.val-col-old { filter:saturate(0.8); }
.val-col-new { animation:valGlow 4s ease-in-out infinite; }
@keyframes valGlow { 0%,100%{box-shadow:0 0 50px rgba(2,100,223,0.15)} 50%{box-shadow:0 0 75px rgba(2,100,223,0.26)} }

/* 5 · Flow scroll-linked line – NO CSS transitions here, JS lerp handles smoothing */
.flow-line-fill { position:absolute; top:27px; left:10%; height:2px; width:0; border-radius:2px; z-index:1;
  background:linear-gradient(90deg,#3b82f6,#38BDF8 55%,#818cf8); box-shadow:0 0 12px rgba(56,189,248,0.7); }
.flow-dot-lead { position:absolute; top:22px; left:10%; width:12px; height:12px; border-radius:50%; z-index:2;
  background:#38BDF8; box-shadow:0 0 18px 4px rgba(56,189,248,1); opacity:0;
  transition:opacity 0.4s ease; }
/* Default: steps dimmed */
.flow-step { opacity:0.42; transition:opacity 0.6s cubic-bezier(0.22,1,0.36,1); }
.flow-step.lit { opacity:1; }
.flow-step .flow-node { transition:box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.flow-step.lit .flow-node {
  border-color:rgba(56,189,248,0.8)!important;
  box-shadow:0 0 0 8px #060608, 0 0 36px rgba(56,189,248,0.65), 0 0 72px rgba(56,189,248,0.2);
  transform:scale(1.14);
}
.flow-step.lit .flow-desc { color:rgba(255,255,255,0.72); }
.flow-desc { transition:color 0.55s ease; }

/* ── Flow sticky desktop scroll ── */
@media (min-width: 901px) {
  .flow-section { height: 220vh; padding: 0; overflow: clip; }
  .flow-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }
  .flow-header { margin-bottom: 56px; }
}

/* ════════════════════════════════════════════
   GOOGLE ÉRTÉKELÉSEK SLIDER
   ════════════════════════════════════════════ */
.gr-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
  overflow: hidden;
}

.gr-top {
  text-align: center;
  margin-bottom: 52px;
}

.gr-h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}

.gr-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.83rem;
}

.gr-g-icon { flex-shrink: 0; display: block; }

.gr-agg-stars {
  color: #FBBC05;
  letter-spacing: 2px;
  font-size: 0.88rem;
}

.gr-agg-score {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.gr-agg-sep { color: rgba(255,255,255,0.25); }

.gr-agg-count {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/*
── SLIDER (végtelen görgetés) – kommentelve, ha vissza kell ──
.gr-slider-outer {
  max-width: var(--page-max);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.gr-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0 16px;
  animation: grScroll 70s linear infinite;
}
.gr-track:hover { animation-play-state: paused; }
@keyframes grScroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}
*/

/* ── Review grid (3 columns desktop) ── */
.gr-carousel-wrap {
  overflow: hidden;
}

.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  justify-content: center;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

/* ── Scroll-reveal stagger animation ── */
.gr-card-anim {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--gr-delay, 0ms);
}
.gr-card-anim.gr-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Dot navigation (mobile only) ── */
.gr-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.gr-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, transform 0.25s;
}
.gr-dot--on {
  background: rgba(56,189,248,0.85);
  width: 22px;
  transform: none;
}

/* ── Card ── */
.gr-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
  transition: border-color 0.25s, background 0.25s;
}

.gr-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.gr-card-top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.gr-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--av-bg);
  border: 1px solid var(--av-border);
  color: var(--av-color);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gr-card-meta { flex: 1; min-width: 0; }

.gr-card-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr-card-platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
}

.gr-card-date {
  font-size: 0.69rem;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
  white-space: nowrap;
}

.gr-card-stars {
  color: #FBBC05;
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.gr-card-text {
  font-size: 0.81rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* ════════════════ UNIFIED BACKGROUND OVERRIDES ════════════════ */
/* Content sections are transparent so the page-wide aurora shows through */
.problem-section, .services-section, .phone-scroll-section, .flow-section,
.pkg-section, .ref-section, .gr-section, .aud-section, .val-section, .faq-section, .book-section, .why-section {
  background: transparent;
}
/* Retire the old per-section glow blobs (aurora replaces them) */
.problem-section::before, .problem-section::after, .problem-section .glow-mid,
.services-section::before, .services-section::after,
.flow-section::before,
.pkg-section::before, .pkg-section::after,
.aud-section::before,
.val-section::before {
  display: none;
}
/* Soft top-fade on the first content block → seamless hero → problem handoff */
.problem-section::before {
  display: block; content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 300px; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, #060608 0%, rgba(6,6,8,0.6) 45%, transparent 100%);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* ── Tablet wide: ≤ 1100px ── */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .section-container { padding: 0 40px; }
  .hero { padding: 100px 40px 40px; gap: 40px; }
  .hero-h1 { font-size: clamp(2.6rem, 4vw, 3.8rem); }
  .problem-layout { gap: 48px; }
  .prob-accordion { height: 380px; }
  .hero-scene { transform: scale(0.84); transform-origin: center right; }
}

/* ── Tablet: ≤ 900px ── */
@media (max-width: 900px) {
  /* Hero → single column, floating cards hidden */
  .hero {
    grid-template-columns: 1fr;
    padding: 96px 40px 32px;
    gap: 0;
  }
  .hero-right { display: none; }
  .hero-mobile-scene { display: grid; }
  .hero-h1 { font-size: clamp(2.4rem, 5.5vw, 3.4rem); }
  .hero-sub { max-width: 100%; }
  .hero-badges { flex-wrap: wrap; }

  /* Problem → single column */
  .problem-layout { grid-template-columns: 1fr; gap: 36px; }
  .problem-section { padding: 60px 0 80px; }
  .prob-accordion { height: 360px; }
  .prob-panel { flex: 0 0 58px; }

  /* Services */
  .services-section { padding: 60px 0 20px; }
  .srv-card { padding: 26px 26px 26px; }

  /* Phone scroll → tab-based on mobile (no sticky scroll) */
  .phone-scroll-section { height: auto; min-height: 0; padding-bottom: 32px; }
  .pss-sticky { position: static; height: auto; min-height: 0; overflow: visible; padding: 16px 0 0; }
  .pss-sticky::before, .pss-sticky::after { display: none; }
  .pss-nav { margin-bottom: 12px; }
  .pss-inner { grid-template-columns: 1fr; gap: 0; justify-items: center; padding: 0 16px; margin-top: 0; }
  .pss-desc { font-size: 0.95rem; max-width: 100%; }

  /* Phone stage: telefon középen, nyilak absolute-pozícionálva mellé */
  .pss-phone-stage { order: 1; position: relative; justify-content: center; align-items: flex-start; gap: 0; margin: 0; width: 100%; }
  .pss-phone-wrap { transform: scale(0.65); transform-origin: top center; margin-bottom: -214px; }
  .pss-arr { position: absolute; top: 185px; width: 28px; height: 28px; }
  .pss-arr-p { left: 8px; }
  .pss-arr-n { right: 8px; }

  .pss-left { order: 2; position: static; height: auto; width: 100%; max-width: 380px; margin-top: 22px; }
  .pss-text { position: static; display: none; opacity: 1; transform: none; align-items: center; text-align: center; pointer-events: none; transition: none; }
  .pss-text.active { display: flex; pointer-events: auto; }
  .pss-desc { margin-left: auto; margin-right: auto; max-width: 100%; }
  .pss-title br { display: none; }
  .pss-goal { margin: 0 auto; }

  /* Badges: visible below text on mobile */
  .pss-right { position: static; height: auto; width: 100%; max-width: 380px; order: 3; margin-top: 18px; }
  .pss-badges { position: static; display: none; opacity: 1; transform: none; flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: flex-start; align-items: stretch; pointer-events: none; transition: none; }
  .pss-badges.active { display: flex; pointer-events: auto; }
  .pss-badge { flex: 1 1 calc(50% - 5px); padding: 14px 12px; width: auto; }
  .pss-badge-ico { width: 44px; height: 44px; border-radius: 13px; }
  .pss-badge-val { font-size: 1rem; }
  .pss-badge-lbl { font-size: 0.75rem; }

  /* System flow → vertical timeline */
  .flow-section { padding: 64px 0 70px; }
  .flow-header { margin-bottom: 44px; }
  .flow-wrap { padding: 0 40px; }
  .flow-steps { grid-template-columns: 1fr; gap: 0; max-width: 540px; }
  .flow-line, .flow-pulse { display: none; }
  .flow-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 18px; padding-bottom: 30px; }
  .flow-step:last-child { padding-bottom: 0; }
  .flow-step:not(:last-child)::before {
    content: ''; position: absolute; left: 27px; top: 60px; bottom: -4px; width: 2px;
    background: linear-gradient(180deg, rgba(56,189,248,0.45), rgba(56,189,248,0.08));
  }
  .flow-node { margin-bottom: 0; box-shadow: 0 0 18px rgba(2,100,223,0.2); }
  .flow-title br { display: none; }

  /* Packages → stack */
  .pkg-section { padding: 64px 0 70px; }
  .pkg-wrap { padding: 0 40px; }
  .pkg-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin: 0 auto; }
  .pkg-addons { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Reviews grid */
  .gr-section { padding: 56px 0 64px; }
  .gr-grid { gap: 16px; }

  /* References → stack (text above, devices below) */
  .ref-section { padding: 64px 0 70px; }
  .ref-wrap { padding: 0 40px; }
  .ref-layout { grid-template-columns: 1fr; gap: 40px; }
  .ref-nav { max-width: 480px; }
  .ref-stage { max-width: 600px; margin: 0 auto; }
  .ref-iphone { width: 128px; right: -8px; }
  /* arányos sarok-lekerekítés a kisebb mérethez (valódi iPhone-arány) */
  .ref-iphone-body { border-radius: 22px; padding: 5px; }
  .ref-iphone-screen { border-radius: 17px; }

  /* Why section → 2×2 */
  .why-section { padding: 64px 0 70px; }
  .why-wrap { padding: 0 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Audience → 3 cols */
  .aud-section { padding: 64px 0 70px; }
  .aud-wrap { padding: 0 40px; }
  .aud-grid { grid-template-columns: repeat(3, 1fr); }

  /* Value contrast → stack */
  .val-section { padding: 64px 0 70px; }
  .val-wrap { padding: 0 40px; }
  .val-compare { grid-template-columns: 1fr; gap: 16px; max-width: 520px; margin: 0 auto; }
  .val-col-new { order: -1; }

  /* FAQ + Booking */
  .faq-section { padding: 64px 0 70px; }
  .faq-wrap { padding: 0 40px; }
  .book-section { padding: 56px 0 80px; }
  .book-wrap { padding: 0 40px; }
  .book-grid { grid-template-columns: 1fr; gap: 18px; max-width: 560px; }
  .cal-embed-wrap { min-height: 560px; }
}

/* ── Tablet narrow / mobile large: ≤ 768px ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switch { display: none; }
  nav.site-nav { padding: 0 14px 0 18px; }
  .nav-hamburger { display: flex; }
}

/* ── Mobile: ≤ 640px ── */
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  /* Navbar */
  nav.site-nav { top: 12px; height: 52px; padding: 0 8px 0 14px; }
  .nav-logo img { height: 28px; max-height: 28px; }
  .nav-cta { padding: 8px 14px; font-size: 0.8rem; }

  /* Containers */
  .section-container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 76px 20px 24px; }
  .hero-h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-badges { flex-wrap: wrap; gap: 6px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 10px 5px 8px; }

  /* Problem */
  .problem-section { padding: 44px 0 56px; }
  .problem-h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .problem-intro { font-size: 0.9rem; }

  /* Accordion → vertical stack, tap to expand */
  .prob-accordion {
    flex-direction: column;
    height: auto;
    gap: 6px;
  }
  .prob-panel {
    flex: 0 0 56px;
    border-radius: 14px;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  }
  .prob-panel.active { flex: 0 0 260px; }

  /* Collapsed: horizontal row (number + title inline) */
  .prob-collapsed {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 16px;
    gap: 12px;
  }
  .prob-vert-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.82rem;
  }

  /* Expanded: tighter */
  .prob-expanded { padding: 20px 20px 24px; }
  .prob-anim-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .prob-num-big { margin-bottom: 12px; }
  .prob-title { font-size: 1.05rem; margin-bottom: 10px; }
  .prob-text { font-size: 0.8rem; }

  /* Services → single column */
  .services-section { padding: 44px 0 16px; }
  .services-h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .srv-card { padding: 22px 20px 20px; }
  .services-pillars { flex-wrap: wrap; justify-content: center; gap: 0; }
  .srv-pillar { padding: 8px 18px; }
  .srv-pillar-line { max-width: 50px; }

  /* Phone scroll → smaller phone on small screens */
  .pss-phone-wrap { transform: scale(0.58); transform-origin: top center; margin-bottom: -257px; }
  .pss-arr { top: 163px; width: 26px; height: 26px; }
  .pss-inner { padding: 0 16px; }
  .pss-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .pss-nav { gap: 6px; margin-bottom: 16px; }
  .pss-navitem { font-size: 0.72rem; padding: 6px 12px; }

  /* System flow */
  .flow-section { padding: 50px 0 56px; }
  .flow-wrap { padding: 0 20px; }
  .flow-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }

  /* Packages */
  .pkg-section { padding: 50px 0 56px; }
  .pkg-wrap { padding: 0 20px; }
  .pkg-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .pkg-card { padding: 26px 22px; }
  .pkg-addon { padding: 0; }
  .pkg-addon-head { padding: 18px 18px 14px; }
  .pkg-addon-body { padding: 12px 18px 0; }
  .pkg-addon-foot { padding: 12px 18px 18px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .pkg-reassure { padding: 28px 22px; }

  /* References */
  .ref-section { padding: 50px 0 56px; }
  .gr-section { padding: 44px 0 52px; }
  .gr-h2 { font-size: 1.7rem; }
  .gr-carousel-wrap { margin: 0 calc(-1 * var(--gutter)); overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gr-carousel-wrap::-webkit-scrollbar { display: none; }
  .gr-grid { display: flex; flex-wrap: nowrap; width: max-content; gap: 16px; padding: 4px var(--gutter); transition: none; }
  .gr-grid .gr-card { width: calc(100vw - 2 * var(--gutter) - 32px); min-width: calc(100vw - 2 * var(--gutter) - 32px); flex-shrink: 0; scroll-snap-align: start; }
  .gr-grid .gr-card-anim { opacity: 1; transform: none; transition: border-color 0.25s, background 0.25s; }
  .gr-dots { display: flex; }
  .ref-wrap { padding: 0 20px; }
  .ref-layout { gap: 32px; }
  .ref-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .ref-item { padding: 11px 13px; gap: 11px; }
  .ref-item-thumb { width: 42px; height: 29px; }
  .ref-item-name { font-size: 0.92rem; }
  .ref-stage { padding-bottom: 60px; }
  .ref-iphone { display: block; width: 88px; right: 0; }
  /* arányos sarok-lekerekítés + vékonyabb keret a 88px-es telefonhoz */
  .ref-iphone-body { border-radius: 16px; padding: 4px; }
  .ref-iphone-screen { border-radius: 12px; }
  .ref-ip-icons { display: none; }
  .ref-ip-statusbar { padding: 6px 10px 5px; }
  .ref-ip-time { font-size: 0.5rem; }
  .mac-menubar { font-size: 0.44rem; padding: 0 7px; }
  .mac-menu-right { gap: 5px; }
  .mac-dock { gap: 5px; padding: 4px 7px; bottom: 6px; }
  .mac-dock-ico { width: 19px; height: 19px; border-radius: 6px; }
  .ref-iphone-notch { width: 44px; height: 13px; top: 6px; }

  /* Why section mobile */
  .why-section { padding: 50px 0 56px; }
  .why-wrap { padding: 0 20px; }
  .why-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-card { padding: 24px 18px 22px; }
  .why-num { font-size: 2.8rem; }
  .why-num-unit { font-size: 1.5rem; }

  /* Audience marquee → smaller chips */
  .aud-section { padding: 50px 0 56px; }
  .aud-wrap { padding: 0 20px; }
  .aud-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .aud-chip { padding: 12px 18px; gap: 11px; }
  .aud-chip .aud-ico { width: 36px; height: 36px; }
  .aud-chip .aud-label { font-size: 0.85rem; }

  /* Value */
  .val-section { padding: 50px 0 56px; }
  .val-wrap { padding: 0 20px; }
  .val-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .val-col { padding: 26px 22px; }

  /* FAQ */
  .faq-section { padding: 50px 0 56px; }
  .faq-wrap { padding: 0 20px; }
  .faq-h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .faq-q { font-size: 0.9rem; padding: 16px 18px; }

  /* Booking */
  .book-section { padding: 44px 0 60px; }
  .book-wrap { padding: 0 20px; }
  .book-left { padding: 32px 24px; }
}

/* ── Slide 4 · Live avatar ring ── */
.psc-avatar-live { position:relative; display:inline-flex; flex-shrink:0; }
.psc-avatar-live::after {
  content:''; position:absolute; inset:-4px; border-radius:50%;
  border:2px solid #38BDF8; opacity:0;
  animation:avatarRing 2.2s ease-out infinite;
}
@keyframes avatarRing {
  0%  { transform:scale(0.88); opacity:0.9; }
  100%{ transform:scale(1.65); opacity:0; }
}
.psc-avatar-dot {
  position:absolute; bottom:-1px; right:-1px;
  width:9px; height:9px; border-radius:50%;
  background:#34D399; border:2px solid #05070e;
  box-shadow:0 0 7px #34D399;
  animation:pulse-dot 2s ease-in-out infinite;
}
/* Card hover within phone screen */
.psc-card { transition:border-color 0.2s, background 0.2s, transform 0.18s; }
.pss-slide .psc-card:hover {
  border-color:rgba(56,189,248,0.28);
  background:rgba(56,189,248,0.05);
  transform:translateX(3px);
}
/* Speed bar animated fill */
.psc-speed-fill { transition:width 1.2s cubic-bezier(0.34,1.1,0.64,1); }
/* Live notification pop-in — disabled */
.psc-notif {
  display: none;
  position:absolute; top:50px; left:12px; right:12px; z-index:50;
  display:flex; align-items:center; gap:9px;
  background:rgba(6,8,18,0.97); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(56,189,248,0.3); border-radius:14px; padding:9px 11px;
  box-shadow:0 8px 28px rgba(0,0,0,0.6), 0 0 18px rgba(56,189,248,0.08);
  transform:translateY(-76px) scale(0.95); opacity:0;
  transition:transform 0.52s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s, border-color 0.3s;
  pointer-events:none;
}
.psc-notif.show { transform:translateY(0) scale(1); opacity:1; }
.psc-notif-ico {
  width:28px; height:28px; border-radius:8px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(56,189,248,0.25);
  transition:background 0.3s, border-color 0.3s, color 0.3s;
}
.psc-notif-body { flex:1; min-width:0; overflow:hidden; }
.psc-notif-t { font-size:0.66rem; font-weight:700; color:#fff; line-height:1.18; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.psc-notif-s { font-size:0.54rem; color:rgba(255,255,255,0.42); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.psc-notif-pill {
  margin-left:auto; flex-shrink:0; font-size:0.56rem; font-weight:700;
  padding:2px 7px; border-radius:100px; border:1px solid;
  transition:color 0.3s, background 0.3s, border-color 0.3s;
}
/* Staggered entrance per slide */
@keyframes elFadeUp {
  from { opacity:0; transform:translateY(9px); }
  to   { opacity:1; transform:translateY(0); }
}
.pss-slide.active > *:nth-child(1) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.04s both; }
.pss-slide.active > *:nth-child(2) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.pss-slide.active > *:nth-child(3) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.17s both; }
.pss-slide.active > *:nth-child(4) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.24s both; }
.pss-slide.active > *:nth-child(5) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.31s both; }
.pss-slide.active > *:nth-child(6) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.38s both; }
.pss-slide.active > *:nth-child(7) { animation:elFadeUp 0.36s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
/* Battery fill */
.pss-battery-fill { transition:width 1.2s linear, fill 0.6s ease; }
/* Stat number pop */
.psc-stat-n.pop { animation:statPop 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes statPop {
  0%  { transform:scale(0.6); opacity:0.4; }
  100%{ transform:scale(1);   opacity:1; }
}

/* ════════════════════════════════════════════
   SITE FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
  width: calc(min(var(--page-max), 100%) - 2 * var(--gutter));
  margin: 0 auto;
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo img {
  height: 34px;
  max-height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.footer-about {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.footer-social:hover {
  border-color: rgba(56,189,248,0.35);
  background: rgba(2,100,223,0.1);
  color: #38BDF8;
  transform: translateY(-1px);
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(56,189,248,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 300;
  line-height: 1.4;
  transition: color 0.2s, transform 0.15s;
  display: inline-block;
}
.footer-nav a:hover {
  color: rgba(255,255,255,0.88);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item:hover .footer-contact-val { color: #38BDF8; }
.footer-contact-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(2,100,223,0.1);
  border: 1px solid rgba(2,100,223,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38BDF8;
  margin-top: 1px;
}
.footer-contact-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
  display: block;
}
.footer-contact-val {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: color 0.2s;
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.14); font-weight: 300; }

@media (max-width: 1100px) {
  .footer-inner { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-about { max-width: 520px; }
}
/* ── Mobile performance: disable heavy GPU effects ── */
@media (max-width: 768px) {
  /* particle canvas + láthatatlan aurora teljesen ki */
  #particle-canvas { display: none !important; }
  .aurora-blob { animation: none !important; }

  /* page-glow rétegek teljesen ki mobilon — úgyse látszottak, csak a GPU-t terhelték */
  .page-glows { display: none !important; }

  /* dekoratív, folyamatosan futó blur-glow animációk leállítása —
     a per-frame compositing a fő költség; a funkcionális animációkat
     (reveal, számlálók, FAQ, referencia-progress) nem érinti */
  .services-section::before, .services-section::after,
  .problem-section::before, .problem-section::after,
  .problem-section .glow-mid,
  .pss-glow {
    animation: none !important;
  }
  .pss-sticky::before, .pss-sticky::after { animation: none !important; }

  /* Hero: canvas nélkül CSS-alapú háttér — pont-háló + kék/lila glowok */
  .hero-block {
    background:
      radial-gradient(circle, rgba(56,189,248,0.13) 1px, transparent 1px),
      radial-gradient(ellipse 150% 65% at 50% 0%, rgba(2,100,223,0.26) 0%, transparent 62%),
      radial-gradient(ellipse 110% 65% at 95% 90%, rgba(139,92,246,0.16) 0%, transparent 60%),
      radial-gradient(ellipse 80% 50% at 5% 55%, rgba(2,100,223,0.10) 0%, transparent 60%);
    background-size: 36px 36px, 100% 100%, 100% 100%, 100% 100%;
    background-position: 14px 14px, 0 0, 0 0, 0 0;
  }
}

@media (max-width: 640px) {
  .footer-inner { padding: 44px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; padding-bottom: 36px; }
  .footer-about { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Live indicator dot pulse */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  animation: livePing 2s ease-out infinite;
}
@keyframes livePing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ════════════════════════════════════════════
   LAPTOP (rövidebb képernyő) — a telefon-jelenet
   beférjen a pinned 100vh-ba, ne vágódjon le
   ════════════════════════════════════════════ */
@media (min-width: 901px) and (max-height: 860px) {
  .pss-nav { margin-bottom: 28px; }
  .pss-inner { zoom: 0.93; }
}
@media (min-width: 901px) and (max-height: 780px) {
  .pss-nav { margin-bottom: 18px; }
  .pss-inner { zoom: 0.84; }
}
@media (min-width: 901px) and (max-height: 700px) {
  .pss-nav { margin-bottom: 12px; }
  .pss-inner { zoom: 0.75; }
}
@media (min-width: 901px) and (max-height: 620px) {
  .pss-inner { zoom: 0.68; }
}

/* ════════════════════════════════════════════
   NAGY KÉPERNYŐ (≥1700px) — több tér, nagyobb
   tartalom; a szolgáltatás-telefon arányosan nő
   ════════════════════════════════════════════ */
@media (min-width: 1700px) {
  :root { --page-max: 1500px; --gutter: 80px; }
  .hero-h1 { font-size: clamp(3.6rem, 4vw, 5.2rem); }
}
@media (min-width: 1700px) and (min-height: 950px) {
  .pss-inner { zoom: 1.12; }
}
@media (min-width: 2200px) {
  :root { --page-max: 1680px; }
}
@media (min-width: 2200px) and (min-height: 1150px) {
  .pss-inner { zoom: 1.26; }
}
