/* =============================
   GLOBAL
============================= */

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

body {
  background: #050b1a;
  overflow-x: hidden;
  font-family: 'Titillium Web', Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: white;
}

/* BACKGROUND CONTAINER */
.app-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.gradient-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, #0f2a5c 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, #1b4ed8 0%, transparent 50%),
              linear-gradient(160deg, #040814 0%, #0b1e3a 40%, #050b1a 100%);
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,150,255,0.4) 0%, transparent 70%);
  filter: blur(120px);
  animation: floatGlow 12s infinite alternate ease-in-out;
}

.glow-1 { top: -100px; left: -150px; }
.glow-2 { bottom: -150px; right: -150px; animation-delay: 4s; }

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 200px 200px;
  opacity: 0.15;
  animation: moveParticles 60s linear infinite;
}

.particles::after {
  animation-direction: reverse;
  opacity: 0.08;
}

@keyframes floatGlow {
  from { transform: translateY(0px) translateX(0px); }
  to   { transform: translateY(60px) translateX(40px); }
}

@keyframes moveParticles {
  from { transform: translateY(0px); }
  to   { transform: translateY(-1000px); }
}

@keyframes float {
  from { transform: translateY(0px); }
  to   { transform: translateY(60px); }
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.25), transparent 70%);
  filter: blur(120px);
  z-index: -1;
  animation: float 10s infinite alternate ease-in-out;
}
body::before { top: -200px; left: -200px; }
body::after  { bottom: -200px; right: -200px; animation-delay: 4s; }

/* =============================
   LAYOUT
============================= */

.container {
  width: 90%;
  max-width: 1800px;
  margin: auto;
}

section {
  padding: 120px 0;
  position: relative;
}

h1, h2, h3 { font-weight: 700; }

h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

/* =============================
   NAVBAR
============================= */

header {
  padding: 30px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  background: rgba(10,18,46,0.6);
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #00e0ff;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 12px;
  transition: 0.3s ease;
  text-decoration: none;
  color: white;
}

.nav-links a:hover { color: #00e0ff; }

.nav-links a.active {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #00e0ff;
  box-shadow: 0 0 25px rgba(0,224,255,0.2);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  margin-left: 20px;
}

.lang-switcher a {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.3s;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: #00e0ff;
  border-color: rgba(0,224,255,0.4);
  background: rgba(0,224,255,0.08);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.45);
  overflow: hidden;
}

.brand-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: .75rem;
  color: rgba(184, 200, 255, 0.7);
}

.header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bfff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,191,255,0.6);
}

.header-title span {
  color: #007fff;
  text-shadow: 0 0 8px rgba(0,127,255,0.6);
}

/* =============================
   HERO
============================= */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 0;
}

.hero-text { flex: 1; min-width: 320px; }

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img { max-width: 100%; height: auto; }

.hero-text h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-text .accent {
  background: linear-gradient(90deg, #00e0ff, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 20px;
  color: #b8c8ff;
  margin-bottom: 40px;
}

.hero-buttons a {
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons {
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #00e0ff, #007bff);
  color: white;
  box-shadow: 0 0 30px rgba(0,255,255,0.4);
}

.btn-primary:hover { transform: translateY(-3px); }

.btn-glass {
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.05);
  color: white;
}

.btn-glass:hover { background: rgba(255,255,255,0.15); }

/* =============================
   HOW IT WORKS
============================= */

.how-section { padding: 160px 0; }

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 120px;
}

.step-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 80px;
}

.step-content,
.step-image {
  flex: 0 0 520px;
  display: flex;
  justify-content: center;
}

.step-row:nth-child(even) { flex-direction: row-reverse; }

.glass-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(25px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  width: 100%;
  max-width: 520px;
  height: 200px;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}

.step-number {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, #00e0ff, #007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 70px;
}

.step-info h3 { font-size: 26px; margin-bottom: 12px; }
.step-info p  { opacity: 0.85; line-height: 1.7; }

.phone-mockup {
  animation: floatPhone 6s ease-in-out infinite;
  transition: transform 0.6s ease;
}

.phone-mockup img {
  width: 400px;
  border-radius: 28px;
  display: block;
}

