/* ============================================================
   XPLORE ADVENTURE – stíluslap
   Színek a logóból: lime #A9D42C · fekete #0E0E0E · fehér
   ============================================================ */

:root {
  --lime: #A9D42C;
  --lime-dark: #8AB214;
  --lime-ink: #5F7A0E;          /* sötét lime szövegre, világos háttéren */
  --black: #0E0E0E;
  --black-2: #151515;
  --black-3: #1C1C1C;
  --white: #FFFFFF;
  --gray: #C9C9C9;
  --gray-dark: #55584D;
  --light: #F6F7F2;
  --light-2: #EDEFE5;
  --line-light: #E3E6D8;
  --line-dark: rgba(255, 255, 255, 0.09);

  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(14, 14, 14, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 14, 14, 0.12);
  --shadow-lime: 0 8px 28px rgba(169, 212, 44, 0.35);

  --header-h: 76px;
}

/* ---------- Alapok ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--black);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- Tipográfia ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-stretch: 115%;
  font-weight: 850;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: 0.02em; }

h2 em, h1 em {
  font-style: italic;
  color: var(--lime);
  -webkit-text-stroke: 0;
}

.section-light h2 em,
.section-light-alt h2 em { color: var(--lime-ink); }

p { margin: 0 0 1em; }

.kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 750;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--lime);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transform: skewX(-20deg);
}

.section-light .kicker,
.section-light-alt .kicker { color: var(--lime-ink); }
.section-light .kicker::before,
.section-light-alt .kicker::before { background: var(--lime-dark); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

.section-lead { color: var(--gray-dark); font-size: 1.1rem; }
.section-dark .section-lead { color: var(--gray); }

/* ---------- Szekció-hátterek ---------- */

.section-light { background: var(--light); color: var(--black); }
.section-light-alt { background: var(--white); color: var(--black); }
.section-dark { background: var(--black-2); color: var(--white); }

.section-light, .section-light-alt, .section-dark {
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: clip;
}

/* ---------- Gombok ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.8em 1.6em;
  cursor: pointer;
  transform: skewX(-6deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn > span { display: inline-block; transform: skewX(6deg); }

.btn-primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: var(--shadow-lime);
}

.btn-primary:hover {
  background: #BCE93A;
  transform: skewX(-6deg) translateY(-2px);
  box-shadow: 0 12px 34px rgba(169, 212, 44, 0.5);
}

.btn-primary:active { transform: skewX(-6deg) translateY(1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: skewX(-6deg) translateY(-2px);
}

.btn-lg { font-size: 1.05rem; padding: 0.9em 1.9em; }
.btn-block { width: 100%; }

/* ---------- Fejléc ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line-dark);
  background: rgba(14, 14, 14, 0.94);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link { flex-shrink: 0; }

.logo-img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  mix-blend-mode: screen; /* a logó fekete háttere beleolvad a fejlécbe */
  transform: scale(1.2); /* levágja a PNG üres széleit */
  transform-origin: center;
}

