/* --- 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; }

/* --- ELMOSÓDOTT HÁTTÉRFOTÓS PORTFÓLIÓ (GOLYÓÁLLÓ VERZIÓ) --- */
.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;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
}

.portfolio-img-placeholder .blur-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.4) saturate(1.2);
  transform: scale(1.1);
  transition: transform 0.5s ease;
  z-index: 1;
}

.portfolio-card:hover .portfolio-img-placeholder .blur-bg {
  transform: scale(1.2) rotate(1deg);
  filter: blur(5px) brightness(0.5);
}

.portfolio-img-placeholder i, 
.portfolio-img-placeholder img.card-logo {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  text-shadow: 0 10px 20px rgba(0,0,0,0.8);
  opacity: 0.9;
}

.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; }

 /* --- GOLYÓÁLLÓ MOBIL MENÜ (LEGÖRDÜLŐ VERZIÓ) --- */
  .floating-header { 
    width: 95%; padding: 15px 20px; border-radius: 20px; top: 15px; 
    display: flex !important; justify-content: space-between !important; align-items: center !important;
  }
  
  .mobile-menu-btn { 
    display: block !important; 
    z-index: 1001; 
    padding: 5px 10px;
  }
  
  /* A lebegő menü, ami a fejlécből nyílik le - PRÉMIUM DIZÁJN */
  .nav-links {
    position: absolute; 
    top: calc(100% + 15px); /* Picit lejjebb indul a fejléc alól, elegánsabb */
    left: 0;
    width: 100%; 
    height: auto;
    background: rgba(15, 23, 42, 0.98); /* Mélyebb, letisztultabb háttér */
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 229, 255, 0.15); /* Finom cián keret */
    border-radius: 24px;
    flex-direction: column;
    padding: 15px 20px 25px 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 229, 255, 0.05); /* Brutál 3D árnyék */
    
    /* Elrejtés profi, animálható módon (pattanós effekt) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
    transform: translateY(-20px) scale(0.98); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  /* Amikor aktív, lágyan beúszik és megnő */
  .nav-links.active { 
    opacity: 1; 
    visibility: visible; 
    pointer-events: auto;
    transform: translateY(0) scale(1); 
  }
  
  .nav-links li {
    margin: 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Finom elválasztó vonalak */
  }

  .nav-links li:last-child {
    border-bottom: none; /* Az utolsó után nem kell vonal */
    margin-top: 20px; /* A főgomb kap egy kis extra teret */
  }
  
  .nav-links a {
    font-size: 1.25rem !important; 
    font-weight: 600;
    display: block; /* Teljes szélességű az érintési terület! */
    padding: 18px 10px;
    transition: all 0.3s ease;
    color: var(--text-light);
  }

  /* Érintés effekt mobilon */
  .nav-links a:active {
    background: rgba(0, 229, 255, 0.05);
    color: var(--lucid-cyan);
  }

  /* --- A "KEZDJÜK EL" GOMB KIEMELÉSE MOBILON --- */
  .nav-links a.nav-btn {
    background: var(--accent-grad) !important;
    color: var(--bg-dark) !important;
    border-radius: 16px;
    padding: 16px !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.25);
    border: none;
  }
  
  /* 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); 
}
/* ==========================================================================
   JOGI OLDALAK STÍLUSA (ÁSZF, ADATVÉDELEM)
   ========================================================================== */
.legal-header {
  padding: 160px 20px 60px;
  text-align: center;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.legal-card {
  background: var(--bg-card);
  padding: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-card h2 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-card ul {
  color: var(--text-muted);
  margin-left: 25px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-card li {
  margin-bottom: 10px;
}

.legal-card strong {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 30px 20px;
  }
  .legal-card h2 {
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   RÓLUNK (ABOUT) OLDAL SPECIFIKUS STÍLUSOK
   ========================================================================== */
.about-hero {
  padding: 180px 0 100px;
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.vision-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition);
}

.vision-card:hover {
  border-color: var(--lucid-cyan);
  transform: translateY(-10px);
  background: rgba(0, 229, 255, 0.03);
}

.vision-card i {
  font-size: 2.5rem;
  color: var(--lucid-cyan);
  margin-bottom: 20px;
  display: block;
}

.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}

.founder-img-wrapper {
  position: relative;
}

.founder-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--lucid-cyan);
  border-radius: 30px;
  z-index: 1;
}

.founder-img {
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  filter: contrast(1.1);
}

.founder-tag {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--bg-card);
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.methodology-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 60px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .founder-section { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .founder-img-wrapper { max-width: 400px; margin: 0 auto; }
  .founder-tag { right: 50%; transform: translateX(50%); bottom: -30px; white-space: nowrap; }
}

