/* --- LUCIDWEB GLOBÁLIS STÍLUSOK (PRÉMIUM 2.0) --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700;800&display=swap');

:root {
  /* Alap Színpaletta (Eredeti) */
  --bg-dark: #0F172A;        /* Mély űrkék háttér */
  --bg-card: #1E293B;        /* Kártyák és dobozok színe */
  --lucid-cyan: #00E5FF;     /* Világító neon türkiz */
  --cyan-dark: #00B2CC;      /* Gomb hover szín */
  --text-light: #F8FAFC;     /* Kristályfehér szöveg */
  --text-muted: #94A3B8;     /* Másodlagos, szürkés szöveg */
  
  /* Új Tech/Modern Változók a Főoldalhoz */
  --accent-glow: rgba(0, 229, 255, 0.2);
  --accent-grad: linear-gradient(135deg, #00E5FF 0%, #3B82F6 100%);
  --border-color: rgba(255, 255, 255, 0.05);
  
  /* Egyéb változók */
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* EZ A BLOKK AKADÁLYOZZA MEG A MOBILOS KIZOOMOLÁST ÉS OLDALRA CSÚSZÁST */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth; /* Vajpuha görgetés */
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Finom rács háttér a tech érzésért */
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Homályos "fénygömbök" a háttérben (Modern hatás) */
.glow-bg {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px; right: -200px; z-index: -1; filter: blur(60px); border-radius: 50%;
}
.glow-bg-2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  bottom: 10%; left: -200px; z-index: -1; filter: blur(60px); border-radius: 50%;
}

/* ==========================================================================
   GOMBOK (Prémium, mágneses animációk)
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--lucid-cyan);
  color: #000000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn:hover {
  background-color: var(--cyan-dark);
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  display: inline-block;
  background: var(--accent-grad);
  color: var(--bg-dark);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px var(--accent-glow);
}
.btn-primary:hover { 
  transform: scale(1.04); 
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4), 0 0 15px rgba(0, 229, 255, 0.2); 
}
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-light);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover { 
  background: rgba(0, 229, 255, 0.05); 
  border-color: var(--lucid-cyan); 
  color: var(--lucid-cyan);
  transform: scale(1.02);
  box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.1);
}
.btn-secondary:active { transform: scale(0.98); }

/* --- A PORTFÓLIÓ GOMB JAVÍTÁSA --- */
.btn-outline {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover { 
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--lucid-cyan); 
  color: var(--lucid-cyan); 
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.15);
}
.btn-outline:active { transform: translateY(0); }

/* --- NAVIGÁCIÓ (Alap és Lebegő "Pill") --- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.floating-header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo {
  font-size: 1.5rem; font-weight: 800; color: var(--text-light); text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--lucid-cyan); }

.nav-links { display: flex; gap: 35px; align-items: center; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover { color: var(--text-light); }

.nav-btn { background: var(--text-light); color: var(--bg-dark) !important; padding: 10px 24px; border-radius: 50px; font-weight: 700 !important; transition: 0.3s; }
.nav-btn:hover { background: var(--lucid-cyan); transform: scale(1.05); }

.menu-toggle, .mobile-menu-btn { display: none; color: var(--text-light); font-size: 1.5rem; cursor: pointer; background: none; border: none; }

/* ==========================================================================
   HERO SZEKCIÓ (Modern, Osztott, 3D Hatású Prémium)
   ========================================================================== */
