:root {
  --purple: #380b96;
  --purple-dark: #250878;
  --purple-light: #4e18c0;
  --gold: #ffde5f;
  --gold-dark: #e8c330;
  --white: #f8f5ff;
  --off-white: #ede9f8;
  --dark: #0a0514;
  --dark2: #130a28;
  --text-muted: #a090c8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  opacity: 0;
  animation: fade-in 0.5s ease-out forwards;
}

/* ── SKIP LINK (akadálymentesítés) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* Fókusz stílus – billentyűzettel navigálók számára */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background 0.4s, backdrop-filter 0.4s, top 0.3s;
}
nav.scrolled {
  background: rgba(10, 5, 20, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,222,95,0.08);
}

.nav-logo {
  height: 48px;
  width: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-placeholder {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Archivo Black', serif;
  font-size: 1.05rem;
  color: var(--white);
  
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: 0;
    border: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(56,11,150,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(78,24,192,0.35) 0%, transparent 60%),
    linear-gradient(160deg, #0a0514 0%, #1a0840 50%, #0a0514 100%);
}
.hero-gradient2 {
  position: absolute;
  inset: 0;
  background: var(--purple);
  opacity: 0.12;
}

/* Cinematic grain */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-anim 0.4s steps(1) infinite;
}
@keyframes grain-anim {
  0%  { transform: translate(0,0) }
  10% { transform: translate(-3%,-4%) }
  20% { transform: translate(-6%, 2%) }
  30% { transform: translate(4%, -1%) }
  40% { transform: translate(-2%, 6%) }
  50% { transform: translate(-5%, 0%) }
  60% { transform: translate(3%, 4%) }
  70% { transform: translate(0%, -5%) }
  80% { transform: translate(-3%, 2%) }
  90% { transform: translate(4%, 3%) }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,20,0.2) 0%, rgba(10,5,20,0) 40%, rgba(10,5,20,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fade-up 0.9s 0.3s forwards;
}

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(248,245,255,0.6);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fade-up 0.9s 0.55s forwards;
}
.film-highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.9rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-in 1s 1.5s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ── VISION ── */
#vizió {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.vision-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.vision-left h2 span { color: var(--gold); font-style: italic; }
.vision-left p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(248,245,255,0.65);
  margin-bottom: 1.2rem;
}

.vision-right { padding-top: 1rem; }
.vision-block {
  border-left: 2px solid rgba(255,222,95,0.25);
  padding: 1.5rem 0 1.5rem 2rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.vision-block:hover { border-color: var(--gold); }
.vision-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.vision-block p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(248,245,255,0.55);
}

/* ── PORTFOLIO ── */
#portfolio {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}
.portfolio-header {
  padding: 0 4rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.portfolio-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.portfolio-header h2 em { color: var(--gold); font-style: italic; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
  display: block;
  text-decoration: none;
}
.portfolio-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,20,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.portfolio-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Play icon overlay */
.portfolio-item::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border: 2px solid rgba(255,222,95,0.5);
  border-radius: 50%;
  z-index: 2;
  transition: border-color 0.3s, background 0.3s;
  pointer-events: none;
}
.portfolio-item::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent rgba(255,222,95,0.7);
  z-index: 3;
  transition: border-color 0.3s;
  pointer-events: none;
}
.portfolio-item:hover::before {
  border-color: var(--gold);
  background: rgba(255,222,95,0.1);
}
.portfolio-item:hover::after {
  border-color: transparent transparent transparent var(--gold);
}

