:root {
  --bg: #0b0d12;
  --bg-soft: #11141b;
  --bg-card: rgba(255, 255, 255, 0.06);
  --text: #f5f7fb;
  --muted: #b8c0d4;
  --accent: #ff5a5f;
  --accent-2: #ff757a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 95, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 117, 122, 0.10), transparent 24%),
    linear-gradient(180deg, #121620 0%, #0e111a 40%, #050608 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px; mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  z-index: -1;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.03em; }
p, li, a, span { font-family: 'Inter', sans-serif; }
img { max-width: 100%; display: block; }

.container { width: min(1100px, 92%); margin: 0 auto; }

body, .site-header, h1, h2, h3, p, li, span, a, .info-strip {
  transition: background-color 0.5s ease, background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.why-box *, .situation-box *, .why-us-card *, .faq-item *, .package-card *, .visual-card *, .audit-box *, .portfolio-card * {
  transition: color 0.5s ease;
}

/* ===== VISSZA A TETEJÉRE GOMB ===== */
#back-to-top {
  position: fixed !important;
  bottom: 40px !important;
  right: 40px !important;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 90, 95, 0.4) !important;
  z-index: 9999 !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

#back-to-top.show-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 90, 95, 0.6) !important;
}

/* Görgetési Sáv */
.scroll-progress { 
  position: fixed; 
  top: 0; 
  left: 0; 
  height: 4px; 
  background: var(--accent);
  width: 0%; 
  z-index: 9998; 
  transition: width 0.1s ease-out;
}

/* Header és Menük */
.site-header {
  background: rgba(10, 12, 18, 0.85); backdrop-filter: blur(18px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo-wrap a { text-decoration: none; }
.logo { height: 48px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25)); }
.logo-desktop { display: block; }
.logo-mobile { display: none; }

.menu { display: flex; gap: 24px; align-items: center; margin: 0; padding: 0; }
.menu a { text-decoration: none; color: rgba(255,255,255,0.88); font-weight: 600; position: relative; }
.menu a:hover { color: #fff; }
.menu a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 0.25s ease; }
.menu a:hover::after { width: 100%; }

/* Header Gombok és Nyelvválasztó */
.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-selector {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0 10px;
  height: 44px;
  border-radius: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}
.lang-selector:hover { background: rgba(255, 255, 255, 0.2); }

.theme-toggle { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.theme-toggle:hover { background: rgba(255, 255, 255, 0.2); }

.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Gombok */
.btn {
  display: inline-block; text-decoration: none; padding: 14px 22px; border-radius: 999px;
  font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }

.btn-primary { 
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); 
  color: white; 
  box-shadow: 0 14px 30px rgba(255, 90, 95, 0.28); 
}
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-full { width: 100%; display: block; }

.btn-glow { animation: btnGlow 3s infinite; }
@keyframes btnGlow {
  0% { box-shadow: 0 0 0px rgba(255, 90, 95, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 90, 95, 0.7); }
  100% { box-shadow: 0 0 0px rgba(255, 90, 95, 0.4); }
}

/* Általános Szekciók */
.hero { padding: 80px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; margin: 0 0 18px; color: #fff; }
.hero-subtitle { font-size: 1.25rem; line-height: 1.4; margin-bottom: 30px; color: var(--muted); max-width: 500px; }

.hero-visual { position: relative; min-height: 560px; }
.hero-image { width: 100%; height: 560px; object-fit: cover; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); animation: heroFloat 7s infinite ease-in-out; }
/* ===== 3D ESZKÖZ (MOCKUP) STÍLUSÚ LEBEGŐ KÉPEK ===== */
.floating-card {
  position: absolute;
  width: 170px; /* Picit nagyobbra vesszük, hogy a vastag keret mellett is mutasson a kép */
  background: #161616; /* Vastag, sötét keret (eszköz kávája) */
  border-radius: 20px; /* Külső tok kerekítése */
  padding: 10px; /* A keret vastagsága */
  /* 3D hatású perem és mély árnyék a térbeliségért */
  box-shadow: 
    inset 1px 1px 2px rgba(255, 255, 255, 0.15),
    inset -1px -1px 3px rgba(0, 0, 0, 0.8),
    0 25px 50px rgba(0, 0, 0, 0.8);
  border: none;
  backdrop-filter: none; /* Üveghatás kikapcsolása, ide tömör szín kell */
  
  /* Dőlésszög beállítása egyedi változóval */
  --tilt: 0deg; 
  transform: rotate(var(--tilt));
  animation: floatTilted 6s infinite ease-in-out;
  z-index: 2;
}

.floating-card img {
  border-radius: 10px; /* A belső "képernyő" kerekítése */
  width: 100%;
  display: block;
}

/* Kártyák elhelyezése és egyedi 3D dőlésszögei */
.card-top { 
  top: 10px; 
  left: -20px; 
  --tilt: -5deg; /* Enyhén balra dől */
  z-index: 3; 
}
.card-middle { 
  top: 230px; 
  left: -40px; 
  animation-delay: 2s; 
  --tilt: 4deg; /* Enyhén jobbra dől */
  z-index: 4; /* Ez van legfelül */
}
.card-bottom { 
  top: 330px; 
  right: -30px; 
  animation-delay: 4s; 
  --tilt: -3deg; 
  z-index: 3; 
}

/* Új animáció, ami lebegés közben is megtartja a dőlésszöget */
@keyframes floatTilted {
  0% { transform: translate(0, 0) rotate(var(--tilt)); }
  50% { transform: translate(6px, -12px) rotate(var(--tilt)); }
  100% { transform: translate(0, 0) rotate(var(--tilt)); }
}
.info-strip { background: linear-gradient(90deg, rgba(255, 90, 95, 0.16), rgba(255, 117, 122, 0.14)); padding: 20px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px); }
.info-strip p { font-size: 1.1rem; line-height: 1.5; margin: 0; }
.info-strip strong { color: #fff; }

.packages, .situations-section, .why-us-section, .faq-section, .audit-section, .visual-section, .portfolio-section { padding: 80px 0; }
.situations-section, .audit-section { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); }