.hero {
  padding: 200px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden; /* Ne lógjon ki semmilyen effekt */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* --- BAL OLDAL: SZÖVEG ÉS GOMBOK --- */
.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.premium-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 12px;
  background: rgba(0, 229, 255, 0.05); 
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 8px 20px; 
  border-radius: 50px; 
  font-size: 0.9rem; 
  font-weight: 600;
  margin-bottom: 30px; 
  color: var(--lucid-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--lucid-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
  animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem); 
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.text-gradient {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc { 
  font-size: 1.25rem; 
  color: #CBD5E1; 
  max-width: 600px; 
  margin-bottom: 45px; 
  font-weight: 400; 
  line-height: 1.7;
}

.hero-actions { 
  display: flex; 
  gap: 20px; 
  align-items: center; 
  margin-bottom: 50px;
}


/* --- JOBB OLDAL: 3D ÜVEGHATÁSÚ MOCKUP --- */
.hero-visual-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  /* KOPÓ FIX: BRUTÁLIS GLOW A HÁTTÉRBEN */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
              0 0 80px rgba(0, 229, 255, 0.15), 
              inset 0 0 20px rgba(0, 229, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.glass-mockup:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.mockup-header {
  background: rgba(15, 23, 42, 0.8);
  padding: 15px 20px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background-color: #FF5F56; }
.dot.yellow { background-color: #FFBD2E; }
.dot.green { background-color: #27C93F; }

.mockup-body { padding: 40px 30px; }

/* Drótváz animált vonalak */
.mockup-line {
  height: 20px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); margin-bottom: 15px;
  position: relative; overflow: hidden;
}
.mockup-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
}
.mockup-line.title { width: 60%; height: 30px; margin-bottom: 30px; background: rgba(0, 229, 255, 0.1); }
.mockup-line.paragraph { width: 100%; }
.mockup-line.short { width: 80%; margin-bottom: 40px; }

.mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.mockup-card { 
  padding: 15px; height: 120px; border-radius: 15px; 
  background: rgba(255, 255, 255, 0.03); border: 1px dashed rgba(255,255,255,0.05); 
}

/* Lebegő Extra Kártya JAVÍTVA ÉS VÉDVE A SZÉTCSÚSZÁSTÓL */
.floating-stats-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 20px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.15);
  transform: translateZ(50px); 
  animation: float-card 4s ease-in-out infinite;
  white-space: nowrap; /* Ez akadályozza meg a szétcsúszást! */
  z-index: 10;
}
.icon-wrapper i { 
  font-size: 2.2rem; color: var(--lucid-cyan); background: rgba(0, 229, 255, 0.1);
  padding: 15px; border-radius: 12px;
}
.stats-text { display: flex; flex-direction: column; align-items: flex-start; }
.floating-stats-card h4 { font-size: 1.8rem; margin: 0; color: var(--text-light); line-height: 1; font-weight: 800; }
.floating-stats-card span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

@keyframes float-card {
  0%, 100% { transform: translateY(0) translateZ(50px); }
  50% { transform: translateY(-15px) translateZ(50px); }
}
@keyframes shine {
  100% { left: 200%; }
}

/* --- BENTO-GRID (BŐVÍTETT 5 KÁRTYÁS RENDSZER) --- */
.section-padding { padding: 120px 0; }
.section-header { margin-bottom: 60px; max-width: 600px; }
.section-header h2 { font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.bento-grid-detailed {
  display: grid;
  gap: 24px;
}

@media (min-width: 992px) {
  .bento-grid-detailed {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-grid-detailed .featured {
    grid-column: span 2; 
  }
}

/* ==========================================================================
   BENTO KÁRTYA ANIMÁCIÓ (Neon Glow effekt)
   ========================================================================== */
.bento-card {
  background: rgba(255, 255, 255, 0.02); 
  border: 1px solid var(--border-color);
  border-radius: 30px; 
  padding: 40px; 
  position: relative; 
  overflow: hidden; 
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex; 
  flex-direction: column;
}
.bento-card:hover { 
  border-color: rgba(0, 229, 255, 0.5); 
  transform: translateY(-6px); 
  background: rgba(0, 229, 255, 0.02); 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.1);
}
.bento-card::before { 
  content: ''; position: absolute; top: 0; left: 40px; width: 60px; height: 3px; 
  background: var(--accent-grad); border-radius: 0 0 5px 5px;
  transition: width 0.4s ease; 
}
.bento-card:hover::before { width: 100px; }

.card-icon { 
  width: 60px; height: 60px; background: rgba(0, 229, 255, 0.1); border-radius: 16px; 
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; 
  color: var(--accent); margin-bottom: 25px; transition: all 0.4s ease;
}
.bento-card:hover .card-icon {
  background: var(--lucid-cyan); color: var(--bg-dark); transform: scale(1.1) rotate(-5deg); 
}
.bento-card h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 700; }
.bento-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; flex-grow: 1; }

/* --- FOLYAMAT LÉPÉSEK (VÍZSZINTES) --- */
.process-container { display: flex; gap: 30px; position: relative; }
.process-container::before { content: ''; position: absolute; top: 40px; left: 50px; right: 50px; height: 1px; background: var(--border-color); z-index: 0; }
.step-box { flex: 1; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color); border-radius: 30px; padding: 40px; position: relative; z-index: 1; }
.step-number { width: 80px; height: 80px; background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: var(--lucid-cyan); margin-bottom: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.step-box h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* --- CTA BOX (Modern Főoldali CTA) --- */
.cta-box {
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent), rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color); border-radius: 40px; padding: 80px 40px; text-align: center; margin-bottom: 80px;
}
.cta-box h2 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.cta-box p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