.logo-link {
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li { display: flex; align-items: center; }

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  position: relative;
  padding-block: 6px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  background: var(--lime);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.nav-mobile-extra { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* Nyelvválasztó */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.lang-switch a {
  color: var(--gray);
  text-decoration: none;
  padding: 0.32rem 0.55rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover { color: var(--white); }

.lang-switch a.lang-active {
  background: var(--lime);
  color: var(--black);
}

.lang-switch .lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

/* Hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--black-3);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 9vw, 7rem);
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 12% -5%, rgba(169, 212, 44, 0.14), transparent 65%),
    radial-gradient(ellipse 700px 500px at 95% 100%, rgba(169, 212, 44, 0.07), transparent 60%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.splat {
  position: absolute;
  fill: var(--lime);
}

.splat-hero {
  width: clamp(180px, 22vw, 320px);
  top: -60px;
  right: -40px;
  opacity: 0.16;
  transform: rotate(15deg);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--lime);
  margin-bottom: 1.2rem;
  animation: rise 0.7s ease both;
}

.hero h1 {
  margin-bottom: 0.5em;
  animation: rise 0.7s ease 0.1s both;
}

.highlight {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  padding: 0.02em 0.18em;
  transform: skewX(-8deg);
  border-radius: 0.12em;
  box-shadow: 0.12em 0.14em 0 rgba(169, 212, 44, 0.25);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gray);
  max-width: 34em;
  margin-bottom: 2rem;
  animation: rise 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
  animation: rise 0.7s ease 0.3s both;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  animation: rise 0.7s ease 0.4s both;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray);
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Hero fotókollázs */

.hero-visual {
  position: relative;
  height: clamp(340px, 42vw, 520px);
  animation: rise 0.9s ease 0.35s both;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-1 {
  width: 62%;
  aspect-ratio: 1;
  top: 4%;
  left: 0;
  transform: rotate(-5deg);
  z-index: 2;
}

.hero-card-2 {
  width: 52%;
  aspect-ratio: 1;
  top: 32%;
  right: 0;
  transform: rotate(4deg);
  z-index: 3;
}

.hero-card-3 {
  width: 50%;
  aspect-ratio: 1;
  bottom: 3%;
  left: 6%;
  transform: rotate(2deg);
  z-index: 2;
  opacity: 1;
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.04);
  border-color: var(--lime);
  z-index: 5;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Bemutatkozás ---------- */

.intro-inner {
  max-width: 780px;
  text-align: center;
}

.intro-inner .kicker { justify-content: center; }

.intro-text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--gray-dark);
  margin: 0;
}

.intro-text strong { color: var(--black); }

/* ---------- Szolgáltatások ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 4px;
  background: var(--lime);
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--lime);
  transform: rotate(-6deg) scale(1.06);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg { stroke: var(--black); }

.service-card h3 { margin-bottom: 0.5rem; overflow-wrap: break-word; hyphens: auto; }

/* A "Kinek szervezünk?" kártyák hosszabb címei (pl. ÖNKORMÁNYZATOKNAK) ne lógjanak ki.
   Három oszlopnál a cím igazodik a szűkebb kártyához is. */
.services-grid .service-card h3 { font-size: clamp(1.02rem, 1.7vw, 1.2rem); font-stretch: 100%; letter-spacing: 0.005em; }

.service-card p {
  color: var(--gray-dark);
  font-size: 0.97rem;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.service-link {
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
}

.service-link span { transition: transform 0.25s ease; color: var(--lime-ink); }
.service-link:hover span { transform: translateX(5px); }
.service-link:hover { color: var(--lime-ink); }

/* A "Kinek szervezünk?" kártyák "Részletek" gombja a kitöltött .btn-primary .btn-sm,
   így egységes és figyelemfelkeltő; a gomb a kártya aljára, balra igazodik. */
.services-grid .service-card .btn { margin-top: 1.1rem; }

/* ---------- Alkalmak ---------- */

.occasions { background: var(--black); }

.occasions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 85% 10%, rgba(169, 212, 44, 0.08), transparent 60%);
  pointer-events: none;
}

.occasion-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.occasion-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--black-2);
  border: 1.5px solid rgba(169, 212, 44, 0.25);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.occasion-chip:hover {
  border-color: var(--lime);
  background: var(--black-3);
  transform: translateY(-3px);
}

.occasion-chip svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Galéria ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: rgba(14, 14, 14, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Miért minket ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}