@keyframes floatPhone {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-12px); }
}

/* =============================
   BENEFITS
============================= */

.benefits-section { padding: 120px 0; }

.benefits-wrapper {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.benefit-column { flex: 1; }

.column-title {
  font-size: 26px;
  margin-bottom: 30px;
  position: relative;
}

.column-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #00e0ff, #007bff);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,224,255,0.2);
  border: 1px solid rgba(0,224,255,0.4);
}

.benefit-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00e0ff, #007bff);
  color: white;
  box-shadow: 0 0 20px rgba(0,224,255,0.4);
  transition: 0.4s ease;
  font-size: 22px;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 30px rgba(0,224,255,0.8);
}

.benefit-text h4 { margin-bottom: 8px; font-size: 18px; }
.benefit-text p  { font-size: 15px; line-height: 1.5; color: #b8c8ff; }

/* =============================
   CTA / CONTACT
============================= */

.cta { text-align: center; }

.cta-box {
  padding: 80px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00e0ff, #007bff);
}

.cta-box h2 { margin-bottom: 20px; }

.cta-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border-radius: 12px;
  background: white;
  color: #0b122e;
  text-decoration: none;
  font-weight: 600;
}

/* =============================
   REVEAL ANIMATION
============================= */

/* Default: visible (fallback if JS fails or not loaded yet) */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS adds this class to elements that are out of view */
.reveal.hidden {
  opacity: 0;
  transform: translateY(40px);
}

/* JS adds this when element enters viewport */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   FOOTER
============================= */

.footer {
  margin-top: 120px;
  padding: 60px 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 { margin-bottom: 16px; font-size: 20px; color: #00e0ff; }
.footer-col p  { color: #b8c8ff; line-height: 1.6; font-size: 15px; }

.footer a { color: #00e0ff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.contact-item svg { width: 14px; height: 14px; }

/* =============================
   RESPONSIVE
============================= */

@media(max-width: 1100px) {
  .benefits-wrapper { flex-direction: column; }
  .benefit-grid { grid-template-columns: 1fr; }
}

@media(max-width: 1000px) {
  .hero { flex-direction: column; text-align: center; }
  .step-row { flex-direction: column !important; gap: 60px; }
  .phone-mockup img { width: 220px; }
  .step-content, .step-image { flex: unset; width: 100%; }
}

@media(max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .nav-links { display: none; }
}

@media(max-width: 600px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 38px; }
  .cta-box { padding: 40px 20px; }
}

/* =============================
   PAGE – Általános oldal
============================= */

.page-content {
    min-height: 80vh;
    padding: 120px 0 80px;
}

.page-article {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
}

.page-title {
    font-size: 36px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(90deg, #00e0ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-body {
    color: #b8c8ff;
    line-height: 1.8;
    font-size: 16px;
}

.page-body h2 {
    font-size: 24px;
    color: white;
    -webkit-text-fill-color: white;
    text-align: left;
    margin: 40px 0 16px;
}

.page-body h3 {
    font-size: 18px;
    color: #00e0ff;
    margin: 28px 0 10px;
}

.page-body p {
    margin-bottom: 16px;
}

.page-body a {
    color: #00e0ff;
    text-decoration: underline;
}

.page-body ul,
.page-body ol {
    margin: 12px 0 16px 24px;
}

.page-body li {
    margin-bottom: 8px;
}

.page-body strong {
    color: white;
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-body table th,
.page-body table td {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.page-body table th {
    background: rgba(0,224,255,0.1);
    color: white;
}

@media (max-width: 700px) {
    .page-article {
        padding: 30px 20px;
    }
    .page-title {
        font-size: 26px;
    }
}

.store-buttons{
    margin-top:18px;
    display:flex;
    gap:14px;
    align-items:center;
}

.store-buttons img{
    height:48px;
    width:auto;
    transition:transform .2s ease, opacity .2s ease;
}

.store-buttons a:hover img{
    transform:translateY(-2px);
    opacity:0.9;
}

/* mobil */
@media (max-width:768px){

    .store-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .store-buttons img{
        height:44px;
    }