/* --- LÁBLÉC (FOOTER) --- */
footer { border-top: 1px solid var(--border-color); padding: 60px 0 30px; background-color: #0b1120; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin-top: 15px; max-width: 300px; }
.footer-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; color: var(--text-light); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--lucid-cyan); }
.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-light); text-decoration: none; transition: 0.3s; }
.social-icons a:hover { background: var(--lucid-cyan); color: var(--bg-dark); border-color: var(--lucid-cyan); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 30px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.9rem; }


/* ==========================================================================
   ALOLDALAK STÍLUSAI (ÁRAK, PORTFÓLIÓ, KAPCSOLAT) - EREDETI MEGTARTVA
   ========================================================================== */

/* ÁRAK ÉS CSOMAGOK SZEKCIÓ */
.pricing-header { text-align: center; padding: 160px 20px 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto 80px; }
.pricing-card { background: var(--bg-card); border-radius: var(--radius); padding: 40px 30px; border: 1px solid var(--border-color); transition: var(--transition); display: flex; flex-direction: column; position: relative; }
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(0, 229, 255, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

.pricing-card.popular { border-color: var(--lucid-cyan); background: linear-gradient(180deg, rgba(30, 41, 59, 1) 0%, rgba(15, 23, 42, 1) 100%); transform: scale(1.05); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--lucid-cyan); color: #000; padding: 6px 18px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.pricing-title { font-size: 1.5rem; margin-bottom: 10px; font-weight: 800; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--lucid-cyan); margin-bottom: 20px; }
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 0.95rem; }
.pricing-features i { color: var(--lucid-cyan); margin-top: 4px; }

/* REFERENCIÁK ÉS PORTFÓLIÓ SZEKCIÓ */
.portfolio-header { padding: 160px 20px 60px; text-align: center; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }
.portfolio-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); display: flex; flex-direction: column; }
.portfolio-card:hover { transform: translateY(-10px); border-color: rgba(0, 229, 255, 0.5); box-shadow: 0 20px 40px rgba(0, 229, 255, 0.15); }

.portfolio-img-placeholder { width: 100%; height: 240px; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255, 255, 255, 0.1); border-bottom: 1px solid var(--border-color); }
.portfolio-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.portfolio-category { color: var(--lucid-cyan); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.portfolio-title { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-light); }
.portfolio-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; flex-grow: 1; }

/* KAPCSOLAT SZEKCIÓ ÉS ŰRLAP */
.contact-header { padding: 160px 20px 60px; text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 80px; padding: 0 20px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }

.contact-info-card { background: var(--bg-card); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border-color); }
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-info-card p { color: var(--text-muted); margin-bottom: 40px; font-size: 0.95rem; line-height: 1.6; }
.contact-detail { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; font-size: 1.05rem; }
.contact-detail i { color: var(--lucid-cyan); font-size: 1.4rem; width: 30px; text-align: center; }