.why-item {
  background: var(--black-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.1rem;
  align-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-item:hover {
  border-color: rgba(169, 212, 44, 0.5);
  transform: translateY(-4px);
}

.why-icon {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(169, 212, 44, 0.12);
  display: grid;
  place-items: center;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 { margin: 0 0 0.2rem; font-size: 1.05rem; align-self: end; }

.why-item p {
  margin: 0;
  color: var(--gray);
  font-size: 0.94rem;
  align-self: start;
}

/* ---------- Vélemények ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.6rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.6;
  color: var(--lime);
  margin-bottom: 0.6rem;
}

.testimonial-card blockquote {
  margin: 0 0 1.1rem;
  font-style: italic;
  color: var(--gray-dark);
}

.testimonial-card figcaption {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--black);
}

/* ---------- Kapcsolat ---------- */

.contact { background: var(--black); }

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 450px at 8% 15%, rgba(169, 212, 44, 0.1), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 90%, rgba(169, 212, 44, 0.06), transparent 60%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(169, 212, 44, 0.12);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a, .contact-static {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-list a:hover { color: var(--lime); }

.contact-social { margin-top: 2.4rem; }

.contact-social p {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.social-row { display: flex; gap: 0.8rem; }

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line-dark);
  background: var(--black-2);
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gray);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}

.social-btn:hover {
  border-color: var(--lime);
  background: var(--black-3);
  transform: translateY(-3px);
}

.social-btn:hover svg { stroke: var(--lime); }

/* Űrlap */

.contact-form {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  scroll-margin-top: calc(var(--header-h) + 20px);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.contact-form h3 { margin-bottom: 1.3rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1rem; }

.form-field label {
  display: block;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: var(--light);
  border: 1.5px solid var(--line-light);
  border-radius: 11px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3.5px rgba(169, 212, 44, 0.3);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aa08a; }

/* iOS Safari: a dátummező ne lógjon ki a keretből, és balra igazítva
   mutassa az értéket / az "éééé.hh.nn" helykitöltőt. Csak iOS-en fut. */
@supports (-webkit-touch-callout: none) {
  .form-field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    min-width: 0;
    min-height: 2.7rem;
  }
  .form-field input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
    margin: 0;
  }
}

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: var(--gray-dark);
  text-align: center;
}

.form-note.success {
  color: var(--lime-ink);
  font-weight: 700;
}

/* ---------- Űrlap: validáció, státusz, spam-csapda ---------- */

/* Honeypot: emberek nem látják, botok viszont kitöltik -> a szerver eldobja */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: #d64545;
  background: #fdf3f3;
}

.form-field.invalid input:focus,
.form-field.invalid select:focus,
.form-field.invalid textarea:focus {
  border-color: #d64545;
  box-shadow: 0 0 0 3.5px rgba(214, 69, 69, 0.22);
}

.field-error {
  margin-top: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #c23b3b;
}

