/* --- ALAP BEÁLLÍTÁSOK --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --bg-dark: #020617;
    --primary-orange: #FF4500;
    --primary-cyan: #00f2ff;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-orange: linear-gradient(135deg, #FF4500 0%, #ff8c00 100%);
    --gradient-cyan: linear-gradient(135deg, #00f2ff 0%, #0088ff 100%);
    --main-gradient: linear-gradient(to right, #FF4500, #00f2ff);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; } /* Fontos: Vízszintes görgetés tiltása */
body { 
    background-color: var(--bg-dark); 
    color: var(--text-white); 
    font-family: 'Outfit', sans-serif; 
    overflow-x: hidden; /* Dupla védelem a szétcsúszás ellen */
    line-height: 1.6; 
    position: relative; 
    width: 100%;
}

/* Preloader */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-dark); z-index: 99999; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s; }
body.loaded #preloader { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; position: relative; }
.loader-logo { margin-bottom: 20px; animation: pulseLogo 1.5s infinite alternate; }
.loader-img { height: 60px; filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5)); }
.loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin: 0 auto; }
.loader-progress { width: 0%; height: 100%; background: var(--main-gradient); animation: loadProgress 2s ease-in-out forwards; box-shadow: 0 0 10px var(--primary-cyan); }
@keyframes loadProgress { 0% { width: 0%; } 50% { width: 40%; } 100% { width: 100%; } }
@keyframes pulseLogo { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.1); opacity: 1; } }

/* Scroll Progress */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--main-gradient); z-index: 9999; box-shadow: 0 0 10px var(--primary-cyan); transition: width 0.1s; }

/* HÁTTÉR ELEMEK */
.global-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; overflow: hidden; }
.floating-symbol { position: absolute; color: rgba(255, 255, 255, 0.03); font-weight: 800; font-size: 5rem; filter: blur(2px); animation: floatSymbol 20s infinite linear; user-select: none; }
.sym-1 { top: 10%; left: 5%; font-size: 8rem; animation-duration: 25s; }
.sym-2 { top: 40%; right: 10%; font-size: 6rem; animation-duration: 30s; animation-direction: reverse; }
.sym-3 { bottom: 15%; left: 15%; font-size: 10rem; animation-duration: 28s; }
.sym-4 { top: 20%; right: 30%; font-size: 4rem; color: rgba(0, 242, 255, 0.02); animation-duration: 22s; }

/* Lebegő Szavak */
.floating-word { position: absolute; color: rgba(255, 255, 255, 0.04); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; animation: floatWord 25s infinite linear; user-select: none; white-space: nowrap; }
.word-1 { top: 15%; left: 20%; animation-delay: 0s; font-size: 2rem; }
.word-2 { top: 50%; left: 80%; animation-delay: 5s; color: rgba(255, 69, 0, 0.05); }
.word-3 { top: 80%; left: 40%; animation-delay: 2s; }
.word-4 { top: 30%; left: 60%; animation-delay: 8s; font-size: 2.5rem; }
.word-5 { top: 70%; left: 10%; animation-delay: 12s; color: rgba(0, 242, 255, 0.05); }
.word-6 { top: 10%; left: 80%; animation-delay: 15s; }

.background-glows { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.glow-spot { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1; }
.spot-1 { top: -10%; left: -10%; width: 60vw; height: 60vw; background: var(--primary-cyan); animation: pulseGlow 8s infinite alternate; }
.spot-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: var(--primary-orange); animation: pulseGlow 10s infinite alternate-reverse; }

