/* ==========================================================================
   TRUMMER INGATLAN — style.css
   Tartalom:
   01. Designrendszer (CSS változók)
   02. Alap / reset
   03. Segédosztályok (container, section, eyebrow, badge)
   04. Gombok
   05. Ikonok
   06. Fejléc és navigáció
   07. Hero (főoldal)
   07/b. Aloldali fejléc (page hero) és morzsamenü
   07/c. CTA sáv
   08. Műszaki paraméter kártyák
   09. Galéria és kiemelt felhívás
   10. Rólunk & Előnyök
   11. Kapcsolat és térkép
   12. Lábléc
   13. Lebegő hívásgomb (FAB)
   14. Animációk (reveal)
   15. Reszponzív töréspontok
   ========================================================================== */

/* ==========================================================================
   01. DESIGNRENDSZER — a logó vizuális világához igazított paletta
   ========================================================================== */
:root {
  /* Elsődleges kiemelő szín: a logó meleg aranybarna / borostyán árnyalata */
  --color-accent: #d97706;
  --color-accent-dark: #b45309;
  --color-accent-soft: rgba(217, 119, 6, 0.12);

  /* Sötét ipari alapok: a logó épületvonalaihoz igazított antracit */
  --color-dark: #0f172a;
  --color-dark-2: #1e293b;

  /* Semleges felületek */
  --color-white: #ffffff;
  --color-surface: #f8fafc;
  --color-border: #e2e8f0;

  /* Szövegszínek */
  --color-text: #334155;
  --color-muted: #64748b;
  /* Sötét háttéren olvasható, halvány szövegszín */
  --color-muted-dark: #94a3b8;
  --color-light: #cbd5e1;

  /* Tipográfia */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Sugarak és árnyékok */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);

  /* Elrendezés */
  --container: 1200px;
  --header-h: 78px;
  --transition: all 0.3s ease;
}

/* ==========================================================================
   02. ALAP / RESET
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Görgetéskor a lebegő fejléc ne takarja el a horgonyzott tartalmat */
section[id],
#elonyok {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

h1, h2, h3 {
  color: var(--color-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul { list-style: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

iframe { border: 0; }

/* Fókuszjelzés — akadálymentesség */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ugrás a tartalomra link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* Rejtett SVG ikonkészlet */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ==========================================================================
   03. SEGÉDOSZTÁLYOK
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 96px 0; }

.section--alt {
  background-color: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section--dark {
  background-color: var(--color-dark-2);
  color: var(--color-light);
}
.section--dark h2,
.section--dark h3 { color: var(--color-white); }
.section--dark .section-lead { color: var(--color-light); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.075rem;
  color: var(--color-muted);
}

/* Kis nagybetűs felcím a kiemelő színnel */
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow--light { color: #fbbf24; }

/* Hero badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  background: rgba(217, 119, 6, 0.18);
  border: 1px solid rgba(217, 119, 6, 0.55);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.badge .icon { color: #fbbf24; }

.prose {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 1.05rem;
}
.prose strong { color: var(--color-dark); font-weight: 600; }

/* ==========================================================================
   04. GOMBOK
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--lg {
  padding: 17px 30px;
  font-size: 1rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* Elsődleges — a logó aranybarna árnyalata */
.btn--primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.28);
}
.btn--primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(180, 83, 9, 0.36);
}

/* Másodlagos — átlátszó, fehér keretes */
.btn--ghost {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Sötét, semleges gomb világos háttéren */
.btn--dark {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}
.btn--dark:hover {
  background-color: var(--color-dark-2);
  border-color: var(--color-dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active { transform: translateY(0); }

/* ==========================================================================
   05. IKONOK
   ========================================================================== */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   06. FEJLÉC ÉS NAVIGÁCIÓ
   ========================================================================== */
/* A logó fehér hátterű, ezért a fejléc végig világos marad —
   így a márkajelzés minden görgetési állapotban tisztán érvényesül. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

/* Görgetés után (JS adja hozzá): tömörebb háttér és finom árnyék */
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

/* --- Márkajelzés --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* A logóból kivágott épület-jel — magasság alapján méretezve, arányt tartva */
.brand__logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  transition: var(--transition);
}
.brand:hover .brand__logo { transform: translateY(-1px); }

/* Ha a kép nem található, elrejtjük, és a szöveges márkajelzés marad */
.brand__logo.is-missing { display: none; }

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-left: 14px;
  border-left: 1px solid var(--color-border);
}

.brand__name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-dark);
}