.check-item.consent.invalid { color: #c23b3b; }
.check-item.consent.invalid input { outline: 2px solid #d64545; outline-offset: 2px; border-radius: 3px; }

/* Csoport-hibák: szolgáltatás-lista és légvár al-választó */
.check-fieldset.invalid > legend { color: #c23b3b; }
.legvar-subselect.invalid { border-left-color: #d64545; }
.group-error { margin-top: 0.55rem; }

/* Státusz visszajelzés a küldés után (siker / hiba / folyamatban) */
.form-status {
  margin: 1.1rem 0 0;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.form-status.success { background: #eef6d6; color: #3d5208; border: 1px solid #cfe38f; }
.form-status.error { background: #fdecec; color: #b23333; border: 1px solid #f3c3c3; }
.form-status.sending { background: var(--light); color: var(--gray-dark); border: 1px solid var(--line-light); }

/* Küldés alatti gomb-állapot + spinner */
.btn.is-loading,
.btn:disabled { opacity: 0.75; cursor: not-allowed; }
.btn.is-loading span { position: relative; padding-left: 26px; }
.btn.is-loading span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border: 2.5px solid rgba(14, 14, 14, 0.28);
  border-top-color: #0e0e0e;
  border-radius: 50%;
  animation: btnspin 0.7s linear infinite;
}
@keyframes btnspin { to { transform: rotate(360deg); } }

/* ---------- Lábléc ---------- */

.site-footer {
  background: #0A0A0A;
  color: var(--gray);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-logo {
  height: 84px;
  width: 84px;
  object-fit: cover;
  mix-blend-mode: screen;
  transform: scale(1.2);
  transform-origin: left center;
  margin-bottom: 0.6rem;
}

.footer-brand p { font-size: 0.95rem; max-width: 30em; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-nav ul, .footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a, .footer-contact a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover, .footer-contact a:hover { color: var(--lime); }

.footer-contact span { font-size: 0.97rem; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-bottom p { margin: 0; }

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  color: var(--gray);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--lime); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-figure {
  margin: 0;
  max-width: min(880px, 100%);
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.lightbox-figure figcaption {
  color: var(--white);
  font-weight: 700;
  margin-top: 1.1rem;
  font-size: 1rem;
}

.lightbox button {
  position: absolute;
  background: var(--black-3);
  border: 1.5px solid var(--line-dark);
  color: var(--white);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox button:hover { border-color: var(--lime); color: var(--lime); }

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 64px;
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

/* ---------- Görgetési animációk ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2), .testimonial-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3), .testimonial-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4), .why-grid .reveal:nth-child(4),
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Reszponzív ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }

  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .hero-card {
    position: static;
    width: auto;
    aspect-ratio: 1;
    transform: rotate(0);
  }

  .hero-card-3 { opacity: 1; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1120px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-dark);
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.3rem;
  }

  .main-nav ul a {
    display: block;
    padding: 0.8rem 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 10px;
  }

  .main-nav ul a:hover { background: var(--black-3); }
  .main-nav ul a::after { display: none; }

  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line-dark);
  }

  .nav-mobile-extra .btn { text-align: center; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 2.2rem); }

  .hero-visual { grid-template-columns: repeat(2, 1fr); }
  .hero-card-3 { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }

  .occasion-chip { width: 100%; justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .lightbox { padding: 1rem; }
  .lightbox-prev, .lightbox-next { display: none; }
}

/* ============================================================
   TÖBBOLDALAS KIEGÉSZÍTÉSEK
   ============================================================ */

/* ---------- Aktív menüpont ---------- */

.main-nav a[aria-current="page"] { color: var(--lime); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Futó szalagok ---------- */

.ribbon-zone {
  background: var(--light);
  padding: 2.4rem 0 2.8rem;
  overflow: clip;
}

.ribbon {
  width: 112%;
  margin-left: -6%;
  overflow: hidden;
}

.ribbon-lime {
  background: linear-gradient(90deg, #C3EC46, var(--lime) 45%, #8FBA1B);
  transform: rotate(-1.6deg);
  box-shadow: 0 16px 40px rgba(169, 212, 44, 0.35);
  position: relative;
  z-index: 2;
}

.ribbon-dark {
  background: var(--black);
  transform: rotate(1.3deg);
  margin-top: -0.5rem;
}

.ribbon-track {
  display: flex;
  width: max-content;
}

.ribbon-content {
  display: flex;
  align-items: center;
  padding-block: 0.8rem;
  animation: ribbon-left 32s linear infinite;
}

.ribbon-dark .ribbon-content { animation: ribbon-right 44s linear infinite; }

.ribbon:hover .ribbon-content { animation-play-state: paused; }

.ribbon-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: var(--black);
  padding-inline: 1.5rem;
  white-space: nowrap;
}

.ribbon-dark .ribbon-item {
  color: var(--lime);
  font-size: 0.92rem;
}

.ribbon-sep {
  color: rgba(14, 14, 14, 0.55);
  font-size: 0.72rem;
}

.ribbon-dark .ribbon-sep { color: rgba(169, 212, 44, 0.5); }

@keyframes ribbon-left {
  to { transform: translateX(-100%); }
}

@keyframes ribbon-right {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* ---------- Aloldal fejléc ---------- */

.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: calc(var(--header-h) + clamp(2.8rem, 6vw, 4.5rem)) 0 clamp(2.6rem, 5vw, 4rem);
  overflow: clip;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 420px at 10% 0%, rgba(169, 212, 44, 0.13), transparent 65%);
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero h1 {
  font-size: clamp(1.7rem, 7.5vw, 3.4rem);
  margin-bottom: 0.25em;
  overflow-wrap: break-word;
}

/* Kis kijelzőn az Archivo címet keskenyebbre húzzuk (wdth tengely),
   hogy a hosszú egyszavas címek (pl. SZOLGÁLTATÁSOK) elférjenek. */
@media (max-width: 560px) {
  .page-hero h1 { font-stretch: 80%; letter-spacing: 0; }
}

.page-hero-lead {
  color: var(--gray);
  font-size: 1.12rem;
  max-width: 42em;
  margin: 0;
}

.page-hero .splat {
  width: clamp(150px, 18vw, 240px);
  top: -50px;
  right: -40px;
  opacity: 0.14;
  transform: rotate(18deg);
}

/* ---------- CTA sáv ---------- */

.cta-strip {
  position: relative;
  background: linear-gradient(100deg, #C3EC46, var(--lime) 55%, #93BF1D);
  color: var(--black);
  padding-block: clamp(3rem, 7vw, 4.6rem);
  overflow: clip;
}

.cta-strip .splat {
  fill: rgba(14, 14, 14, 0.08);
  width: 280px;
  right: -70px;
  top: -80px;
  transform: rotate(12deg);
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.cta-copy { max-width: 620px; }
.cta-copy h2 { margin-bottom: 0.25em; }
.cta-copy p { margin: 0; font-weight: 600; font-size: 1.08rem; }

.btn-dark {
  background: var(--black);
  color: var(--lime);
  box-shadow: 0 14px 34px rgba(14, 14, 14, 0.35);
}

.btn-dark:hover {
  background: var(--black-3);
  transform: skewX(-6deg) translateY(-2px);
  box-shadow: 0 18px 40px rgba(14, 14, 14, 0.45);
}

/* ---------- Gomb csillanás ---------- */

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -85%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.5s ease;
}

.btn:hover::after { left: 130%; }

/* ---------- Lebegő festékfoltok ---------- */

.splat-float {
  position: absolute;
  fill: var(--lime);
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
}

.splat-float-1 {
  width: 90px;
  left: 4%;
  bottom: 12%;
  opacity: 0.12;
}

.splat-float-2 {
  width: 60px;
  right: 8%;
  top: 18%;
  opacity: 0.1;
  animation-delay: 2.2s;
  animation-duration: 9s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-20px) rotate(4deg); }
}

/* ---------- Szolgáltatás részletező kártyák ---------- */

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  scroll-margin-top: calc(var(--header-h) + 20px);
  position: relative;
  overflow: clip;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), transparent 70%);
}

.service-detail h2 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.service-detail p { color: var(--gray-dark); flex-grow: 1; }

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.3rem;
  list-style: none;
  padding: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gray-dark);
}

.tag svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--lime-ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tag.tag-link { padding: 0; }

.tag.tag-link a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tag.tag-link a:hover { color: var(--lime-ink); }

.tag.tag-link svg { stroke-width: 2.6; }

/* ---------- Lépések (így működik) ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.step-card {
  background: var(--black-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--black);
  background: var(--lime);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transform: skewX(-6deg);
  box-shadow: var(--shadow-lime);
}

.step-card h3 { font-size: 1.1rem; }

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Galéria csoportok ---------- */

.gallery-group { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.gallery-group:last-child { margin-bottom: 0; }

.gallery-group-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.gallery-group-head svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--lime-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.gallery-group-head h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  margin: 0;
}

.gallery-count {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  font-size: 0.8rem;
  background: var(--lime);
  color: var(--black);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  letter-spacing: 0.05em;
}

.gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.center-cta {
  text-align: center;
  margin-top: 2.4rem;
}

/* ---------- Lábléc ikonok ---------- */

.footer-nav a,
.footer-services a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav svg,
.footer-services svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-services a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.2s ease;
}

.footer-services a:hover { color: var(--lime); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact .fc-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-social-brand { margin-top: 1.1rem; }

/* ---------- Reszponzív kiegészítések ---------- */

@media (max-width: 1024px) {
  .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ribbon-item { font-size: 0.92rem; padding-inline: 1.1rem; }
  .ribbon-dark .ribbon-item { font-size: 0.82rem; }
}

/* ============================================================
   V3 KIEGÉSZÍTÉSEK (képes kártyák, GYIK, űrlap pipák, aloldalak)
   ============================================================ */

/* ---------- Szolgáltatás kártyák képpel ---------- */

.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.sp-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sp-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black-2);
}

.sp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sp-card:hover .sp-img img { transform: scale(1.06); }

.sp-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sp-body h2 {
  font-size: 1.28rem;
  margin-bottom: 0.4rem;
}

.sp-body p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.65em 1.3em;
  align-self: flex-start;
}

/* ---------- GYIK ---------- */

.faq-list {
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  font-weight: 800;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--lime-ink); }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--gray-dark);
  font-size: 0.97rem;
}