/* ==========================================================================
   RÓLUNK (ABOUT) OLDAL SPECIFIKUS STÍLUSOK (TELJESEN TISZTA CSS)
   ========================================================================== */

/* Általános Segédosztályok (Utility) */
.text-center { text-align: center; }
.pt-20 { padding-top: 20px; }
.relative-z { position: relative; z-index: 1; }
.text-light { color: var(--text-light) !important; }
.active-nav { color: var(--lucid-cyan) !important; }

/* Hero Szekció */
.about-hero-spacing { padding-top: 180px; padding-bottom: 40px; }
.about-main-title { margin-top: 15px; font-size: 4rem; line-height: 1.1; }

/* Bento Grid Rendszer */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  grid-auto-rows: minmax(200px, auto);
}

.bento-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.bento-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.05);
}

.bento-card.span-2 { grid-column: span 2; }

/* Bento Kártyák belső elemei */
.bento-icon { font-size: 2rem; margin-bottom: 20px; }
.icon-cyan { color: var(--lucid-cyan); }
.icon-yellow { color: #FACC15; }
.icon-green { color: #27C93F; }

.bento-title { font-size: 1.5rem; margin-bottom: 15px; }
.bento-title.large-title { font-size: 1.8rem; }
.bento-subtitle { font-size: 1.1rem !important; line-height: 1.7 !important; }

.highlight-card {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(30, 41, 59, 0.4) 100%);
  border-color: rgba(0, 229, 255, 0.15);
}

.dark-gradient-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

/* Alapító Szekció */
.founder-wrapper {
  border-top: 1px solid var(--border-color); 
  border-bottom: 1px solid var(--border-color); 
  position: relative; 
  overflow: hidden;
}

.founder-bg-effect {
  position: absolute; 
  top: -50%; 
  left: -10%; 
  width: 50%; 
  height: 200%; 
  background: radial-gradient(circle, rgba(0,229,255,0.03) 0%, transparent 70%); 
  z-index: 0;
}

.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.founder-img-wrapper { position: relative; }
.founder-img-wrapper::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 100%; height: 100%; border: 2px solid var(--lucid-cyan);
  border-radius: 30px; z-index: 1;
}

.founder-img {
  width: 100%; border-radius: 30px; position: relative;
  z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.5); filter: contrast(1.1);
}