.brand__sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-accent);
}

/* --- Menü --- */
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  border-radius: var(--radius);
}

/* Aranybarna aláhúzás hoverre / aktív szekcióra */
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__link:hover,
.nav__link.is-active,
.nav__link[aria-current="page"] { color: var(--color-dark); }

.nav__link[aria-current="page"] { font-weight: 600; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cta-mobile { display: none; }

/* --- Hamburger gomb (csak mobilon látszik) --- */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.hamburger:hover { border-color: var(--color-accent); }

.hamburger__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.hamburger__line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger → X animáció */
.hamburger.is-active .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sötét réteg a nyitott mobilmenü mögött */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible { opacity: 1; }

/* A megnyitott menü mögött ne lehessen görgetni */
body.is-locked { overflow: hidden; }

/* ==========================================================================
   07. HERO
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 72px) 0 88px;
  overflow: hidden;
  isolation: isolate;
}

/* Háttérkép a valós raktárbelsőről (fotó 2). Ha a fájl hiányzik,
   az alatta lévő sötét ipari gradiens marad láthatóan a helyén. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--color-dark);
  background-image:
    url("images/foto-2.webp"),
    linear-gradient(140deg, #1e293b 0%, #0f172a 55%, #111c33 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Sötét overlay a szöveg olvashatóságáért */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 45%, rgba(15, 23, 42, 0.55) 100%),
    radial-gradient(ellipse at 78% 22%, rgba(217, 119, 6, 0.22) 0%, transparent 58%);
}

/* A hero tartalma a fejléccel azonos konténerhez igazodik,
   a szövegblokk szélességét a gyerekelemek korlátozzák. */
.hero__inner { color: var(--color-white); }

.hero__title {
  max-width: 880px;
  font-size: clamp(2.25rem, 5.6vw, 4rem);
  color: var(--color-white);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 40px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* Gyors tények a hero alján */
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  max-width: 880px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__fact {
  display: flex;
  flex-direction: column;
}
.hero__fact strong {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: -0.01em;
}
.hero__fact span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   07/b. ALOLDALI FEJLÉC (page hero) ÉS MORZSAMENÜ
   Fotó helyett CSS-ből rajzolt sötét ipari mintázat: antracit alap,
   finom átlós vonalháló és a logó aranybarna színéből építkező fényfolt.
   ========================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 64px;
  color: var(--color-white);
  background-color: var(--color-dark);
  background-image:
    radial-gradient(ellipse 70% 90% at 88% 0%, rgba(217, 119, 6, 0.26) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(160deg, #1e293b 0%, #0f172a 65%, #131f38 100%);
  overflow: hidden;
}

/* Vékony aranybarna zárósáv az aloldali fejléc alján */
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-dark) 45%, transparent 100%);
}

.page-hero__title {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  color: var(--color-white);
  text-wrap: balance;
}

.page-hero__lead {
  max-width: 680px;
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* --- Morzsamenü --- */
.breadcrumb {
  margin-bottom: 22px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb li { display: flex; align-items: center; gap: 8px; }

/* Elválasztó jel a listaelemek közé */
.breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.28);
}