.faq-body p { margin: 0; }

/* ---------- Űrlap: pipálható szolgáltatások ---------- */

.check-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.1rem;
}

.check-fieldset legend {
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
  padding: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.9rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  padding: 0.32rem 0.35rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.check-item:hover { background: var(--light); }

.check-item input {
  accent-color: var(--lime-dark);
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}

/* Légvár al-választó: a Légvár bepipálásakor megjelenő, behúzott panel */
.legvar-subselect {
  margin-top: 0.7rem;
  padding: 0.85rem 0.9rem 0.6rem;
  border-left: 3px solid var(--lime);
  background: var(--light);
  border-radius: 0 10px 10px 0;
}

.legvar-subselect-legend {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--black);
}

/* Költségkeret: két fogantyús (dual) csúszka egy sávon */
.range-slider {
  position: relative;
  height: 28px;
  margin: 0.7rem 0 0.2rem;
}

/* A sávot a fogantyú sugarával behúzzuk, hogy a kitöltés a fogantyú
   KÖZEPÉHez igazodjon (ne lógjon túl a pöttyön a széleken). */
.range-track {
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: var(--line-light);
}

.range-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--lime-dark);
  border-radius: 999px;
}

/* A két range input egymáson: csak a fogantyúk fogják meg az egeret */
.range-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.range-slider input[type="range"]::-moz-range-track { background: transparent; border: 0; }
.range-slider input#f-keret-max { z-index: 4; }