/* NAVIGÁCIÓ */
.navbar { position: fixed; top: 0; width: 100%; height: 80px; background: rgba(2, 6, 23, 0.7); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); z-index: 1000; transition: 0.3s; }
.navbar.scrolled { background: rgba(2, 6, 23, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.nav-container { max-width: 1200px; margin: 0 auto; height: 100%; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.nav-link.active { color: var(--primary-orange) !important; text-shadow: 0 0 15px rgba(255, 69, 0, 0.4); position: relative; }
.nav-link.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary-orange); box-shadow: 0 0 10px var(--primary-orange); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 5px 10px; border-radius: 10px; transition: 0.3s; }
.logo:hover { background: rgba(255,255,255,0.05); }
.logo-box { width: 80px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--glass-border); box-shadow: 0 0 15px rgba(255, 69, 0, 0.2); position: relative; overflow: hidden; }
.logo-box::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent); transform: rotate(45deg); animation: shimmer 3s infinite; }
.logo-img { height: 30px; position: relative; z-index: 2; }
.logo-text { font-weight: 800; font-size: 1.5rem; color: white; letter-spacing: -0.5px; }
.nav-menu { display: flex; gap: 30px; }
.nav-link { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; position: relative; }
.nav-link:hover { color: white; }

/* GOMBOK */
.btn-primary { background: var(--gradient-orange); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 0 20px rgba(255, 69, 0, 0.4); position: relative; overflow: hidden; white-space: nowrap; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 0 30px rgba(255, 69, 0, 0.6); }
.btn-secondary { background: rgba(255,255,255,0.05); color: white; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; border: 1px solid var(--glass-border); transition: 0.3s; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn-secondary:hover { border-color: var(--primary-cyan); color: var(--primary-cyan); background: rgba(0, 242, 255, 0.1); box-shadow: 0 0 15px rgba(0, 242, 255, 0.3); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.2); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-outline:hover { border-color: var(--primary-cyan); color: var(--primary-cyan); box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.1); }
.text-orange { color: var(--primary-orange); }
.text-cyan { color: var(--primary-cyan); }