.breadcrumb a:hover { color: #fbbf24; }

.breadcrumb [aria-current="page"] {
  color: var(--color-white);
  font-weight: 500;
}

/* ==========================================================================
   07/c. CTA SÁV — teljes szélességű konverziós blokk az oldalak alján
   ========================================================================== */
.cta-band {
  padding: 64px 0;
  color: var(--color-white);
  background: linear-gradient(120deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band__title {
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  color: var(--color-white);
  margin-bottom: 8px;
}

.cta-band__text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Világos gomb az aranybarna sávon */
.btn--light {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow);
}
.btn--light:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Átlátszó, fehér keretes gomb az aranybarna sávon */
.btn--outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}
.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Nyilas szöveges hivatkozás a szekciók végén */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-accent);
}
.link-arrow:hover { color: var(--color-accent-dark); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow .icon { transition: transform 0.3s ease; }

/* Szekció alján középre igazított továbblépés */
.section-more {
  margin-top: 44px;
  text-align: center;
}

/* ==========================================================================
   08. MŰSZAKI PARAMÉTER KÁRTYÁK
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  padding: 32px 28px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: var(--shadow-md);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--color-accent);
  background-color: var(--color-accent-soft);
  border-radius: var(--radius);
  transition: var(--transition);
}
.card__icon .icon { width: 26px; height: 26px; }

.card:hover .card__icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.card__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* Három elemű kártyarács */
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* Továbblépő hivatkozás a kártya alján */
.card__link { margin-top: 18px; }

/* --- Számozott lépések (bérlés menete) --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  padding: 32px 28px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: var(--shadow-md);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.step__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* ==========================================================================
   09. GALÉRIA ÉS KIEMELT FELHÍVÁS
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-color: var(--color-dark-2);
  /* Fallback minta, ha a kép még nem került fel */
  background-image: linear-gradient(140deg, #1e293b 0%, #0f172a 100%);
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

/* Hiányzó kép esetén: a felirat marad a sötét felületen */
.gallery__item img.is-missing { display: none; }

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 18px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
}

/* Ha nincs kép, jelzésértékű, szaggatott keretes helyőrző marad */
.gallery__item:has(img.is-missing) {
  box-shadow: none;
  outline: 1px dashed rgba(255, 255, 255, 0.18);
  outline-offset: -8px;
}

.gallery__item:has(img.is-missing) .gallery__caption {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.5);
  background: none;
}

/* --- Kiemelt felhívás a galéria alatt --- */
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.callout__body { max-width: 720px; }

.callout__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.callout__text {
  color: var(--color-muted);
  font-size: 0.9875rem;
}

/* ==========================================================================
   10. RÓLUNK & ELŐNYÖK
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits {
  padding: 40px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.benefits__title {
  font-size: 1.375rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.benefits__list {
  display: grid;
  gap: 20px;
}

.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9875rem;
  color: var(--color-text);
}

.benefits__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  padding: 5px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  stroke-width: 3;
}

/* ==========================================================================
   10/b. JOGI OLDALAK (Impresszum, Adatkezelés) — folyó szöveg
   ========================================================================== */
.legal {
  max-width: 800px;
  margin-inline: auto;
}

.legal h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 1.375rem;
}
.legal h2:first-child { margin-top: 0; }

.legal h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.legal p { margin-bottom: 16px; }

.legal ul {
  margin-bottom: 20px;
  padding-left: 4px;
  display: grid;
  gap: 10px;
}

/* Aranybarna pont a felsorolások előtt */
.legal li {
  position: relative;
  padding-left: 22px;
}
.legal li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.legal a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--color-accent-dark); }

/* Kitöltendő adat jelölése */
.legal .todo {
  padding: 2px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent-dark);
  background-color: var(--color-accent-soft);
  border-radius: 4px;
}

/* Adattábla a jogi oldalakon */
.legal-table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.legal-table th {
  width: 38%;
  font-weight: 600;
  color: var(--color-dark);
  background-color: var(--color-surface);
}

/* ==========================================================================
   11. KAPCSOLAT ÉS TÉRKÉP
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact__list {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact__item:last-child { border-bottom: 0; }

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: #fbbf24;
  background-color: rgba(217, 119, 6, 0.16);
  border-radius: var(--radius);
}

.contact__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-dark);
}

.contact__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
}
.contact__value em {
  font-style: normal;
  font-weight: 400;
  color: var(--color-light);
}

.contact__value--link:hover { color: #fbbf24; }

.contact__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--color-light);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}
.contact__note .icon { color: #fbbf24; }

/* Térkép — lekerekített sarkok, finom keret */
.contact__map {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-dark);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ==========================================================================
   12. LÁBLÉC
   ========================================================================== */