h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 18px; color: #fff; }
h2::after { content: ""; display: block; width: 84px; height: 4px; margin: 16px auto 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.section-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.section-heading p { margin: 16px 0 0; color: var(--muted); font-size: 1.1rem; }

/* Közös Kártya Stílusok */
.situation-box, .why-us-card, .faq-item, .package-card, .visual-card, .portfolio-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10); box-shadow: var(--shadow); backdrop-filter: blur(12px);
  color: var(--text); border-radius: 22px; padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.situation-box:hover, .why-us-card:hover, .visual-card:hover, .portfolio-card:hover {
  transform: translateY(-8px); border-color: rgba(255, 117, 122, 0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.38); background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
}
.situation-box h3, .why-us-card h3, .visual-card h3 { margin: 0 0 10px; font-size: 1.25rem; color: #fff; }
.situation-box p, .why-us-card p, .visual-card p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Ikonok */
.visual-icon, .why-us-icon { background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 12px 28px rgba(255, 90, 95, 0.28); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0; width: 56px; height: 56px; flex: 0 0 56px; border-radius: 16px; font-size: 1.2rem; }
.card-header-flex { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.card-header-flex h3 { margin: 0; }

/* Referencia */
.portfolio-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.portfolio-img-placeholder { height: 200px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.9rem; font-style: italic; border-bottom: 1px solid rgba(255,255,255,0.1); }
.portfolio-content { padding: 24px; }
.portfolio-content h3 { margin: 0 0 10px; font-size: 1.25rem; color: #fff; }
.portfolio-content p { margin: 0; color: var(--muted); line-height: 1.6; }
/* Referencia képek és videók (Fix 4:3 arány, teljes tartalom megjelenítése) */
.portfolio-card a {
  display: block;
  width: 100%;
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain; /* Garantálja, hogy a kép/videó teljes egésze látszik, nincs levágás */
  background-color: var(--bg-soft); /* Sötét háttérkitöltés, ha minimális pixel eltérés lenne a 4:3-tól */
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Kártya alapbeállítás megtartása az egyenlő magasságért */
.portfolio-card { 
  padding: 0; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
}

.portfolio-content { 
  padding: 24px; 
  flex-grow: 1; 
}
/* Asztali Gridek */
.situations-grid, .why-us-grid, .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.visual-grid, .package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }

/* ====== CSOMAGOK DIZÁJN ====== */
.package-card { text-decoration: none; position: relative; display: flex; flex-direction: column; padding: 40px 30px; }
.package-card h3 { font-size: 2.2rem; font-weight: 800; margin-top: 0; color: #fff; }
.package-card h3 span { font-weight: 600; display: block; font-size: 1.1rem; color: var(--accent); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }
.package-lead { min-height: 48px; color: var(--muted); margin-bottom: 25px;}
.package-card ul { padding-left: 0; line-height: 1.8; color: var(--text); flex-grow: 1; margin: 0 0 25px 0; list-style: none; }
.package-card li { margin-bottom: 10px; }
.package-card li::before { content: "✓"; color: var(--accent); margin-right: 10px; font-weight: bold; }

/* Árazás */
.price-wrap { margin-top: auto; margin-bottom: 20px; }
.market-price { font-size: 0.95rem; color: var(--muted); margin-bottom: 4px; }
.market-price s { color: var(--accent); font-weight: 700; margin-left: 6px; }
.price { font-weight: 800; font-size: 1.5rem; color: #fff; margin: 0; }

.package-card.popular {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 90, 95, 0.12), rgba(255, 255, 255, 0.03));
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 25px 60px rgba(255, 90, 95, 0.2);
}
.popular-badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white;
  padding: 8px 24px; border-radius: 30px; font-weight: 800; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(255, 90, 95, 0.4);
}

/* FAQ */
.faq-accordion { max-width: 800px; margin: 40px auto 0; display: grid; gap: 16px; }
.faq-item { border-radius: 22px; overflow: hidden; padding: 0; }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px; font-size: 1.15rem; font-weight: 700; color: #fff; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: #ff8a65; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary ~ * { animation: faqSlideDown 0.4s ease-out forwards; }
.faq-answer { padding: 0 24px 24px; }
.faq-answer p { margin: 0; color: var(--muted); line-height: 1.7; }
@keyframes faqSlideDown {
  0% { opacity: 0; max-height: 0; padding-bottom: 0; transform: translateY(-10px); }
  100% { opacity: 1; max-height: 500px; padding-bottom: 24px; transform: translateY(0); }
}

/* Kapcsolat / Audit */
.styled-audit { padding: 50px 40px; background: radial-gradient(circle at 90% 10%, rgba(255, 90, 95, 0.25), transparent 40%), linear-gradient(135deg, #111827, #1f2937 60%, #0f1117); border: 1px solid rgba(255, 90, 95, 0.3); border-radius: 28px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: center; }
.audit-text h2 { text-align: left; background: linear-gradient(90deg, #ffffff, #ffd6d8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.audit-text p { text-align: left; color: rgba(255, 255, 255, 0.95); font-size: 1.1rem; }
.audit-list { list-style: none; padding: 0; margin: 0 0 24px; }
.audit-list li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; margin-bottom: 12px; color: #fff;}
.audit-list i { color: #ff5a5f; }
.audit-action { text-align: left; }

/* LÁBLÉC (FOOTER) */
.site-footer { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 30px 0; background: rgba(10, 12, 18, 0.4); backdrop-filter: blur(10px); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copyright { color: var(--muted); font-size: 0.95rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
.footer-links a:hover { color: #fff; }

/* UI Elemek mobil alapállapot */
.mobile-menu, .menu-overlay { display: none; }

/* Animációk */
@keyframes floatSlow { 0% { transform: translate(0, 0); } 50% { transform: translate(6px, -12px); } 100% { transform: translate(0, 0); } }
@keyframes heroFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* ===== VILÁGOS TÉMA (CSAK ASZTALON - 961px felett!) ===== */
@media (min-width: 961px) {
  body.light-theme { --bg: #f8fafc; --bg-soft: #ffffff; --text: #0f172a; --muted: #475569; background: #f8fafc; }
  body.light-theme h1, body.light-theme h2, body.light-theme h3, body.light-theme .menu a, body.light-theme .faq-item summary { color: #0f172a; }
  body.light-theme .site-header { background: rgba(255, 255, 255, 0.85); border-color: #e2e8f0; }
  body.light-theme .theme-toggle { background: #f1f5f9; color: #0f172a; border-color: #cbd5e1; }
  body.light-theme .lang-selector { background: #f1f5f9; color: #0f172a; border-color: #cbd5e1; }
  body.light-theme .situation-box, body.light-theme .why-us-card, body.light-theme .faq-item, body.light-theme .package-card, body.light-theme .visual-card, body.light-theme .portfolio-card { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); color: #0f172a; }
  body.light-theme .package-card.popular { background: linear-gradient(180deg, rgba(255, 90, 95, 0.05), #ffffff); border-color: var(--accent); }
  body.light-theme .situation-box p, body.light-theme .visual-card p, body.light-theme .why-us-card p, body.light-theme .portfolio-content p, body.light-theme .faq-answer p, body.light-theme .hero-subtitle { color: #475569; }
  body.light-theme .portfolio-img-placeholder { background: #f1f5f9; border-color: #e2e8f0; }
  body.light-theme .info-strip { background: #fff1f2; border-color: #ffe4e6; }
  body.light-theme .info-strip p, body.light-theme .audit-list li { color: #0f172a; }
  body.light-theme .styled-audit { background: #ffffff; }
  body.light-theme .audit-text h2 { -webkit-text-fill-color: initial; color: #0f172a; }
  body.light-theme .audit-text p { color: #475569; }
  body.light-theme .price { color: #0f172a; }
  body.light-theme .site-footer { background: #f8fafc; border-top-color: #e2e8f0; }
  body.light-theme .footer-links a:hover { color: var(--accent); }
}
/* ===== KAPCSOLAT ŰRLAP ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.form-group input, .form-group textarea {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-checkbox input {
  margin-top: 4px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

/* Világos téma támogatása az űrlaphoz */
body.light-theme .contact-form {
  background: rgba(255, 255, 255, 0.5);
  border-color: #e2e8f0;
}
body.light-theme .form-group label {
  color: #0f172a;
}
body.light-theme .form-group input, body.light-theme .form-group textarea {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}
body.light-theme .form-group input:focus, body.light-theme .form-group textarea:focus {
  background: #ffffff;
  border-color: var(--accent);
}

/* ===== MOBIL NÉZET ===== */

@media (max-width: 960px) {
  #back-to-top {
    bottom: 90px !important;
    right: 20px !important;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .styled-audit { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .audit-text h2, .audit-text p, .audit-action { text-align: center; }
  .audit-list { display: flex; flex-direction: column; align-items: center; }
  
  .nav { padding: 12px 0; position: relative; min-height: 60px; }
  .logo-wrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  
  .header-actions { position: static; }
  .theme-toggle { display: none !important; } 
  .lang-selector { position: absolute; left: 0; top: 50%; transform: translateY(-50%); margin: 0; }
  .menu-toggle { display: block; position: absolute; right: 0; top: 50%; transform: translateY(-50%); margin: 0; }
  
  .logo-desktop { display: none; }
  .logo-mobile { display: block; height: 40px; }
  .menu, .desktop-btn { display: none !important; }
  
  .package-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; }
  .package-card.popular { transform: scale(1); border-width: 2px; }
  
  .mobile-menu {
    display: flex; flex-direction: column; position: fixed; top: 0; left: 0;
    transform: translateX(-100%); width: 75%; max-width: 300px; height: 100vh;
    background: rgba(10, 12, 18, 0.98); z-index: 2000; transition: transform 0.3s ease; padding-top: 80px;
  }
  .mobile-menu.active { transform: translateX(0); }
  .mobile-menu a { display: block; padding: 16px 24px; font-weight: 600; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .mobile-cta-btn { margin: 20px 16px; border-radius: 99px; text-align: center;}
  
  .menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; }
  .menu-overlay.active { display: block; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  
  .hero-visual { min-height: 250px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 20px;}
  .hero-image { display: none; }
  .floating-card { position: static; animation: none; width: 150px; }
  .card-top, .card-middle, .card-bottom { top: auto; left: auto; right: auto; }

  h2 { font-size: 1.6rem; }
  .packages, .situations-section, .why-us-section, .faq-section, .audit-section, .visual-section, .portfolio-section { padding: 50px 0; }

/* Vízszintes görgetés */
  .situations-grid, .visual-grid, .why-us-grid, .portfolio-grid, .scroll-snap-grid {
    display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; scroll-snap-type: x mandatory;
    gap: 16px; padding-bottom: 20px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    
    /* EZZEL JAVÍTJUK A FÜGGŐLEGES LÖTYÖGÉST: */
    overflow-y: hidden !important; 
    touch-action: pan-x pan-y;
  }  
  /* Szöveg balra igazítása mobilon és kártyaméret */
  .situation-box, .visual-card, .why-us-card, .portfolio-card {
    flex: 0 0 85% !important; scroll-snap-align: center; margin-top: 0;
    text-align: left !important; /* Garantált balra igazítás mobilon */
  }

  .faq-accordion { gap: 12px; }
  .faq-item summary { font-size: 1.05rem; padding: 16px; }
  .faq-answer { padding: 0 16px 16px; font-size: 0.95rem; }
  
  .footer-content { flex-direction: column-reverse; text-align: center; }
  .footer-links { gap: 16px; margin-bottom: 10px; }
}
/* Bemutatkozó szekció formázása */
.about-text h2 { text-align: left; }
.about-text h2::after { margin: 16px 0 0 0; }

body.light-theme .signature-img {
  filter: invert(0) opacity(0.7) !important;
}

@media (max-width: 768px) {
  .about-text h2 { text-align: center; }
  .about-text h2::after { margin: 16px auto 0; }
  .about-layout { gap: 30px !important; }
}
/* ===== ALÁÍRÁS ===== */
.my-signature {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem; /* Szép nagy, látványos méret */
  color: var(--accent); /* A te márkád pirosas színe, de lehet simán #fff is */
  transform: rotate(-5deg); /* Egy picit megdöntjük a valósághű hatásért */
  display: inline-block;
  opacity: 0.9;
  letter-spacing: 2px;
  margin-top: 10px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

body.light-theme .my-signature {
  color: #0f172a; /* Világos módban sötétszürke tintával jelenik meg */
  text-shadow: none;
}
.social-proof {
  position: fixed;
  bottom: 100px; /* A sticky CTA felett legyen mobilon */
  left: 20px;
  background: rgba(11, 13, 18, 0.95);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  max-width: 300px;
}

.social-proof.active {
  transform: translateX(0);
}

.sp-icon {
  color: var(--accent);
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.sp-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.sp-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 5px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
  .social-proof {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 85px; /* Közvetlenül a sticky gomb felett */
  }
}
/* ===== STAGGER (LÉPCSŐZETES) ANIMÁCIÓ ===== */
/* Első elem azonnal jön */
.situations-grid > :nth-child(1), .visual-grid > :nth-child(1), .portfolio-grid > :nth-child(1), .package-grid > :nth-child(1), .why-us-grid > :nth-child(1) {
  transition-delay: 0s;
}
/* Második elem picit vár */
.situations-grid > :nth-child(2), .visual-grid > :nth-child(2), .portfolio-grid > :nth-child(2), .package-grid > :nth-child(2), .why-us-grid > :nth-child(2) {
  transition-delay: 0.15s;
}
/* Harmadik elem még többet vár */
.situations-grid > :nth-child(3), .visual-grid > :nth-child(3), .portfolio-grid > :nth-child(3), .package-grid > :nth-child(3), .why-us-grid > :nth-child(3) {
  transition-delay: 0.3s;
}
/* Negyedik, ötödik, hatodik (az Alap csomag felsorolásánál) */
.situations-grid > :nth-child(4) { transition-delay: 0.45s; }
.situations-grid > :nth-child(5) { transition-delay: 0.6s; }
.situations-grid > :nth-child(6) { transition-delay: 0.75s; }

/* Mobilon (ahol vízszintesen görgetős) kikapcsoljuk a késleltetést, hogy ne legyen zavaró a suhintásnál */
@media (max-width: 768px) {
  .situations-grid > *, .visual-grid > *, .portfolio-grid > *, .package-grid > *, .why-us-grid > * {
    transition-delay: 0s !important;
  }
}
/* ===== ŰRLAP RÁCS (Kétoszlopos elrendezés asztalin) ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Mobilon (600px alatt) maradjon egymás alatt, hogy olvasható legyen */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== VILÁGOS MÓD FIX: FEKETE SZÖVEGEK ===== */
@media (min-width: 961px) {
  /* 1. Az "Info-strip" szövege és a vastag betűs része fekete legyen */
  body.light-theme .info-strip p,
  body.light-theme .info-strip strong {
    color: #000000 !important;
  }

  /* 2. A "Megnézzük, nálad mi hiányzik?" címsor és az alatta lévő szöveg fekete legyen */
  body.light-theme h3[data-hu="Megnézzük, nálad mi hiányzik?"],
  body.light-theme p[data-hu="Ingyen, kötelezettség nélkül átnézzük a jelenlegi felületeidet."] {
    color: #000000 !important;
  }
}
/* ===== 3D GLASSMORPHISM (IOS) VIZUÁLIS ELRENDEZÉS (KÉP ALAPJÁN) ===== */
.hero-visual.layout-3d {
  position: relative;
  min-height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Áttetsző Glassmorphism keret alapstílus */
.floating-3d-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05); /* Áttetsző, finom fehér/szürkés háttér */
  backdrop-filter: blur(24px);           /* Mossa el a hátteret */
  -webkit-backdrop-filter: blur(24px);   /* Safari támogatás */
  
  padding: 12px;                         /* Vastag keret/káva */
  border-radius: 28px;                   /* Kerekített tok */
  
  /* Üveg szélek és 3D árnyék */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.5), 
    inset 0 4px 18px rgba(255, 255, 255, 0.08);
    
  /* Dőlésszög beállítása változóval (ha nincs, 0deg) */
  --tilt: 0deg; 
  transform: rotate(var(--tilt));
  
  /* Lebegő animáció, ami figyelembe veszi a dőlést */
  animation: floatTilted 6s infinite ease-in-out;
}

/* A dobozon belüli kép stílusa */
.floating-3d-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; 
  border: 1px solid rgba(255,255,255,0.1); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Lebegő animáció ami megtartja a statikus dőlésszöget */
@keyframes floatTilted {
  0% { transform: translate(0, 0) rotate(var(--tilt)); }
  50% { transform: translate(6px, -12px) rotate(var(--tilt)); }
  100% { transform: translate(0, 0) rotate(var(--tilt)); }
}

/* --- POZÍCIÓK, MÉRETEK ÉS DŐLÉSSZÖGEK (A kép alapján) --- */

/* 1. Portré (Jobbra, leghátul, keskenyebb) */
.card-portrait {
  width: 140px;
  top: 10%;
  right: 2%;
  z-index: 1;
  --tilt: 4deg;
  animation-delay: 1.5s;
}

/* 2. Weboldal (Felül, balra, nagy) */
.card-web {
  width: 310px;
  top: 5%;
  left: -2%;
  z-index: 2;
  --tilt: -2deg;
  animation-delay: 0s;
}

/* 3. Facebook/Social (Alul, balra) */
.card-social {
  width: 230px;
  bottom: 10%;
  left: -5%;
  z-index: 3;
  --tilt: -5deg;
  animation-delay: 0.8s;
}

/* 4. Google (Alul, jobbra, legelöl) */
.card-google {
  width: 270px;
  bottom: 0%;
  right: 5%;
  z-index: 4;
  --tilt: 3deg;
  animation-delay: 2.2s;
}

/* --- VILÁGOS MÓD (Light theme) ÜVEGHATÁS --- */
body.light-theme .floating-3d-card {
  background: rgba(255, 255, 255, 0.4); 
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1), 
    inset 0 4px 18px rgba(255, 255, 255, 0.6);
}

/* --- MOBIL NÉZET IGAZÍTÁSOK --- */
@media (max-width: 768px) {
  .hero-visual.layout-3d {
    min-height: 350px;
    margin-top: 20px;
  }
  
  .card-portrait { width: 110px; top: 5%; right: 0%; }
  .card-web { width: 230px; top: 0%; left: 0%; }
  .card-social { width: 170px; bottom: 15%; left: -2%; }
  .card-google { width: 210px; bottom: 0%; right: 2%; }
}
/* ===== VILÁGOS MÓD KÖTELEZŐVÉ TÉTELE MOBILON (960px alatt) ===== */
@media (max-width: 960px) {
  /* Alapvető változók felülírása világosra */
  :root {
    --bg: #f8fafc;
    --bg-soft: #ffffff;
    --text: #0f172a;
    --muted: #475569;
  }

  /* 1. Test és háttér (Világos alap) */
  body {
    background: #f8fafc !important;
    color: var(--text) !important;
  }

  /* 2. Szövegek sötétítése a kontraszt miatt */
  h1, h2, h3, p, span, li, .menu a, .faq-item summary { 
    color: #0f172a !important; 
  }
  
  .situation-box p, .visual-card p, .why-us-card p, .portfolio-content p, .faq-answer p, .hero-subtitle { 
    color: #475569 !important; 
  }

  /* 3. Header és navigáció (Mobil menü) */
  .site-header { background: rgba(255, 255, 255, 0.95) !important; border-color: #e2e8f0 !important; }
  .lang-selector, .menu-toggle { color: #0f172a !important; border-color: #cbd5e1 !important; }
  .mobile-menu { background: #f8fafc !important; }
  .mobile-menu a { color: #0f172a !important; border-bottom: 1px solid #e2e8f0 !important; }
  
  /* 4. Kártyák, dobozok és infósávok */
  .situation-box, .why-us-card, .faq-item, .package-card, .visual-card, .portfolio-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  }
  
  .package-card.popular {
    background: linear-gradient(180deg, rgba(255, 90, 95, 0.05), #ffffff) !important;
    border-color: var(--accent) !important;
  }
  
  .info-strip { background: #fff1f2 !important; border-color: #ffe4e6 !important; }
  .info-strip p, .info-strip strong, .audit-list li { color: #0f172a !important; }
  
  .styled-audit { background: #ffffff !important; }
  .audit-text h2 { -webkit-text-fill-color: initial !important; color: #0f172a !important; }
  .price { color: #0f172a !important; }
  .portfolio-img-placeholder { background: #f1f5f9 !important; border-color: #e2e8f0 !important; }

  /* 5. Űrlap és Footer */
  .contact-form { background: rgba(255, 255, 255, 0.5) !important; border-color: #e2e8f0 !important; }
  .form-group label { color: #0f172a !important; }
  .form-group input, .form-group textarea { 
    background: #f8fafc !important; 
    border: 1px solid #cbd5e1 !important; 
    color: #0f172a !important; 
  }
  
  .site-footer { background: #f8fafc !important; border-top-color: #e2e8f0 !important; }
  .footer-links a:hover { color: var(--accent) !important; }

  /* 6. Vizuális elemek, 3D kártyák és Aláírás */
  .floating-3d-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
  }
  .my-signature { color: #0f172a !important; text-shadow: none !important; }
  
  /* Biztosíték: a téma váltó gomb elrejtése mobilon */
  .theme-toggle { display: none !important; }
}
/* 7. Social Proof doboz világosítása */
  .social-proof {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid var(--accent) !important; /* Maradhat a pirosas keret, vagy cseréld #cbd5e1-re */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }
  
  .social-proof .sp-text {
    color: #0f172a !important; /* Sötét szöveg */
  }
  
  .social-proof .sp-close {
    color: #475569 !important; /* Sötétszürke bezáró gomb */
  }