/* HERO SZEKCIÓ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; overflow: hidden; }
.hero-connector { position: absolute; top: 50%; left: 30%; width: 40%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,69,0,0.5), rgba(0,242,255,0.5), transparent); z-index: 1; opacity: 0.3; transform: rotate(-10deg); }
.hero-layout { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 10; max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 40px; }
.hero-text { flex: 1; max-width: 650px; z-index: 20; animation: fadeInUp 1s ease-out forwards; }
.hero-visual { flex: 1; height: 600px; position: relative; perspective: 1200px; transform: translateX(-20px); cursor: pointer; }
.glass-card { position: absolute; width: 270px; height: 165px; background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95)); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.2rem; transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); animation: floatStack 5s ease-in-out infinite; }
.card-1 { z-index: 1; top: 20%; right: 25%; transform: rotateZ(-8deg) translateZ(-40px); border-left: 4px solid var(--primary-orange); }
.card-2 { z-index: 2; top: 35%; right: 35%; transform: rotateZ(-2deg) translateZ(0px); border-left: 4px solid var(--primary-cyan); }
.card-3 { z-index: 3; top: 50%; right: 40%; transform: rotateZ(5deg) translateZ(40px); border: 1px solid var(--primary-orange); width: 290px; height: 180px; }
.hero-visual:hover .card-1 { top: 5%; right: 0%; transform: rotateY(-25deg) rotateX(5deg) rotateZ(0deg); background: rgba(15, 23, 42, 0.8); }
.hero-visual:hover .card-2 { top: 35%; right: 10%; transform: rotateY(-25deg) rotateX(5deg) translateZ(50px); background: rgba(15, 23, 42, 0.8); }
.hero-visual:hover .card-3 { top: 65%; right: 0%; transform: rotateY(-25deg) rotateX(5deg) translateZ(80px); background: rgba(15, 23, 42, 0.9); }
.glass-card:hover { box-shadow: 0 0 40px rgba(0, 242, 255, 0.4) !important; border-color: white !important; z-index: 100 !important; transform: scale(1.1) rotateY(0deg) !important; }
.icon-float { font-size: 2.5rem; margin-bottom: 10px; color: var(--text-white); filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); }
.logo-circle { width: 60px; height: 60px; background: var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; box-shadow: 0 0 20px var(--primary-orange); animation: pulse 2s infinite; }
.status-bar { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #4ade80; }
.dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 10px #4ade80; animation: blink 2s infinite; }
.badge { display: inline-block; padding: 8px 16px; background: rgba(0, 242, 255, 0.1); color: var(--primary-cyan); border: 1px solid rgba(0, 242, 255, 0.3); border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 25px; box-shadow: 0 0 15px rgba(0, 242, 255, 0.1); }
h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; }
.text-gradient { background: var(--main-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 20px rgba(255,69,0,0.3)); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; }
.cta-group { display: flex; gap: 20px; }

/* 1. STATISZTIKA SÁV */
.stats-ticker { background: rgba(255,255,255,0.02); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 30px 0; position: relative; overflow: hidden; }
.stats-ticker::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.stat-item { display: flex; align-items: center; justify-content: center; gap: 20px; transition: 0.3s; }
.stat-item:hover { transform: scale(1.05); }
.stat-item i { font-size: 2.5rem; filter: drop-shadow(0 0 10px currentColor); }
.stat-item h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0; }
.stat-item p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* 2. COUNTER SZEKCIÓ (Split Layout) */
.counter-section { padding: 120px 0; position: relative; background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.8), transparent); }
.counter-layout { display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.counter-text-side { flex: 1; max-width: 500px; }
.counter-text-side h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; margin-top: 10px; font-weight: 800; }
.counter-text-side p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }
.decoration-line { width: 80px; height: 4px; background: var(--main-gradient); border-radius: 2px; box-shadow: 0 0 15px var(--primary-cyan); }
.counter-grid-side { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.counter-card { display: flex; align-items: center; gap: 30px; padding: 30px 40px; background: rgba(255, 255, 255, 0.015); border-radius: 20px; border-left: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden; }
.counter-card:hover { transform: translateX(15px); background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent); border-left: 4px solid var(--primary-orange); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); }
.counter-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.3s; flex-shrink: 0; }
.icon-orange { color: var(--primary-orange); }
.icon-purple { color: #a855f7; }
.counter-card:hover .counter-icon { background: var(--primary-cyan); color: #000; transform: scale(1.1) rotate(10deg); box-shadow: 0 0 20px var(--primary-cyan); }
.counter-card:hover .counter-icon.icon-orange { background: var(--primary-orange); box-shadow: 0 0 20px var(--primary-orange); }
.counter-card:hover .counter-icon.icon-purple { background: #a855f7; box-shadow: 0 0 20px #a855f7; }
.counter-data { display: flex; flex-direction: column; }
.counter-card h3 { font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 5px; color: white; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: 0.3s; }
.counter-card:hover h3 { background: var(--main-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.counter-card p { color: var(--text-muted); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin: 0; }

/* ELVÁLASZTÓ VONAL */
.section-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); margin: 0; position: relative; }
.section-divider::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 50px; height: 4px; background: var(--main-gradient); border-radius: 2px; box-shadow: 0 0 15px var(--primary-orange); }

/* CÍMSOROK */
.section-header { text-align: center; margin-bottom: 60px; position: relative; display: inline-block; width: 100%; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; position: relative; z-index: 2; }
.section-header::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) skewX(-20deg); width: 200px; height: 60px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent); z-index: 1; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.sub-title { color: var(--primary-orange); font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; text-shadow: 0 0 10px rgba(255, 69, 0, 0.3); }