.site-footer {
  padding-top: 72px;
  background-color: var(--color-dark);
  color: var(--color-light);
  font-size: 0.9375rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* A logó fehér hátterű, ezért a sötét láblécben világos „táblán" jelenik meg */
.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
  padding: 16px 22px;
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.footer-logo img {
  width: 200px;
  height: auto;
}
.footer-logo img.is-missing { display: none; }

.site-footer__tagline {
  max-width: 380px;
  color: var(--color-muted-dark);
}

.site-footer__heading {
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-footer__nav ul,
.site-footer__contact ul {
  display: grid;
  gap: 12px;
}

.site-footer a:hover { color: var(--color-accent); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--color-muted-dark);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__credit strong {
  color: var(--color-light);
  font-weight: 600;
}

/* ==========================================================================
   13. LEBEGŐ HÍVÁSGOMB (FAB) — csak mobilon
   ========================================================================== */
.fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  /* A nyitott mobilmenü sötétítő rétege (90) alatt marad */
  z-index: 85;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.45);
  transition: var(--transition);
}
.fab:hover,
.fab:active { background-color: var(--color-accent-dark); }
.fab .icon { width: 26px; height: 26px; }

/* Finom lüktetés a figyelemfelkeltéshez */
.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: var(--color-accent);
  opacity: 0.55;
  animation: fab-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   14. ANIMÁCIÓK — görgetésre megjelenő elemek
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Kártyák lépcsőzetes megjelenése */
.cards .card:nth-child(2) { transition-delay: 0.08s; }
.cards .card:nth-child(3) { transition-delay: 0.16s; }
.cards .card:nth-child(4) { transition-delay: 0.24s; }

/* ==========================================================================
   15. RESZPONZÍV TÖRÉSPONTOK
   ========================================================================== */

/* --- Nagy tabletek --- */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 48px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Tablet és mobil: hamburger menü --- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .cards--3, .steps { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: calc(var(--header-h) + 56px) 0 52px; }

  .hamburger { display: inline-flex; }
  .btn--call span { display: none; }
  .btn--call { padding: 13px 16px; }

  /* Legördülő menüpanel a fejléc alatt */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav__link {
    padding: 14px 12px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  .nav__link:hover,
  .nav__link.is-active { color: var(--color-accent); }

  .nav__cta-mobile { display: flex; }

  .contact { grid-template-columns: 1fr; }
  .contact__map iframe { min-height: 380px; }

  .callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
}

/* --- Mobil --- */
@media (max-width: 720px) {
  :root { --header-h: 68px; }

  .section { padding: 60px 0; }
  .container { padding-inline: 18px; }

  .brand__logo { height: 34px; }
  .brand__text { padding-left: 11px; }
  .brand__name { font-size: 0.9375rem; }
  .brand__sub { font-size: 0.625rem; letter-spacing: 0.18em; }

  .footer-logo img { width: 170px; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 56px) 0 72px; }
  .badge { font-size: 0.8125rem; padding: 8px 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; margin-bottom: 44px; }
  .hero__actions .btn { width: 100%; white-space: normal; }
  .hero__facts { gap: 20px 32px; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .cards, .cards--3, .steps { grid-template-columns: 1fr; }
  /* Három fotó mobilon egymás alatt, teljes szélességben hat a legjobban */
  .gallery { grid-template-columns: 1fr; gap: 14px; }

  .page-hero { padding: calc(var(--header-h) + 44px) 0 44px; }
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .page-hero__actions .btn { width: 100%; white-space: normal; }

  .cta-band { padding: 52px 0; }

  /* Táblázat helyett egymás alatti blokkok keskeny kijelzőn */
  .legal-table th,
  .legal-table td { display: block; width: 100%; }
  .legal-table td { border-bottom: 0; }
  .legal-table th { border-bottom: 0; }
  .legal-table tr { display: block; border-bottom: 1px solid var(--color-border); }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; white-space: normal; }

  .benefits, .callout { padding: 26px 22px; }
  .callout .btn { width: 100%; white-space: normal; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Lebegő hívásgomb bekapcsolása mobilon */
  .fab { display: inline-flex; }

  /* A FAB ne takarja a lábléc utolsó sorát */
  .site-footer__bottom { padding-bottom: 88px; }

  /* Kártyák animációs késleltetése mobilon zavaró — kikapcsoljuk */
  .cards .card { transition-delay: 0s; }
}

@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Nagyon keskeny kijelzőn csak a logó marad a fejlécben */
@media (max-width: 360px) {
  .brand__text { display: none; }
  .brand__logo { height: 30px; }
}

/* --- Csökkentett mozgás igénye esetén --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- Nyomtatási nézet --- */
@media print {
  .site-header, .fab, .nav-overlay, .contact__map { display: none !important; }
  .hero { min-height: auto; color: #000; }
  body { color: #000; background: #fff; }
}