.range-values {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

/* Nem szerkeszthető érték-mezők (csak megjelenítés) */
.range-value {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--line-light);
  border-radius: 9px;
  background: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.range-sep { color: var(--gray-dark); font-weight: 700; }

@media (max-width: 480px) {
  .range-values { gap: 0.45rem; }
  .range-value { font-size: 0.85rem; padding: 0.6rem 0.25rem; }
}

.consent {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-dark);
  line-height: 1.55;
}

.consent a {
  color: var(--lime-ink);
  font-weight: 700;
}

/* ---------- Részletoldalak ---------- */

.detail-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.detail-photo img {
  width: 100%;
  display: block;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--gray-dark);
}

.facts svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--lime-ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.facts strong { color: var(--black); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gray-dark);
  text-decoration: none;
  margin-bottom: 1.2rem;
}

.back-link:hover { color: var(--lime-ink); }

/* ---------- Jogi szövegek (adatvédelem) ---------- */

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.2rem;
}

.legal-content ul { padding-left: 1.3rem; }

.legal-content li { margin-bottom: 0.4rem; }

.legal-updated {
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-style: italic;
}

/* ---------- Legördülő menü (Megoldások) ---------- */

.has-dropdown { position: relative; }

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.65;
  cursor: pointer;
  padding: 6px 0;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .dropdown-toggle svg,
.dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown-toggle:hover { color: var(--lime); }

.dropdown-menu {
  list-style: none;
  margin: 0;
}

/* Asztali nézet: lebegő panel, ami hoverre/fókuszra nyílik.
   A rejtés kizárólag itt él, hogy mobilon ne kelljen felülírni. */
@media (min-width: 1121px) {
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 230px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 20;
  }

  .dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 16px;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  background: var(--black-3);
  color: var(--lime);
}

.dropdown-menu svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Kapcsolat: telefonszámok egymás mellett ---------- */

/* ---------- "Hamarosan" jelvény az alkártyákon ---------- */