/* TÖBBI SZEKCIÓ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; position: relative; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: rgba(15, 23, 42, 0.6); padding: 35px 30px; border-radius: 24px; border: 1px solid var(--glass-border); transition: 0.4s; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 24px; padding: 2px; background: linear-gradient(45deg, transparent, var(--primary-orange), var(--primary-cyan), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: 0.4s; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-10px); background: rgba(15, 23, 42, 0.8); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.card-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; margin-bottom: 25px; flex-shrink: 0; position: relative; z-index: 2; transition: 0.3s; }
.feature-card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
.bg-orange-glow { background: var(--gradient-orange); box-shadow: 0 0 20px rgba(255, 69, 0, 0.2); }
.bg-cyan-glow { background: var(--gradient-cyan); box-shadow: 0 0 20px rgba(0, 242, 255, 0.2); }
.bg-purple-glow { background: linear-gradient(135deg, #a855f7, #6366f1); box-shadow: 0 0 20px rgba(168, 85, 247, 0.2); }
.bg-blue-glow { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 10px; z-index: 2; }
.feature-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; flex-grow: 1; z-index: 2; }
.check-list { list-style: none; margin-top: auto; z-index: 2; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--text-white); margin-bottom: 8px; font-size: 0.9rem; }
.check-list li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--primary-cyan); }
.ovir-section { background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 242, 255, 0.05) 100%); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.ovir-layout { display: flex; align-items: center; gap: 60px; }
.ovir-content { flex: 1; }
.ovir-image { flex: 1; }
.screen-frame { background: #0f172a; border: 1px solid var(--glass-border); border-radius: 16px; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; transition: 0.3s; }
.screen-frame:hover { transform: perspective(1000px) rotateY(-5deg); box-shadow: -20px 20px 50px rgba(0, 242, 255, 0.1); }
.screen-header { display: flex; align-items: center; padding: 10px; background: rgba(255,255,255,0.05); border-radius: 8px 8px 0 0; margin-bottom: 10px; gap: 15px; }
.dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.dots span:nth-child(1) { background: #ef4444; } .dots span:nth-child(2) { background: #eab308; } .dots span:nth-child(3) { background: #22c55e; }
.url-bar { background: rgba(0,0,0,0.3); padding: 4px 15px; border-radius: 20px; color: var(--text-muted); font-size: 0.8rem; flex: 1; text-align: center; }
.dash-row { display: flex; gap: 10px; margin-bottom: 10px; }
.dash-box { height: 80px; background: rgba(255,255,255,0.05); border-radius: 8px; animation: pulse 3s infinite; }
.w-60 { width: 60%; } .w-40 { width: 40%; } .w-100 { width: 100%; } .h-120 { height: 120px; }
.floating-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary-cyan); color: #000; padding: 10px 20px; border-radius: 30px; font-weight: 800; box-shadow: 0 0 20px rgba(0, 242, 255, 0.5); animation: floatBadge 3s infinite ease-in-out; }
.tech-features { margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* --- OVIR FEATURE BOX DESIGN --- */

/* A doboz kinézete */
.tf-item {
    display: flex;
    align-items: center;       /* Függőlegesen középre */
    gap: 20px;                 /* Távolság az ikon és a szöveg között */
    padding: 20px 25px;        /* Belső térköz */
    background: rgba(255, 255, 255, 0.03); /* Nagyon halvány üveg háttér */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Finom keret */
    border-radius: 16px;       /* Lekerekített sarkok */
    margin-bottom: 20px;       /* Távolság a következő doboztól */
    transition: all 0.3s ease; /* Finom animáció */
    backdrop-filter: blur(5px);/* Homályosítás a doboz mögött */
}

/* Hover (Rávitel) Effekt */
.tf-item:hover {
    background: rgba(255, 255, 255, 0.06); /* Kicsit világosodik */
    border-color: var(--primary-cyan);     /* A keret ciánkék lesz */
    transform: translateX(10px);           /* Kicsit jobbra csúszik */
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.15); /* Finom ragyogás */
}

/* Az ikon stílusa a dobozon belül */
.tf-item i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    background: rgba(0, 242, 255, 0.1); /* Ikon háttere */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;       /* Ikon doboz lekerekítése */
    flex-shrink: 0;            /* Ne nyomódjon össze mobilon */
    border: 1px solid rgba(0, 242, 255, 0.2);
    margin-top: 0;             /* Reseteljük az előző beállításokat */
}