.contact-form-card { background: var(--bg-card); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border-color); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-size: 0.9rem; color: var(--text-light); font-weight: 600; }
.form-control { width: 100%; padding: 16px 20px; background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; color: var(--text-light); font-size: 1rem; transition: var(--transition); }
.form-control::placeholder { color: rgba(148, 163, 184, 0.5); }
.form-control:focus { outline: none; border-color: var(--lucid-cyan); background: rgba(0, 229, 255, 0.02); box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* CSOMAG VÁLASZTÓ KÁRTYÁK */
.package-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.package-option { position: relative; }
.package-option input { display: none; }
.package-card { display: block; padding: 15px; background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; cursor: pointer; transition: var(--transition); text-align: center; }
.package-card strong { display: block; color: var(--text-light); font-size: 1rem; margin-bottom: 4px; }
.package-card span { color: var(--text-muted); font-size: 0.85rem; }
.package-option input:checked + .package-card { background: rgba(0, 229, 255, 0.05); border-color: var(--lucid-cyan); box-shadow: 0 10px 20px rgba(0, 229, 255, 0.1); transform: translateY(-2px); }
.package-option input:checked + .package-card strong { color: var(--lucid-cyan); }
.package-card:hover { border-color: rgba(255, 255, 255, 0.2); }


/* ==========================================================================
   MOBIL ÉS RESZPONSZÍV BEÁLLÍTÁSOK (A KOPÓ ALAPOSSÁGÁVAL + Z-INDEX FIX)
   ========================================================================== */
@media (max-width: 992px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 80px 0; }

  .floating-header { width: 95%; padding: 15px 20px; border-radius: 20px; top: 15px; }
  .menu-toggle, .mobile-menu-btn { display: block; }
  
  .nav-links {
    position: fixed; top: 80px; left: -100%;
    width: 100%; height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    padding-top: 40px;
    transition: 0.4s ease;
    z-index: 999; /* <-- KOPÓ KUTYA FIX #2: Mindent letakar! */
  }
  .nav-links.active { left: 0; }
  
  /* Hero Szekció - Mobilon egymás alatt, középre zárva */
  .hero { 
    padding: 160px 0 80px; 
    min-height: auto; 
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-text-side {
    align-items: center; /* Mobilon középre húzzuk a bal oldalt is */
    text-align: center;
  }
  .hero-title { 
    font-size: 2.8rem; 
    margin-bottom: 20px; 
  }
  .hero-desc { 
    font-size: 1.1rem; 
    padding: 0 10px;
  }
  .hero-actions { 
    flex-direction: column; 
    width: 100%;
    gap: 15px;
  }
  .btn-primary, .btn-secondary, .btn-outline { 
    width: 100%; 
    text-align: center;
    padding: 16px 30px;
  }
  .trust-indicator {
    flex-direction: column;
    padding: 20px;
    border-radius: 15px;
  }
  .avatars img { margin-left: -15px; }
  
  /* Mobilon a makett ne lógjon ki */
  .glass-mockup { transform: none; max-width: 90%; margin: 0 auto; }
  .glass-mockup:hover { transform: none; }
  .floating-stats-card { 
    left: 50%; transform: translateX(-50%); bottom: -20px; 
    width: 85%; justify-content: center; 
  }
  
  .bento-grid-detailed { display: flex; flex-direction: column; gap: 20px; }
  .bento-card { padding: 30px 20px; }
  .bento-card.featured { grid-column: auto; }
  .bento-card h3 { font-size: 1.3rem; }

  /* Értékek / Statisztika szekció mobilon */
  .section-padding div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
  
  .process-container { flex-direction: column; gap: 20px; }
  .process-container::before { display: none; }
  .step-box { padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .step-number { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 20px; }
  
  .cta-box { padding: 60px 25px; border-radius: 20px; }
  .cta-box h2 { font-size: 2.2rem; }
  .cta-box p { font-size: 1rem; }
  
  .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 40px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .social-icons { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }

  .portfolio-grid { grid-template-columns: 1fr !important; padding: 0; }
  .portfolio-header h1 { font-size: 2.5rem; }
  .portfolio-card { max-width: 100%; }
}

@media (max-width: 600px) { 
  .package-selector { grid-template-columns: 1fr; } 
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .premium-badge { font-size: 0.75rem; }
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .floating-stats-card { min-width: 95%; padding: 15px; }
  .floating-stats-card h4 { font-size: 1.4rem; }
}

/* ==========================================================================
   JAVASCRIPT ANIMÁCIÓK (SCROLL REVEAL)
   ========================================================================== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform; 
}

.revealed {
  opacity: 1;
  transform: translateY(0); 
}