.soon-badge {
  align-self: flex-start;
  display: inline-block;
  background: var(--black);
  color: var(--lime);
  border: 1px solid rgba(169, 212, 44, 0.4);
  border-radius: 999px;
  padding: 0.32rem 0.95rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Állomások listája (A Nagy Pénzrablás) ---------- */

.stations {
  margin: 0 0 1.5rem;
  padding-left: 1.3rem;
  columns: 2;
  column-gap: 1.8rem;
}

.stations li {
  margin-bottom: 0.45rem;
  color: var(--gray-dark);
  font-size: 0.95rem;
  break-inside: avoid;
}

@media (max-width: 560px) { .stations { columns: 1; } }

/* ---------- "A lényeg számokban" statisztika sáv ---------- */

.stat-band {
  background: var(--light-2);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.stat-band h2 em { color: var(--lime-ink); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 13px;
  background: linear-gradient(135deg, #C3EC46, var(--lime) 55%, #8FBA1B);
  display: grid;
  place-items: center;
  transform: skewX(-6deg);
  box-shadow: var(--shadow-lime);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: skewX(6deg);
}

.stat-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--lime-ink);
  margin: 0 0 0.3rem;
}

.stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 850;
  font-stretch: 110%;
  font-size: 1.35rem;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 0.3rem;
}

.stat-sub { color: var(--gray-dark); font-size: 0.9rem; margin: 0; }

@media (max-width: 860px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stat-grid { grid-template-columns: 1fr; } }

/* ---------- Részletoldali képsáv ---------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.photo-strip img:hover { transform: translateY(-4px); }

/* ---------- Nyitvatartás kártya (kapcsolat) ---------- */

.hours-card {
  background: var(--black-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.2rem;
  margin-top: 2rem;
}

.hours-card h3 {
  font-size: 1.05rem;
  color: var(--lime);
  margin-bottom: 0.9rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line-dark);
}

.hours-row:first-of-type { border-top: 0; padding-top: 0; }

.hours-row .hr-label { color: var(--gray); font-size: 0.96rem; }

.hours-row .hr-value { color: var(--white); font-weight: 700; text-align: right; }

/* Google Maps beágyazás a nyitvatartás kártya alján */
.map-embed {
  margin-top: 1.1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

/* ---------- Légvár témák a részletoldalon ---------- */
.legvar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .legvar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .legvar-grid { grid-template-columns: 1fr; } }

.legvar-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.legvar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.legvar-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light);
}

.legvar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.legvar-card:hover .legvar-card-img img { transform: scale(1.05); }

.legvar-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legvar-card-body h3 { margin: 0; }

/* A típus külön kis címkékként (pl. Akadályos / Duplacsúszda) */
.legvar-type {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.legvar-tag {
  display: inline-block;
  background: rgba(169, 212, 44, 0.16);
  color: var(--lime-ink);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  padding: 4px 11px;
  border-radius: 999px;
}

.legvar-facts {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legvar-facts li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.legvar-facts li strong { color: var(--black); font-weight: 700; }

.legvar-facts svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--lime-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* "Ajánlatot kérek" gomb a kártya alján – a szöveghez igazodó szélesség */
.legvar-cta {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.legvar-card-body .legvar-facts { margin-bottom: 0.5rem; }

/* ---------- Célközönség oldalak ---------- */

.audience-lead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

.audience-point {
  background: var(--black-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}

.audience-point .why-icon { margin-bottom: 1rem; }

.audience-point h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }

.audience-point p { color: var(--gray); font-size: 0.94rem; margin: 0; }

/* ---------- V3 reszponzív ---------- */

@media (max-width: 640px) {
  .check-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  /* A legördülő menü mobilon sima, a "Megoldások" ALATT megjelenő listaként.
     A nav li flex-e miatt oszlopba rendezzük (a nagyobb specifikusságért
     a teljes szelektorral írjuk felül). */
  .main-nav > ul > li.has-dropdown { width: 100%; flex-direction: column; align-items: stretch; }

  .dropdown-toggle {
    width: 100%;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    align-items: stretch;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.1rem 0 0.3rem;
    backdrop-filter: none;
  }

  .dropdown-menu a { font-size: 1.05rem; padding: 0.65rem 0.5rem; justify-content: center; }
}

/* ---------- Csökkentett mozgás ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }

  .reveal { opacity: 1; transform: none; }

  .ribbon-content,
  .splat-float { animation: none !important; }
}