/* Szövegek formázása */
.tf-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.tf-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}
.office-section { padding: 80px 0; position: relative; z-index: 2; }
.office-box { display: flex; border: 1px solid var(--glass-border); border-radius: 24px; overflow: hidden; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); transition: 0.3s; }
.office-box:hover { border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 60px rgba(0, 242, 255, 0.1); }
.office-content { flex: 1; padding: 50px; }
.office-map-frame { flex: 1; min-height: 350px; position: relative; }
.office-map-frame iframe { filter: invert(90%) hue-rotate(180deg) grayscale(20%); transition: 0.5s; }
.office-box:hover iframe { filter: invert(90%) hue-rotate(180deg) grayscale(0%); }
.office-details { margin: 30px 0; }
.detail-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--text-white); font-weight: 500; }
.detail-row i { width: 20px; text-align: center; font-size: 1.2rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-bottom: 60px; }
.team-card { background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); padding: 30px; border-radius: 20px; transition: 0.3s; position: relative; overflow: hidden; }
.team-card:hover { transform: translateY(-5px); border-color: var(--primary-orange); box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1); }
.team-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--main-gradient); transform: scaleX(0); transition: 0.3s; transform-origin: left; }
.team-card:hover::after { transform: scaleX(1); }
.member-role { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 10px; }
.team-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.separator { width: 50px; height: 3px; background: var(--glass-border); margin-bottom: 20px; }
.skills-list span { display: block; margin-bottom: 8px; color: var(--text-muted); font-size: 0.9rem; }
.skills-list i { color: var(--primary-orange); margin-right: 8px; }
.contact-info { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
.contact-link { display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; margin-bottom: 10px; font-weight: 500; transition: 0.3s; }
.contact-link:hover { color: var(--primary-orange); transform: translateX(5px); }
.modern-footer { background-color: #0b1120; position: relative; margin-top: 60px; }
.footer-gradient-line { width: 100%; height: 4px; background: var(--main-gradient); box-shadow: 0 0 15px rgba(255, 69, 0, 0.5); }
.modern-footer .container { padding-top: 60px; padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 60px; margin-bottom: 50px; }
.footer-logo-container { background: rgba(255, 255, 255, 0.05); padding: 15px 25px; border-radius: 12px; display: inline-flex; align-items: center; border: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 20px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); transition: 0.3s; }
.footer-logo-container:hover { box-shadow: 0 0 40px rgba(0, 242, 255, 0.3); border-color: var(--primary-cyan); }
.footer-logo-img { height: 50px; width: auto; object-fit: contain; }
.footer-mission { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.social-icons { display: flex; gap: 15px; }
.social-circle { width: 40px; height: 40px; border-radius: 50%; background: #1e293b; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.social-circle:hover { background: var(--primary-orange); transform: translateY(-3px) rotate(360deg); box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3); }
.footer-nav-col h4, .footer-contact-col h4 { color: white; font-size: 1.2rem; margin-bottom: 25px; font-weight: 700; position: relative; display: inline-block; }
.footer-nav-col h4::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 40px; height: 3px; background: var(--primary-cyan); border-radius: 2px; }
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 12px; }
.footer-nav-col a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.footer-nav-col a i { font-size: 0.7rem; color: var(--primary-orange); opacity: 0.7; transition: 0.3s; }
.footer-nav-col a:hover { color: white; padding-left: 5px; }
.footer-nav-col a:hover i { transform: translateX(3px); color: var(--primary-cyan); }
.highlight-link { color: var(--primary-cyan) !important; font-weight: 600; }
.contact-row { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.icon-box { width: 35px; height: 35px; background: rgba(0, 242, 255, 0.1); color: var(--primary-cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: 0.3s; }
.contact-row:hover .icon-box { background: var(--primary-cyan); color: #000; box-shadow: 0 0 15px var(--primary-cyan); }
.label { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.value { color: white; font-weight: 500; font-size: 0.95rem; }
.value a { color: white; text-decoration: none; transition: 0.3s; }
.value a:hover { color: var(--primary-orange); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; color: #64748b; font-size: 0.85rem; flex-wrap: wrap; gap: 15px; }
.dev-credit a { color: var(--primary-cyan); text-decoration: none; font-weight: 600; }

/* ANIMÁCIÓK */
@keyframes floatSymbol { from { transform: translateY(0); } to { transform: translateY(-100vh); } }
@keyframes floatWord { from { transform: translateX(100vw); } to { transform: translateX(-100vw); } }
@keyframes shimmer { 0% { transform: translateX(-150%) rotate(45deg); } 100% { transform: translateX(150%) rotate(45deg); } }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pulseGlow { 0% { opacity: 0.1; transform: scale(1); } 100% { opacity: 0.2; transform: scale(1.1); } }
@keyframes floatSlow { 0% { transform: translate(0, 0); } 100% { transform: translate(20px, 40px); } }
@keyframes floatStack { 0%, 100% { transform: translateY(0) rotateZ(var(--r, 0deg)); } 50% { transform: translateY(-15px) rotateZ(var(--r, 0deg)); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: 0.8s ease-out; }
.visible { opacity: 1; transform: translate(0); }
.delay-100 { transition-delay: 0.1s; } .delay-200 { transition-delay: 0.2s; } .delay-300 { transition-delay: 0.3s; } .delay-400 { transition-delay: 0.4s; }

/* --- MOBIL OPTIMALIZÁCIÓ JAVÍTÁS (EZT MÁSOLD A FÁJL VÉGÉRE) --- */
@media screen and (max-width: 992px) {
    /* Általános szövegméretek csökkentése */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Konténer igazítás */
    .hero-layout, .ovir-layout, .counter-layout, .office-box { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    
    .hero-text, .counter-text-side, .counter-grid-side { 
        max-width: 100%; 
        width: 100%; 
    }
    .decoration-line { margin: 0 auto; }
    
    /* Hero igazítás */
    .hero { height: auto; padding-bottom: 60px; padding-top: 100px; }
    .hero-visual { width: 100%; height: 400px; transform: translateX(0); margin-top: 20px; cursor: default; }
    .hero-connector { display: none; }
    
    /* Kártyák animációja mobilon */
    .glass-card { width: 240px; height: 145px; font-size: 1rem; transition: none; animation: floatMobile 6s infinite; }
    .card-1 { right: auto; left: 50%; margin-left: -120px; top: 0; animation-delay: 0s; }
    .card-2 { right: auto; left: 50%; margin-left: -120px; top: 32%; z-index: 5; animation-delay: 2s; }
    .card-3 { right: auto; left: 50%; margin-left: -130px; top: 64%; animation-delay: 4s; }

    /* --- JAVÍTÁS 1: OVIR ABLAK SZÉLESÍTÉSE --- */
    .ovir-image {
        width: 100%; /* Kitölti a képernyőt */
        padding: 0;
        margin: 0;
    }
    .screen-frame {
        width: 100%; /* Teljes szélesség */
        margin: 0 auto;
        box-sizing: border-box; /* Hogy a padding ne nyomja szét */
    }

    /* --- JAVÍTÁS 2: IRODA MAGASSÁG ÉS KITÖLTÉS --- */
    .office-box {
        flex-direction: column;
        height: auto; /* Automatikus magasság, nem fix */
    }
    .office-content {
        padding: 25px 20px; /* Kisebb padding, hogy a tartalom kitöltse */
        text-align: left; /* Mobilon is jobb lehet balra, de maradhat center is ha akarod */
    }
    .office-map-frame {
        width: 100%;
        min-height: 250px; /* Kisebb magasság mobilon, ne legyen túl nagy */
        height: 250px;
    }

    /* --- JAVÍTÁS 3: KAPCSOLAT KÁRTYÁK HELYIGÉNYE --- */
    .container { padding: 0 15px; } /* Kisebb szélső margó */
    .team-card {
        padding: 20px; /* Kisebb belső térköz, hogy ne nyomódjon össze */
    }

    /* Rácsok egy oszlopba */
    .grid-4, .stats-grid, .counter-grid, .team-grid { grid-template-columns: 1fr; gap: 30px; }

    /* --- JAVÍTÁS 4: FOOTER BALRA IGAZÍTÁSA --- */
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: left; /* Balra igazítás a "csúnya közép" helyett */
        gap: 40px; 
    }
    .contact-row {
        justify-content: flex-start; /* Ikonok balra */
    }
    .footer-logo-container {
        justify-content: flex-start; /* Logo balra */
        display: inline-flex;
    }
    .social-icons {
        justify-content: flex-start; /* Social ikonok balra */
    }
    /* Ha a Hero szöveget középen szeretnéd hagyni, azt külön kell definiálni, de a footer most balos lesz */
    
    /* Navigáció */
    .hamburger { display: flex; z-index: 1001; }
    .desktop-only { display: none; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 85%; height: 100vh; background: rgba(2, 6, 23, 0.98); flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; backdrop-filter: blur(20px); z-index: 1000; }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.4rem; margin-bottom: 15px; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

@keyframes floatMobile { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
/* Telefon specifikus finomhangolás */
@media screen and (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-text p { font-size: 1rem; }
    .section, .counter-section { padding: 60px 0; }
    .counter-card h3 { font-size: 2.8rem; }
    .navbar { padding: 0 10px; }
    .logo-text { font-size: 1.2rem; }
    .floating-word, .floating-symbol { opacity: 0.3; } /* Halványabb, hogy ne zavarjon */
}

@keyframes floatMobile { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* --- STATISZTIKA SÁV MOBIL JAVÍTÁS (Style.css végére) --- */
@media screen and (max-width: 992px) {
    
    /* A konténer szélességének kényszerítése */
    .stats-ticker .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px; /* Minimális margó a szélektől */
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* A rács átalakítása Flexbox-ra a stabilabb megjelenésért */
    .stats-grid {
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
        gap: 30px;
        margin: 0 !important;
    }

    /* Az egyes elemek teljes szélességűek legyenek */
    .stat-item {
        width: 100% !important;
        display: flex;
        align-items: center;
        /* Középre igazítjuk a tartalmat (ikon + szöveg) */
        justify-content: flex-start; /* Ha balra akarod igazítani */
        /* VAGY: justify-content: center; (Ha középre akarod) */
        
        /* Egy kis extra háttér, hogy jobban látszódjon a kártya jelleg (opcionális) */
        background: rgba(255, 255, 255, 0.03);
        padding: 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    /* Ha középre szeretnéd az ikonokat és szöveget mobilon, használd ezt: */
    .stat-item {
        justify-content: center;
    }
}

/* --- OVIR KÁRTYÁK MOBIL JAVÍTÁSA (EZT A VÉGÉRE) --- */
@media screen and (max-width: 768px) {
    .tf-item {
        flex-direction: column; /* Egymás alá kerülnek */
        text-align: center;     /* Középre igazítjuk a szöveget */
        align-items: center;    /* Középre igazítjuk az ikont */
        padding: 30px 20px;     /* Több belső térköz */
        gap: 15px;              /* Távolság az ikon és szöveg között */
        height: auto;           /* Rugalmas magasság */
    }

    /* Ikon igazítása mobilon */
    .tf-item i {
        margin: 0 0 10px 0;     /* Kis hely az ikon alatt */
        width: 60px;            /* Picit nagyobb ikon, hogy látványosabb legyen */
        height: 60px;
        font-size: 1.8rem;
    }

    /* Szöveg igazítása */
    .tf-item h4 {
        font-size: 1.2rem;      /* Kicsit nagyobb betűméret a címnek */
        margin-bottom: 8px;
    }
    
    .tf-item p {
        font-size: 1rem;        /* Olvashatóbb szöveg */
    }
}

/* --- HERO MOTTÓ --- */
.hero-motto {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-orange);
    border-radius: 0 10px 10px 0;
    max-width: 500px;
    font-style: italic;
    color: #cbd5e1; /* Világosszürke */
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.hero-motto i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.hero-motto strong {
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

/* Mobil igazítás */
@media screen and (max-width: 992px) {
    .hero-motto {
        margin: 30px auto 0; /* Középre igazítás */
        justify-content: center;
        text-align: left;
    }
}