.founder-tag {
  position: absolute; bottom: 20px; right: -20px;
  background: var(--bg-card); padding: 15px 25px;
  border-radius: 12px; border: 1px solid var(--border-color);
  z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.founder-name { color: var(--lucid-cyan); font-weight: 800; font-size: 1.1rem; }
.founder-role { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.founder-title { font-size: 2.5rem; margin-bottom: 25px; }
.founder-quote {
  font-size: 1.2rem; color: var(--text-light); font-style: italic;
  border-left: 3px solid var(--lucid-cyan); padding-left: 20px;
  margin-bottom: 25px; line-height: 1.6;
}
.founder-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 30px; }

.founder-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-box .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--text-light); margin-bottom: 5px; }
.stat-box .stat-label { color: var(--lucid-cyan); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* Prémium CTA Szekció */
.premium-cta-box {
  padding: 80px 40px; 
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%); 
  border-radius: 30px; 
  border: 1px solid var(--border-color); 
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.premium-cta-title { font-size: 3rem; margin-bottom: 20px; color: var(--text-light); }
.premium-cta-desc { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }
.cta-large-btn { font-size: 1.2rem; padding: 18px 45px; }

/* Tisztázott Footer Segédosztályok */
.footer-icon { margin-right: 8px; color: var(--lucid-cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }

/* Reszponzivitás (Mobil és Tablet) */
@media (max-width: 992px) {
  .about-main-title { font-size: 2.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  
  .founder-section { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .founder-quote { border-left: none; padding-left: 0; font-size: 1.1rem; }
  .founder-stats { justify-content: center; }
  .founder-img-wrapper { max-width: 400px; margin: 0 auto; }
  .founder-tag { right: 50%; transform: translateX(50%); bottom: -30px; white-space: nowrap; }
  
  .premium-cta-box { padding: 40px 20px; }
  .premium-cta-title { font-size: 2rem; }
}

/* ==========================================================================
   REFERENCIÁK (ESETTANULMÁNYOK) - ASZTALI NÉZET
   ========================================================================== */
.case-study-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.case-card {
  display: flex;
  background: rgba(15, 23, 42, 0.6); /* Üveghatású sötétkék háttér */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  border-color: var(--lucid-cyan);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
  transform: translateY(-5px);
}

.case-visual {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.case-info {
  padding: 40px;
  flex: 1;
}

.case-title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--text-light);
  font-weight: 800;
}

.detail-item {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.detail-item i {
  font-size: 1.5rem;
  margin-top: 3px;
  color: var(--lucid-cyan);
}

.detail-item strong {
  display: block;
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.detail-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--lucid-cyan);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

/* ==========================================================================
   GLOBÁLIS MOBIL OPTIMALIZÁLÁS (SMARTPHONE FIXEK)
   Ez a blokk felülírja a nagy asztali méreteket telefonon.
   ========================================================================== */
@media (max-width: 768px) {
  
  /* 1. ÁLTALÁNOS TÉRKÖZÖK (Ne legyen túl nagy üres tér mobilon) */
  .section-padding { padding: 40px 15px !important; }
  .about-hero-spacing, .portfolio-header { padding-top: 120px !important; padding-bottom: 20px !important; }
  .container { padding: 0 15px; }

  /* 2. TIPOGRÁFIA (Ne lógjanak ki a nagy címsorok a képernyőről) */
  .hero-title, .about-main-title { font-size: 2.2rem !important; line-height: 1.2 !important; }
  .section-title, .premium-cta-title, .founder-title { font-size: 1.8rem !important; line-height: 1.3 !important; }
  h2 { font-size: 1.6rem !important; }
  p { font-size: 0.95rem !important; line-height: 1.6 !important; }

  /* 3. BENTO BOX & RÓLUNK OLDAL FIXEK */
  .bento-card { padding: 25px !important; border-radius: 16px !important; }
  .bento-title.large-title { font-size: 1.5rem !important; }
  .bento-icon { font-size: 1.5rem !important; margin-bottom: 15px !important; }
  
  .founder-section { gap: 30px !important; }
  .founder-stats { flex-direction: column; gap: 15px !important; align-items: center; }
  .stat-box .stat-number { font-size: 1.8rem !important; }
  .premium-cta-box { padding: 40px 20px !important; border-radius: 16px !important; }

  /* 4. ESETTANULMÁNYOK (Referenciák oldal) MOBIL FIX */
  .case-study-grid { 
    gap: 30px !important; 
    padding: 10px 0 !important; 
  }
  
  .case-card { 
    flex-direction: column !important; /* <-- EZ A KULCS: Egymás alá dobja a képet és a szöveget! */
    border-radius: 20px !important; 
  }
  
  .case-visual { 
    flex: none !important; /* Kikapcsoljuk a bivalyerős asztali rögzítést */
    width: 100% !important; 
    height: 220px !important; /* Legyen szép nagy a háttérkép mobilon is */
    font-size: 3.5rem !important; 
    border-right: none !important; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; 
  }
  
  .case-info { 
    padding: 30px 20px !important; 
  }
  
  .case-title { 
    font-size: 1.6rem !important; 
    margin-bottom: 20px !important; 
  }
  
  /* Megakadályozzuk, hogy a kis ikonok (felkiáltójel, villanykörte) laposra nyomódjanak */
  .detail-item {
    gap: 12px !important;
  }
  .detail-item i { 
    flex-shrink: 0 !important; 
    font-size: 1.3rem !important; 
  }
  
  .impact-badge { 
    font-size: 0.9rem !important; 
    padding: 12px 15px !important; 
    width: 100%; 
    justify-content: center; 
    text-align: center;
    flex-wrap: wrap; /* Ha hosszú a szöveg, törjön át új sorba */
  }
  
  .client-quote { 
    font-size: 0.9rem !important; 
    padding: 15px !important; 
    margin-top: 20px !important; 
    line-height: 1.6 !important;
  }

  /* 5. KAPCSOLAT ŰRLAP ÉS KÁRTYÁK */
  .contact-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .contact-info-card, .contact-form-card { padding: 25px 15px !important; }
  .package-selector { display: flex; flex-direction: column; gap: 10px; } 

  /* 6. GYIK / FAQ (Főoldal) */
  .faq-question { padding: 15px 20px !important; font-size: 1rem !important; }
  .faq-answer { padding: 0 20px !important; }
  .faq-item.active .faq-answer { padding-bottom: 15px !important; }

  /* 7. LÁBLÉC (FOOTER) KÖZÉPRE IGAZÍTÁSA */
  .footer-grid { grid-template-columns: 1fr !important; gap: 30px !important; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column !important; text-align: center; gap: 15px !important; }
  .footer-legal-links { justify-content: center !important; }
}