/* ── ABOUT ── */
#rolunk {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* ── MIÉRT MINKET ── */
#miert-mi {
  padding: 8rem 4rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-image-block { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  background: var(--purple);
  opacity: 0.2;
  z-index: -1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(248,245,255,0.6);
  margin-bottom: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: linear-gradient(135deg, rgba(56,11,150,0.12) 0%, rgba(19,10,40,0.6) 100%);
  border: 1px solid rgba(255,222,95,0.08);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover { border-color: rgba(255,222,95,0.2); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.why-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(248,245,255,0.5);
}

/* ── SERVICES ── */
#szolgaltatasok {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(56,11,150,0.06) 50%, var(--dark) 100%);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 5rem; }
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}
.services-header h2 em { color: var(--gold); font-style: italic; }
.services-header p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(248,245,255,0.5);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.package {
  background: rgba(19,10,40,0.7);
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.package.featured {
  background: linear-gradient(160deg, rgba(56,11,150,0.35) 0%, rgba(78,24,192,0.15) 100%);
  border: 1px solid rgba(255,222,95,0.3);
}
.package:hover { border-color: rgba(255,222,95,0.15); }
.package.featured:hover { border-color: rgba(255,222,95,0.5); }

.package-badge {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.package h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.package-tagline {
  font-size: 0.85rem;
  color: rgba(248,245,255,0.45);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.package-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.package-features li {
  font-size: 0.88rem;
  color: rgba(248,245,255,0.65);
  padding: 0.6rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.package-features li::before {
  content: none;
}

.package-cta {
  display: block;
  margin-top: auto;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255,222,95,0.35);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.package-cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.package.featured .package-cta {
  background: rgba(255,222,95,0.08);
}

.discount-cta {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  background: var(--dark);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(10,5,20,0.3);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.discount-cta:hover {
  background: rgba(10,5,20,0.8);
  color: var(--white);
}

.extra-options {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(56,11,150,0.08);
  border: 1px solid rgba(255,222,95,0.08);
}
.extra-options h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  /* margin-bottom: 1.5rem; */
  color: var(--gold);
}
#extra-cim {
  margin-bottom: 1rem;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.extra-item { display: flex; gap: 1rem; align-items: flex-start; }
.extra-icon {
  width: 36px; height: 36px;
  background: rgba(255,222,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.extra-item h5 { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.25rem; }
.extra-item p { font-size: 0.78rem; color: rgba(248,245,255,0.45); line-height: 1.6; }

/* ── CONTACT ── */
#kapcsolat {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-left h2 em { color: var(--gold); font-style: italic; }

.contact-left address {
  font-style: normal;
}
.contact-left p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(248,245,255,0.55);
  margin-bottom: 2.5rem;
}

.contact-left nav {   
  position: static;
  padding: 0;
}

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,222,95,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-item a,
.contact-info-item p { color: var(--white); text-decoration: none; font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--gold); }

/* ── DISCOUNT BANNER ── */
.discount-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 1.2rem 2rem;
  margin-bottom: 2.5rem;
}
.discount-pct {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.discount-banner > div {
  flex: 1;
}
.discount-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.discount-banner span {
  font-size: 0.82rem;
  opacity: 0.75;
}

/* ── AKCIÓ SZALAG (felül, sticky) ── */
.sticky-badge {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Outfit', sans-serif;
}
.sticky-badge:hover { opacity: 0.92; }
.sticky-badge-pct {
  font-size: 1.3rem;
  line-height: 1;
}
.sticky-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sticky-badge-detail {
  font-size: 0.78rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}

/* ── CHECKBOX ── */
.form-checkbox { flex-direction: row !important; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(248,245,255,0.6);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  margin-top: 0.1rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0;
}
.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}
.checkbox-label a:hover { color: var(--gold-dark); }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-link:hover { border-color: var(--gold); color: var(--dark); background: var(--gold); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 5px; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.form-group select option { background: var(--dark2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,222,95,0.5);
  background: rgba(56,11,150,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
  margin-top: 10px;
}
.form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }

.form-message {
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-radius: 2px;
}
.form-message.success {
  background: rgba(56,11,150,0.2);
  border: 1px solid rgba(255,222,95,0.3);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
}
.form-message.error {
  background: rgba(150, 11, 11, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff9090;
}

/* ── DIVIDER ── */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,222,95,0.15), transparent);
}

/* ── FILMES TITOK ── */
#filmes-titok {
  padding: 8rem 4rem;
}
.film-secret-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.film-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 1rem;
}

.film-pillar {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(56,11,150,0.08) 0%, rgba(19,10,40,0.5) 100%);
  border: 1px solid rgba(255,222,95,0.06);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.film-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,222,95,0.15), transparent);
}
.film-pillar:hover {
  border-color: rgba(255,222,95,0.18);
  background: linear-gradient(135deg, rgba(56,11,150,0.14) 0%, rgba(19,10,40,0.65) 100%);
}

/* Utolsó elem teljes szélességű */
.film-pillar:last-child {
  grid-column: span 2;
}

.film-pillar-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 4rem;
  user-select: none;
}

.film-pillar-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.film-pillar-sub {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.film-pillar-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(248,245,255,0.55);
}

/* ── TESTIMONIALS ── */
#velemenyek {
  padding: 8rem 4rem;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(56,11,150,0.12) 0%, rgba(19,10,40,0.7) 100%);
  border: 1px solid rgba(255,222,95,0.1);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,222,95,0.08);
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(255,222,95,0.25);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(248,245,255,0.75);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--purple);
  border: 1px solid rgba(255,222,95,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(56,11,150,0.3) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { font-size: 1rem; color: rgba(248,245,255,0.55); margin-bottom: 2.5rem; }

/* ── FOOTER ── */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer nav {
  position: static;
  padding: 0;
}

footer p { font-size: 0.8rem; color: rgba(248,245,255,0.3); }
footer a { color: rgba(248,245,255,0.3); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
footer a:hover { color: var(--gold); }
 
/* ── SCROLL TO TOP ── */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  width: 48px;
  height: 48px;
  background: rgba(19, 10, 40, 0.85);
  border: 1px solid rgba(255,222,95,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
 

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; gap: 1rem; }
  .extra-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; top: 30px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .sticky-badge { padding: 0.4rem 1rem; gap: 0.5rem; }
  .sticky-badge-detail { display: none; }

  #vizió { padding: 5rem 2rem; }
  .vision-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  #rolunk { padding: 5rem 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  #miert-mi { padding: 5rem 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  #filmes-titok { padding: 5rem 2rem; }
  .film-pillars { grid-template-columns: 1fr; }
  .film-pillar:last-child { grid-column: span 1; }
  #velemenyek { padding: 5rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  
  #kapcsolat { padding: 5rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-header { padding: 0 2rem; }
  .cta-banner { padding: 5rem 2rem; }
  footer { padding: 2rem; }
  .section-divider { padding: 0 2rem; }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .about-image-block { height: 440px; overflow: hidden; }
  #szolgaltatasok { padding: 0;}
}


/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(10,5,20,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }

/* A belső nav elem NE örökölje a globális nav stílusokat */
.mobile-nav nav {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  width: auto;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}
