/* =========================================================================
   FERRO-CROM Kft. — weboldal stíluslap
   Arculat: papírfehér alap, mélyfekete blokkok, mélyvörös jelzőszín.
   Betű: Familjen Grotesk (kijelző + szöveg), Bodoni Moda (kurzív kiemelés).
   ========================================================================= */

/* ---------------------------------------------------------------- tokenek */
:root {
  --paper:      #F4F3F1;
  --paper-2:    #EAE7E2;
  --paper-3:    #DEDAD4;
  --white:      #FFFFFF;

  --ink:        #202123;
  --ink-2:      #4A4C4F;
  --ink-3:      #6E7175;
  --ink-4:      #8C9095;

  --dark:       #202123;
  --dark-2:     #2A2C2E;
  --dark-3:     #35383A;

  --red:        #A60B0C;
  --red-deep:   #7C0708;
  --red-bright: #C4161C;
  --red-soft:   #F3E4E3;

  /* zöld csak állapotjelzésre: „most nyitva" és sikeres űrlapküldés */
  --green:        #2F7D4F;
  --green-deep:   #235E3B;
  --green-bright: #5FD08C;
  --green-soft:   #E7F1EA;

  --copper:     #B4623A;
  --steel:      #8A8D91;

  --line:       rgba(32, 33, 35, .13);
  --line-2:     rgba(32, 33, 35, .07);
  --line-dark:  rgba(255, 255, 255, .13);

  --font:       "Familjen Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-alt:   "Petrona", Georgia, "Times New Roman", serif;

  --shadow-sm:  0 1px 2px rgba(32, 33, 35, .05), 0 2px 8px rgba(32, 33, 35, .05);
  --shadow-md:  0 2px 6px rgba(32, 33, 35, .06), 0 12px 30px rgba(32, 33, 35, .09);
  --shadow-lg:  0 6px 16px rgba(32, 33, 35, .08), 0 32px 64px rgba(32, 33, 35, .14);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --gut: clamp(20px, 4vw, 40px);
  --wrap: 1240px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* finom papírszemcse — háttérrétegként, hogy ne zavarja az Elementor rétegeit */
body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(2rem, 3.7vw, 2.95rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); letter-spacing: -0.02em; }
h4 { font-size: 1.0625rem; letter-spacing: -0.012em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 900px; }

.lede { font-size: clamp(1.0625rem, 1.5vw, 1.1875rem); color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--ink-3); }
.serif-it { font-family: var(--font-alt); font-style: italic; font-weight: 500; letter-spacing: -0.012em; }

/* ugras a tartalomra */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r-sm);
  text-decoration: none; transition: top .2s var(--ease);
}
.skip:focus-visible { top: 12px; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------- gombok */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: .9375rem; font-weight: 600; letter-spacing: -0.008em;
  text-decoration: none; cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red    { background: var(--red); color: #fff; box-shadow: 0 2px 4px rgba(124,7,8,.2), 0 10px 24px rgba(124,7,8,.24); }
.btn--red:hover { background: var(--red-deep); box-shadow: 0 4px 8px rgba(124,7,8,.24), 0 18px 36px rgba(124,7,8,.28); }
.btn--dark   { background: var(--ink); color: #fff; box-shadow: 0 2px 4px rgba(32,33,35,.14), 0 10px 24px rgba(32,33,35,.16); }
.btn--dark:hover { background: #000; }
.btn--light  { background: var(--white); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--paper); border-color: rgba(32,33,35,.22); }
.btn--ghost  { background: transparent; color: var(--ink); border-color: rgba(32,33,35,.24); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--onDark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--onDark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--lg { padding: 17px 32px; font-size: 1rem; }

/* szöveges nyíl-link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9375rem; text-decoration: none;
  color: var(--red); padding-bottom: 2px;
  border-bottom: 1px solid rgba(166,11,12,.28);
  transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.arrow-link:hover { border-color: var(--red); gap: 13px; }
.arrow-link svg { width: 15px; height: 15px; }

/* ---------------------------------------------------------------- ikonok */
.ico { width: 20px; height: 20px; flex: none; }
.panel > .ico { width: 28px; height: 28px; color: var(--red); stroke-width: 1.4; }
.panel h3 .ico { width: 20px; height: 20px; }
.prose .ico { vertical-align: -3px; }

/* ---------------------------------------------------------------- fejléc */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(244,243,241,.86);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line); background: rgba(244,243,241,.95); }
.hdr__in { display: flex; align-items: center; gap: 28px; height: 74px; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.logo__mark { width: 34px; height: 34px; flex: none; }
.logo__txt { display: flex; align-items: baseline; gap: 5px; }
.logo__name { font-size: 1.185rem; font-weight: 700; letter-spacing: -0.035em; }
.logo__kft  { font-size: .6875rem; font-weight: 600; letter-spacing: .01em; color: var(--ink-3); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 9px 13px; border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 500; text-decoration: none; color: var(--ink-2);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(32,33,35,.05); }
.nav a[aria-current="page"] { color: var(--red); font-weight: 600; }
.hdr__cta { flex: none; }

/* almenü a telephelyekhez */
.nav__drop { position: relative; }
.nav__drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__ch { width: 12px; height: 12px; opacity: .5; transform: rotate(90deg); transition: transform .25s var(--ease); }
.nav__drop:hover .nav__ch, .nav__drop:focus-within .nav__ch { transform: rotate(-90deg); opacity: .9; }
.nav__menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 10;
  min-width: 268px; padding: 7px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { opacity: 1; visibility: visible; transform: none; }
.nav__menu a { display: block; padding: 11px 14px; font-size: .9063rem; border-radius: var(--r-sm); }
.nav__menu a:hover { background: var(--paper); color: var(--red); }

.mob__ch { width: 14px; height: 14px; opacity: .3; }
.mobnav__sub a { padding-left: 20px; font-size: .9688rem; color: var(--ink-2); }
.mobnav__sub a::before {
  content: ""; position: absolute; left: 4px; width: 9px; height: 1px; background: var(--ink-4);
}
.mobnav__sub { position: relative; }

.burger {
  display: none; width: 44px; height: 44px; margin-left: auto;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer;
}
.burger span { display: block; width: 19px; height: 1.5px; background: var(--ink); position: relative; transition: transform .3s var(--ease), background-color .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobnav {
  display: none; border-top: 1px solid var(--line); background: var(--paper);
}
.mobnav.is-open { display: block; }
.mobnav ul { list-style: none; margin: 0; padding: 10px var(--gut) 22px; }
.mobnav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 2px; text-decoration: none; font-size: 1.0625rem; font-weight: 500;
  border-bottom: 1px solid var(--line-2);
}
.mobnav a[aria-current="page"] { color: var(--red); }
.mobnav .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; }
.hero__in {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(24px, 3vw, 40px); align-items: center;
  min-height: min(70vh, 600px);
  padding-block: clamp(26px, 3.2vw, 46px) clamp(22px, 2.6vw, 38px);
}
.hero__copy { max-width: 38rem; }
.hero h1 { margin-bottom: 18px; font-size: clamp(2.4rem, 4.5vw, 3.75rem); }
.hero h1 .serif-it { display: block; color: var(--red); font-size: .95em; margin-top: .06em; }
.hero__lede { color: var(--ink-2); font-size: clamp(1rem, 1.35vw, 1.125rem); max-width: 31rem; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__art { position: relative; }
.hero__art img {
  position: relative; z-index: 1; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 8px 20px rgba(32,33,35,.10), 0 40px 80px rgba(32,33,35,.20);
}
.hero__panel {
  position: absolute; z-index: 0; left: -52px; top: 34px; bottom: 34px;
  width: 220px; border-radius: var(--r-md) 0 0 var(--r-md);
  background: linear-gradient(160deg, #B31315, #8E0A0C 70%);
  box-shadow: 0 18px 44px rgba(124,7,8,.25);
}
/* a kompozíció a comp szerint kifut a képernyő jobb széléig */
@media (min-width: 1081px) {
  .hero__art { margin-right: calc(-1 * (var(--gut) + max(0px, (100vw - var(--wrap)) / 2))); }
}


/* bizalmi sáv */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__i {
  display: block; padding: clamp(30px, 3.4vw, 46px) clamp(18px, 2vw, 30px);
  border-left: 1px solid var(--line);
}
.trust__i:first-child { border-left: 0; padding-left: 0; }
.trust__i svg {
  width: clamp(40px, 3.4vw, 52px); height: clamp(40px, 3.4vw, 52px);
  color: var(--red); stroke-width: 1.6; margin-bottom: clamp(14px, 1.6vw, 22px);
  transition: transform .5s var(--ease);
}
.trust__i:hover svg { transform: translateY(-4px) scale(1.05); }
.trust__i b {
  display: block; font-size: clamp(1.6rem, 2.7vw, 2.4rem); font-weight: 600;
  line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 6px;
}
.trust__i span {
  display: block; font-size: clamp(1rem, 1.2vw, 1.125rem); color: var(--ink-3);
  line-height: 1.25; letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------- szekciók */
.sec { padding-block: clamp(46px, 5.4vw, 82px); }
.sec--tight { padding-block: clamp(34px, 3.8vw, 56px); }
.sec--dark { background: var(--dark); color: #fff; }
.sec--dark .lede, .sec--dark .muted { color: rgba(255,255,255,.66); }
.sec--paper2 { background: var(--paper-2); }

.sec__head { margin-bottom: clamp(24px, 2.8vw, 38px); }
.sec__head--center { text-align: center; }
.sec__head--center .lede { margin-inline: auto; }
.sec__head h2 + .lede { margin-top: 16px; }
.sec__head--split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }

.rule { height: 2px; width: 54px; background: var(--red); border: 0; margin: 0 0 18px; transform-origin: left center; }
.sec__head--center .rule { transform-origin: center; }
.js .reveal .rule { transform: scaleX(0); transition: transform .7s var(--ease) .12s; }
.js .reveal.is-in .rule { transform: none; }
.sec__head--center .rule { margin-inline: auto; }

/* ---------------------------------------------------------------- anyagkártyák */
.mats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.mat {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-md); background: var(--dark);
  text-decoration: none; color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.mat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mat__img { aspect-ratio: 6 / 5; filter: saturate(.92) contrast(1.04) brightness(.94); width: 100%; height: auto; object-fit: cover; transition: transform .7s var(--ease); }
.mat:hover .mat__img { transform: scale(1.045); }
.mat__body {
  position: absolute; inset: auto 0 0 0; padding: 26px 24px 24px;
  padding-top: 68px;
  background: linear-gradient(to top, rgba(10,11,12,.97) 0%, rgba(10,11,12,.9) 34%, rgba(10,11,12,.56) 66%, rgba(10,11,12,0) 100%);
}
.mat__body h3 { margin-bottom: 7px; }
.mat__body p { font-size: .9375rem; line-height: 1.45; color: rgba(255,255,255,.76); margin: 0; }
.mat__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: .875rem; font-weight: 600; color: #fff;
  opacity: .0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mat:hover .mat__more, .mat:focus-visible .mat__more { opacity: 1; transform: none; }
.mat__more svg { width: 14px; height: 14px; }


/* ---------------------------------------------------------------- folyamat */
.proc { position: relative; overflow: hidden; background: var(--dark); }
.proc__art {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  opacity: .34; filter: grayscale(.35) contrast(1.05);
  pointer-events: none;
}
.proc::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(24,25,26,.9) 0%, rgba(24,25,26,.74) 45%, rgba(24,25,26,.92) 100%),
    radial-gradient(90% 70% at 20% 45%, rgba(24,25,26,.7), transparent 70%);
}
.proc .wrap { position: relative; z-index: 2; }
.proc__in { position: relative; z-index: 2; max-width: none; }
.proc h2 { margin-bottom: 38px; max-width: 18ch; }
.proc__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.proc__step { position: relative; padding-right: 20px; }
/* szaggatott összekötő vonal a csomópontok között */
.proc__step::before {
  content: ""; position: absolute; left: 78px; right: -14px; top: 33px; height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,.34) 0 7px, rgba(255,255,255,0) 7px 15px);
}
.proc__step::after {
  content: ""; position: absolute; right: -18px; top: 28px;
  width: 0; height: 0;
  border-left: 8px solid rgba(255,255,255,.4);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.proc__step:last-child::before, .proc__step:last-child::after { display: none; }
.proc__n {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 68px; height: 68px; border-radius: 50%; margin-bottom: 22px;
  background: rgba(20,21,22,.86); border: 2px solid var(--red);
  box-shadow: 0 0 0 6px rgba(196,22,28,.12);
  font-family: var(--font-alt); font-style: italic;
  font-size: 1.75rem; line-height: 1; color: #fff;
  font-weight: 600; font-variant-numeric: lining-nums;
}
.proc__step h3 { font-size: 1.1875rem; margin-bottom: 9px; }
.proc__step p { font-size: .9375rem; line-height: 1.55; color: rgba(255,255,255,.7); margin: 0; }
.proc__foot { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------------------------------------------------------------- telephelyek */
.sites { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 26px); }
.site {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.site:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.site__img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; height: auto; }
.site__body { padding: clamp(22px, 2.4vw, 30px); flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.site__body h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 14px; }
.site__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 22px; }
.site__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: .875rem; color: var(--ink-3); }
.site__meta svg { width: 15px; height: 15px; flex: none; }
.site__acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* ---------------------------------------------------------------- érvek */
.why { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(30px, 5vw, 72px); align-items: start; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; }
.why__i { padding: 6px 30px 34px; border-left: 1px solid var(--line); }
.why__i:nth-child(odd) { padding-left: 0; border-left: 0; }
.why__i:nth-child(n+3) { padding-top: 34px; border-top: 1px solid var(--line); }
.why__i svg {
  width: 58px; height: 58px; padding: 15px; margin-bottom: 18px;
  color: var(--red); stroke-width: 1.6;
  background: var(--red-soft); border-radius: 50%;
  transition: transform .45s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.why__i:hover svg { transform: translateY(-4px); background: var(--red); color: #fff; }
.sec--dark .why__i svg { background: rgba(255,255,255,.08); color: var(--red-bright); }
.sec--dark .why__i:hover svg { background: var(--red); color: #fff; }
.why__i h3 { font-size: 1.25rem; margin-bottom: 9px; letter-spacing: -0.028em; }
.why__i p { font-size: .9688rem; line-height: 1.55; color: var(--ink-3); margin: 0; }

/* ---------------------------------------------------------------- vélemények */
.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.rev {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.rev__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.rev__g { height: 17px; width: auto; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; color: #F5A623; }
.rev p { font-size: .9375rem; line-height: 1.55; color: var(--ink-2); margin-bottom: 18px; }
.rev__meta { margin-top: auto; display: flex; justify-content: space-between; gap: 10px; font-size: .8125rem; color: var(--ink-4); }
.rev__meta b { color: var(--ink-2); font-weight: 600; }

.note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px; padding: 9px 15px;
  background: rgba(32,33,35,.05); border: 1px dashed rgba(32,33,35,.2); border-radius: var(--r-pill);
  font-size: .8125rem; color: var(--ink-3);
}
.note svg { width: 14px; height: 14px; flex: none; }
.sec--dark .note { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.6); }

/* ---------------------------------------------------------------- GYIK */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 21px 4px; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.012em;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.faq summary::after {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease);
}
.faq details[open] summary { color: var(--red); }
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__a { padding: 0 60px 26px 4px; color: var(--ink-2); font-size: .9688rem; max-width: 74ch; }
.faq__a ul { margin: .6em 0 0; padding-left: 1.15em; }
.faq__a li { margin-bottom: .3em; }

/* GYIK kéthasábos elrendezés */
.faqsplit { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.faqsplit .faq { border-top: 0; }
.faqsplit .faq details:first-child { border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------- CTA sáv */
.cta {
  position: relative; overflow: hidden; isolation: isolate;
  color: #fff;
  background: linear-gradient(104deg, #790708 0%, #A60B0C 46%, #C0161A 100%);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: url("../img/foto-telep-mukodes.webp");
  background-size: cover; background-position: center 42%;
  opacity: .26; mix-blend-mode: overlay;
}
.cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(80% 130% at 8% -10%, rgba(255,255,255,.22), transparent 58%),
    radial-gradient(60% 100% at 100% 110%, rgba(0,0,0,.28), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.14));
}
.cta__in {
  position: relative; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 30px;
  padding-block: clamp(46px, 5.6vw, 82px);
}
.cta h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.7rem); max-width: 20ch;
  text-shadow: 0 1px 20px rgba(60,0,0,.25);
}
.cta h2::after {
  content: ""; display: block; width: 60px; height: 2px; margin-top: 20px;
  background: rgba(255,255,255,.55);
}
.cta .btn--light {
  box-shadow: 0 6px 14px rgba(50,0,0,.24), 0 24px 50px rgba(50,0,0,.3);
}
.cta .btn--light:hover { background: #fff; }
.cta__in::before {
  content: ""; position: absolute; right: -1%; top: 50%; translate: 0 -50%;
  width: clamp(150px, 17vw, 250px); aspect-ratio: 40 / 44;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 44'%3E%3Cpath d='M4 6h30l-7.5 10.5H4z' fill='%23fff'/%3E%3Cpath d='M4 18.5h24l-7.5 10.5H4z' fill='%23fff'/%3E%3Cpath d='M4 31h15l-6 9H4z' fill='%23fff'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat;
  opacity: .08; pointer-events: none;
}

/* ---------------------------------------------------------------- lábléc */
.ftr { background: var(--dark); color: rgba(255,255,255,.62); font-size: .9063rem; }
.ftr__in { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; gap: 40px; padding-block: clamp(38px, 4.2vw, 56px) 30px; }
.ftr h4 { color: #fff; font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 18px; }
.ftr .logo__name { color: #fff; }
.ftr .logo__kft { color: rgba(255,255,255,.5); }
.ftr__about { margin-top: 18px; max-width: 30ch; line-height: 1.55; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: 11px; }
.ftr a { text-decoration: none; transition: color .18s var(--ease); }
.ftr a:hover { color: #fff; }
.ftr__c { display: flex; align-items: flex-start; gap: 10px; }
.ftr__c svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--red-bright); stroke-width: 1.5; }
.ftr__bar {
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between;
  padding-block: 22px 26px; font-size: .8125rem; color: rgba(255,255,255,.44);
}
.ftr__bar nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------------------------------------------------------------- oldalfej (aloldalak) */
.phead {
  position: relative; overflow: hidden;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.phead__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  opacity: .55; filter: grayscale(.2) contrast(1.05);
  pointer-events: none;
}
.js .phead__bg { animation: pheadIn 1.4s var(--ease) both; }
@keyframes pheadIn { from { opacity: 0; transform: scale(1.06); } to { opacity: .55; transform: none; } }
.phead::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(244,243,241,.96) 4%, rgba(244,243,241,.66) 38%, rgba(244,243,241,.18) 100%),
    linear-gradient(180deg, rgba(244,243,241,.3), rgba(244,243,241,0) 45%, rgba(244,243,241,.4));
}
.phead__in { padding-block: clamp(38px, 4.6vw, 66px) clamp(34px, 4vw, 54px); position: relative; z-index: 2; }
.phead__in::after {
  content: ""; position: absolute; right: 0; top: 4%; z-index: -1;
  width: clamp(90px, 9vw, 140px); aspect-ratio: 40 / 44;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 44'%3E%3Cpath d='M4 6h30l-7.5 10.5H4z' fill='%23202123'/%3E%3Cpath d='M4 18.5h24l-7.5 10.5H4z' fill='%23202123'/%3E%3Cpath d='M4 31h15l-6 9H4z' fill='%23202123'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat;
  opacity: .07; pointer-events: none;
}
.phead h1 { max-width: 20ch; margin-bottom: 18px; }
.phead .lede { max-width: 56ch; }
.phead__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .8125rem; color: var(--ink-4); margin-bottom: 20px; }
.crumbs a { text-decoration: none; color: var(--ink-3); }
.crumbs a:hover { color: var(--red); }
.crumbs span { opacity: .5; }

/* ---------------------------------------------------------------- tartalom (rólunk, jogi) */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2em; margin-bottom: .5em; font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; margin-bottom: .4em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose a { color: var(--red); }

/* kétoszlopos tartalomblokk */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 68px); align-items: center; }
/* szövegdomináns változat: a kép ne nyomja szét a sort */
.split--text { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); align-items: start; }
.figimg--tall { aspect-ratio: 3 / 4; max-height: 460px; margin-left: auto; }
.split--art img { border-radius: var(--r-md); }
.split__art { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: clamp(18px, 3vw, 34px); box-shadow: var(--shadow-sm); }

/* számsor */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.stats div { background: var(--white); padding: 28px 26px; }
.stats b { display: block; font-size: clamp(2rem, 3.6vw, 2.75rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.stats span { font-size: .9375rem; color: var(--ink-3); }

/* anyaglista (átvételi árak) */
.mtable { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--white);
  display: flex; flex-direction: column; }
.mtable__head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 26px; background: var(--dark); color: #fff;
}
.mtable__head svg { width: 22px; height: 22px; color: var(--red-bright); stroke-width: 1.4; }
.mtable__head h3 { font-size: 1.125rem; color: #fff; }
.mtable ul { list-style: none; margin: 0; padding: 8px 0; flex: 1; }
.mtable li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 26px; border-bottom: 1px solid var(--line-2); font-size: .9688rem;
}
.mtable li:last-child { border-bottom: 0; }
.mtable li span { font-size: .8125rem; color: var(--ink-4); text-align: right; }
.mtable__foot { padding: 20px 26px; border-top: 1px solid var(--line); background: var(--paper); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }

.cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); align-items: start; }
.cols-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); align-items: stretch; }

/* egyszerű panel */
.panel { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: clamp(22px, 2.6vw, 32px); box-shadow: var(--shadow-sm); }
.panel h3 { margin-bottom: 12px; }
.panel--dark { background: var(--dark); color: #fff; border-color: transparent; }
.panel--dark p { color: rgba(255,255,255,.66); }
.panel--red { background: var(--red-soft); border-color: rgba(166,11,12,.16); box-shadow: none; }

/* lista pipákkal */
.checks { list-style: none; margin: 0; padding: 0; }
.checks li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: .9688rem; color: var(--ink-2); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 15px; height: 8px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.sec--dark .checks li::before { border-color: var(--red-bright); }
.checks--no li::before {
  width: 13px; height: 13px; border: 0; top: .35em;
  background:
    linear-gradient(45deg, transparent 44%, var(--ink-4) 44%, var(--ink-4) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--ink-4) 44%, var(--ink-4) 56%, transparent 56%);
  transform: none;
}

/* térkép */
.map { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; filter: saturate(.85) contrast(1.02); }
.map--tall iframe { min-height: 460px; }

/* térképkártya — statikus OpenStreetMap-kép, az arculathoz hangolva */
.mapcard {
  position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--paper-2); isolation: isolate; text-decoration: none;
  border-radius: var(--r-md); border: 1px solid var(--line);
}
.mapcard img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) sepia(.26) saturate(.9) contrast(1.18) brightness(.98);
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.mapcard:hover img { transform: scale(1.045); filter: grayscale(.85) sepia(.16) saturate(.85) contrast(1.05); }
.mapcard::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(244,243,241,0) 46%, rgba(32,33,35,.16) 100%),
    linear-gradient(180deg, rgba(196,22,28,.04), rgba(32,33,35,.03));
}
.mapcard--tall { aspect-ratio: 4 / 5; }
.mapcard--wide { aspect-ratio: 21 / 9; }

.mapcard__pin {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  translate: -50% -100%; width: 38px; height: 52px;
  color: var(--red); pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(32,33,35,.4));
  transition: translate .35s var(--ease);
}
.mapcard:hover .mapcard__pin { translate: -50% -112%; }
.mapcard__pin svg { width: 100%; height: 100%; display: block; }
.mapcard__ring {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 50%;
  border: 2px solid var(--red); opacity: 0; pointer-events: none;
}
.js .mapcard__ring { animation: ping 2.8s var(--ease) infinite; }
@keyframes ping {
  0%   { transform: scale(.5); opacity: .7; }
  70%  { transform: scale(3.6); opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}
.mapcard__go {
  position: absolute; left: 50%; bottom: 16px; z-index: 3;
  translate: -50% 0; padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-size: .8125rem; font-weight: 600;
  white-space: nowrap; opacity: 0; transition: opacity .3s var(--ease), translate .3s var(--ease);
  box-shadow: 0 6px 18px rgba(32,33,35,.3);
}
.mapcard:hover .mapcard__go, .mapcard:focus-visible .mapcard__go { opacity: 1; translate: -50% -4px; }
.mapcard__attr {
  position: absolute; right: 8px; bottom: 8px; z-index: 3;
  padding: 3px 8px; border-radius: var(--r-pill);
  background: rgba(244,243,241,.86);
  font-size: .625rem; letter-spacing: .02em; color: var(--ink-3); line-height: 1.4;
}

.mapnote {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 16px;
}
.mapnote b { font-size: 1.0625rem; letter-spacing: -0.02em; }

.mapcard__attr {
  position: absolute; right: 8px; bottom: 8px; z-index: 3;
  padding: 4px 9px; border-radius: var(--r-pill);
  background: rgba(244,243,241,.88); backdrop-filter: blur(6px);
  font-size: .6875rem; letter-spacing: .01em; color: var(--ink-3);
  text-decoration: none; line-height: 1.3;
}
.mapcard__attr:hover { color: var(--ink); }

/* ---------------------------------------------------------------- űrlap */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .875rem; font-weight: 600; letter-spacing: -0.008em; }
.field label .req { color: var(--red); }
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 46px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A60B0C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}
.field select:hover { background-color: var(--paper); }
.field select:focus { background-color: var(--white); }
.field select option { color: var(--ink); background: var(--white); padding: 10px; }

.field input, .field select, .field textarea {
  font: inherit; font-size: .9688rem; color: var(--ink);
  padding: 13px 15px; background: var(--white);
  border: 1px solid rgba(32,33,35,.18); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(32,33,35,.32); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(166,11,12,.14);
}
.field__hint { font-size: .8125rem; color: var(--ink-4); }
.field__err { font-size: .8125rem; color: var(--red); display: none; }
.field.is-err input, .field.is-err select, .field.is-err textarea { border-color: var(--red); background: #FFF8F8; }
.field.is-err .field__err { display: block; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: block; padding: 9px 17px; border-radius: var(--r-pill);
  border: 1px solid rgba(32,33,35,.2); background: var(--white);
  font-size: .875rem; font-weight: 500; cursor: pointer;
  transition: all .2s var(--ease);
}
.chip input:hover + span { border-color: rgba(32,33,35,.4); }
.chip input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 3px; }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .875rem; color: var(--ink-3); }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--red); flex: none; }
.consent a { color: var(--red); }

.form__ok {
  display: none; gap: 13px; align-items: flex-start;
  padding: 20px 22px; border-radius: var(--r-md);
  background: var(--green-soft); border: 1px solid rgba(47,125,79,.26); color: var(--green-deep);
}
.form__ok.is-on { display: flex; }
.form__ok svg { width: 21px; height: 21px; flex: none; margin-top: 2px; }
.form__ok b { display: block; color: #16452C; margin-bottom: 3px; }

.contactcard { display: grid; gap: 22px; }

/* elérhetőség-kártya */
a.cc {
  position: relative; display: flex; gap: 20px; align-items: center;
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--white); border: 1px solid rgba(32,33,35,.1);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  text-decoration: none; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
a.cc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(166,11,12,.28); }
.cc__ico {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-soft); color: var(--red);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .4s var(--ease);
}
.cc__ico .ico { width: 27px; height: 27px; stroke-width: 1.7; }
a.cc:hover .cc__ico { background: var(--red); color: #fff; transform: scale(1.06); }
.cc__body { display: block; min-width: 0; }
.cc__body b {
  display: block; font-size: .6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-4); margin-bottom: 6px;
}
.cc__val {
  display: block; font-size: clamp(1.125rem, 1.5vw, 1.375rem); font-weight: 600;
  letter-spacing: -0.025em; color: var(--ink); line-height: 1.15;
}
.cc__val--mail { font-size: clamp(.9375rem, 1.1vw, 1.0625rem); word-break: break-all; letter-spacing: -0.015em; }
.cc__hint { display: block; margin-top: 7px; font-size: .8125rem; color: var(--ink-3); }
.cc__go {
  position: absolute; right: 20px; top: 50%; translate: 0 -50%;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  opacity: 0; transition: opacity .3s var(--ease), translate .3s var(--ease), background-color .3s var(--ease);
}
.cc__go .ico { width: 16px; height: 16px; }
a.cc:hover .cc__go, a.cc:focus-visible .cc__go { opacity: 1; translate: 6px -50%; }


/* ---------------------------------------------------------------- lépéssor */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.steps__i { position: relative; padding: 0 30px 0 0; }
.steps__i::before {
  content: ""; position: absolute; left: 76px; right: -14px; top: 31px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(32,33,35,.24) 0 7px, rgba(32,33,35,0) 7px 15px);
}
.steps__i::after {
  content: ""; position: absolute; right: -18px; top: 26px;
  width: 0; height: 0; border-left: 8px solid rgba(32,33,35,.3);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.steps__i:last-child::before, .steps__i:last-child::after { display: none; }
.steps__n, .steps__i > .ico {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 20px;
  background: var(--white); border: 2px solid var(--red);
  box-shadow: 0 0 0 6px rgba(166,11,12,.08); color: var(--red);
}
.steps__n {
  font-family: var(--font-alt); font-style: italic; font-weight: 600;
  font-size: 1.625rem; line-height: 1; font-variant-numeric: lining-nums;
}
.steps__i > .ico { padding: 17px; stroke-width: 1.7; }
.steps__i h3 { font-size: 1.1875rem; margin-bottom: 9px; letter-spacing: -0.028em; }
.steps__i p { font-size: .9688rem; line-height: 1.55; color: var(--ink-3); margin: 0; }

/* ---------------------------------------------------------------- nyitvatartás */
.hours { background: var(--dark); color: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.hours__head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 22px clamp(22px, 2.4vw, 30px); border-bottom: 1px solid var(--line-dark);
}
.hours__head .ico { width: 26px; height: 26px; color: var(--red-bright); stroke-width: 1.6; }
.hours__head b { font-size: 1.125rem; letter-spacing: -0.02em; }
.hours__status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: var(--r-pill); font-size: .8125rem; font-weight: 600;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.72);
}
.hours__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.hours__status.is-open { background: rgba(47,125,79,.28); color: var(--green-bright); }
.hours__status.is-soon { background: rgba(214,158,46,.22); color: #F6C669; }
.hours__status.is-closed { background: rgba(196,22,28,.22); color: #FF9C9F; }
.hours ul { list-style: none; margin: 0; padding: 6px clamp(22px, 2.4vw, 30px) 8px; }
.hours li {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 1.0625rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span { color: rgba(255,255,255,.68); }
.hours li b { font-weight: 600; font-variant-numeric: tabular-nums; }
.hours li.is-today span, .hours li.is-today b { color: #fff; }
.hours li.is-today span::before {
  content: "MA"; display: inline-block; margin-right: 10px;
  padding: 3px 8px; border-radius: 4px; background: var(--red);
  font-size: .625rem; font-weight: 700; letter-spacing: .08em; color: #fff; vertical-align: 2px;
}
.hours__foot { padding: 14px clamp(22px, 2.4vw, 30px) 22px; font-size: .875rem; color: rgba(255,255,255,.6); }

/* ---------------------------------------------------------------- felső sáv */
.topbar { background: var(--dark); color: rgba(255,255,255,.72); font-size: .8125rem; }
.topbar__in { display: flex; align-items: center; gap: 20px; min-height: 42px; flex-wrap: wrap; }
.topbar__state { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: #fff; }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); flex: none; }
.topbar.is-open   .topbar__dot { background: var(--green-bright); box-shadow: 0 0 0 4px rgba(95,208,140,.24); }
.topbar.is-soon   .topbar__dot { background: #ECC94B; box-shadow: 0 0 0 4px rgba(236,201,75,.22); }
.topbar.is-closed .topbar__dot { background: var(--red-bright); box-shadow: 0 0 0 4px rgba(196,22,28,.22); }
.topbar__note { color: rgba(255,255,255,.58); }
.topbar__links { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; transition: color .2s var(--ease); }
.topbar__links a:hover { color: #fff; }
.topbar__links .ico { width: 14px; height: 14px; color: var(--red-bright); }

/* ---------------------------------------------------------------- finomságok */
::selection { background: var(--red); color: #fff; }
p, li { text-wrap: pretty; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 5px; height: 5px; margin-left: -2.5px; background: var(--red); border-radius: 50%;
}
.btn--red { box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 2px 4px rgba(124,7,8,.2), 0 10px 24px rgba(124,7,8,.24); }
.btn--red:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 4px 8px rgba(124,7,8,.24), 0 18px 36px rgba(124,7,8,.28); }
.btn--dark { box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 2px 4px rgba(32,33,35,.14), 0 10px 24px rgba(32,33,35,.16); }
.site, .rev, .panel, .mtable { border-color: rgba(32,33,35,.1); }
.site:hover { border-color: rgba(32,33,35,.16); }
.site__meta span { line-height: 1.35; }
.site__meta svg { color: var(--red); opacity: .85; }
.rev { position: relative; overflow: hidden; }
.rev::before {
  content: "\201D"; position: absolute; right: 14px; top: -18px;
  font-family: var(--font-alt); font-size: 6rem; line-height: 1;
  color: var(--ink); opacity: .06; pointer-events: none;
}
.mtable li { transition: background-color .18s var(--ease); }
.mtable li:hover { background: var(--paper); }
.stats b { font-variant-numeric: lining-nums tabular-nums; }
.stats div { position: relative; padding-top: 34px; }
.stats div::before { content: ""; position: absolute; left: 26px; top: 0; width: 26px; height: 2px; background: var(--red); }
.prose a { text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.ftr { border-top: 2px solid var(--red); }
.site .mapcard { border-radius: 0; border: 0; border-bottom: 1px solid var(--line-2); }

/* lábléc: készítő */
.ftr__maker { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.ftr__maker i { width: 15px; height: 15px; border-radius: 4px; background: #CE2831; flex: none; }
.ftr__maker span { color: rgba(255,255,255,.44); }
.ftr__maker b { font-weight: 600; color: rgba(255,255,255,.72); }
.ftr__maker:hover b { color: #fff; }


/* ---------------------------------------------------------------- nyitó slider */
.slider {
  position: relative; overflow: hidden;
  height: clamp(460px, var(--slider-h, 66vh), 640px);
  background: var(--dark); color: #fff; isolation: isolate;
}
.slider__track { position: absolute; inset: 0; }
.slider--sav .slider__track { inset: 0 0 var(--rail-h, 72px); }
.slider--sav .slider__nav { top: calc((100% - var(--rail-h, 72px)) / 2); }
.slider__slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .8s var(--ease), visibility .8s;
}
.slider__slide.is-active { opacity: 1; visibility: visible; }
.slider__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
}
.slider--zoom .slider__slide.is-active .slider__img { animation: kenburns 14s linear both; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.slider__slide::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(18,19,20,calc(var(--slider-dim, .62) + .22)) 0%,
                            rgba(18,19,20,var(--slider-dim, .62)) 44%,
                            rgba(18,19,20,.16) 100%),
    radial-gradient(90% 120% at 6% 50%, rgba(140,10,12,.34), transparent 62%),
    linear-gradient(180deg, rgba(18,19,20,.4), rgba(18,19,20,0) 34%, rgba(18,19,20,.42));
}
.slider__in { position: relative; z-index: 1; width: 100%; padding-block: clamp(28px, 3.6vw, 54px); }

/* dia-számláló */
.slider__szam {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font-family: var(--font-alt); font-style: italic; font-weight: 600;
  font-size: 1rem; color: rgba(255,255,255,.6); letter-spacing: .02em;
}
.slider__szam b { color: #fff; font-size: 1.375rem; line-height: 1; }
.slider__szam i { width: 34px; height: 1px; background: rgba(255,255,255,.4); display: block; }

.slider__cim {
  max-width: 17ch; margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.6vw, 3.75rem); line-height: 1.04;
  letter-spacing: -.032em; font-weight: 600; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.slider__cim .serif-it { display: block; color: #FF8A8D; font-size: .95em; margin-top: .04em; }
.slider__lead {
  max-width: 44ch; margin: 0 0 26px;
  font-size: clamp(1rem, 1.35vw, 1.1875rem); line-height: 1.55;
  color: rgba(255,255,255,.86); text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.slider__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.slider__tags { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.slider__tags li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px 8px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: saturate(1.4) blur(8px);
  font-size: .8438rem; font-weight: 600; letter-spacing: -.006em;
}
.slider__tags .ico { width: 16px; height: 16px; color: #FF9C9F; }

/* lépcsőzetes beúszás diaváltáskor */
.js .slider__slide.is-active .slider__szam,
.js .slider__slide.is-active .slider__cim,
.js .slider__slide.is-active .slider__lead,
.js .slider__slide.is-active .slider__cta,
.js .slider__slide.is-active .slider__tags { animation: slideUp .8s var(--ease) both; }
.js .slider__slide.is-active .slider__cim  { animation-delay: .08s; }
.js .slider__slide.is-active .slider__lead { animation-delay: .16s; }
.js .slider__slide.is-active .slider__cta  { animation-delay: .24s; }
.js .slider__slide.is-active .slider__tags { animation-delay: .32s; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* nyilak */
.slider__nav {
  position: absolute; top: 50%; z-index: 3; translate: 0 -50%;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.26); color: #fff;
  backdrop-filter: blur(8px);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.slider__nav:hover { background: var(--red); border-color: var(--red); }
.slider__nav .ico { width: 19px; height: 19px; }
.slider__nav--prev { left: clamp(10px, 1.6vw, 22px); }
.slider__nav--prev .ico { transform: rotate(180deg); }
.slider__nav--next { right: clamp(10px, 1.6vw, 22px); }

/* feliratos léptetősáv */
.slider__rail {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: var(--rail-h, 72px);
  background: rgba(14,15,16,.72); backdrop-filter: saturate(1.3) blur(12px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.slider__rail-in { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; height: 100%; }
.slider--sav .slider__dot {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 0 22px; height: 100%; cursor: pointer; text-align: left;
  background: none; border: 0; border-left: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); transition: color .25s var(--ease), background-color .25s var(--ease);
}
.slider--sav .slider__dot:first-child { border-left: 0; }
.slider--sav .slider__dot:hover { color: #fff; background: rgba(255,255,255,.05); }
.slider--sav .slider__dot em {
  font-family: var(--font-alt); font-style: italic; font-weight: 600;
  font-size: 1.0625rem; color: var(--red-bright); flex: none;
}
.slider--sav .slider__dot b { font-size: .9375rem; font-weight: 600; letter-spacing: -.014em; }
.slider--sav .slider__dot.is-active { color: #fff; background: rgba(255,255,255,.07); }
.slider--sav .slider__dot span {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red-bright);
}
.slider--sav .slider__dot.is-active span { animation: dotfill linear both; animation-duration: var(--slider-ido, 6s); }
@keyframes dotfill { from { width: 0; } to { width: 100%; } }
.slider--sav.is-paused .slider__dot span { animation-play-state: paused; }

/* nagy áttetsző sorszám a háttérben */
.slider__bignum {
  position: absolute; right: clamp(-10px, 1vw, 40px); bottom: -.16em; z-index: -1;
  font-family: var(--font-alt); font-style: italic; font-weight: 600;
  font-size: clamp(11rem, 26vw, 24rem); line-height: .8;
  color: #fff; opacity: .07; pointer-events: none; user-select: none;
}

/* letisztult pontok a tartalom alatt */
.slider__dots-wrap { position: absolute; left: 0; right: 0; bottom: clamp(22px, 3vw, 38px); z-index: 3; }
.slider--pontok .slider__dots { display: flex; gap: 10px; }
.slider--pontok .slider__dot {
  position: relative; width: 46px; height: 4px; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.28); border: 0; border-radius: 99px; overflow: hidden;
  transition: background-color .3s var(--ease), width .4s var(--ease);
}
.slider--pontok .slider__dot:hover { background: rgba(255,255,255,.5); }
.slider--pontok .slider__dot.is-active { width: 84px; background: #fff; }
/* A folyamatjelzés csak a slider legalján fut — a pontok alatt ne fusson még egyszer. */
.slider--pontok .slider__dot span,
.slider--pontok .slider__dot em,
.slider--pontok .slider__dot b { display: none !important; }

/* hajszálvékony folyamatvonal a slider legalján */
.slider__progress {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  height: 3px; background: rgba(255,255,255,.14); pointer-events: none;
}
.slider--sav .slider__progress { display: none; }
.slider__progress i { display: block; height: 100%; width: 0; background: var(--red-bright); }
.js .slider:not(.is-paused) .slider__progress i {
  animation: dotfill linear infinite; animation-duration: var(--slider-ido, 6s);
}

@media (max-width: 980px) {
  .slider { height: clamp(440px, 62vh, 580px); --rail-h: 62px; }
  .slider__bignum { font-size: clamp(9rem, 34vw, 16rem); }
  .slider__nav { width: 42px; height: 42px; }
  .slider__cim { max-width: 14ch; }
  .slider__dot { padding: 0 14px; gap: 9px; }
  .slider__dot b { font-size: .8438rem; }
}
@media (max-width: 620px) {
  .slider { --rail-h: 54px; }
  .slider__nav, .slider__dot em { display: none; }
  .slider__dot { justify-content: center; padding: 0 8px; }
  .slider__dot b { font-size: .75rem; }
  .slider__cta .btn { flex: 1 1 100%; justify-content: center; }
  .slider__tags li { font-size: .8125rem; }
  .slider__szam { margin-bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .slider--zoom .slider__slide.is-active .slider__img { animation: none; }
  .slider__dot span { animation: none !important; }
  .js .slider__slide.is-active * { animation: none !important; }
}

/* ---------------------------------------------------------------- hero jelvény */
.hero__badge {
  position: absolute; z-index: 2; left: -26px; bottom: 28px;
  display: flex; align-items: center; gap: 15px;
  padding: 16px 24px 16px 18px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 6px 16px rgba(32,33,35,.1), 0 26px 54px rgba(32,33,35,.2);
}
.hero__badge svg { width: 34px; height: 34px; flex: none; color: var(--red); stroke-width: 1.5; }
.hero__badge b { display: block; font-size: 1.375rem; font-weight: 600; letter-spacing: -.032em; line-height: 1.04; }
.hero__badge i { display: block; font-style: normal; font-size: .8125rem; color: var(--ink-3); margin-top: 4px; }
.js .hero__badge { animation: badgeIn .9s var(--ease) both .7s; }
@keyframes badgeIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- idézet */
.pullquote {
  margin: 0; position: relative;
  padding-left: clamp(46px, 5vw, 74px);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px); align-items: end;
}
.pullquote::before {
  content: "\201D"; position: absolute; left: 0; top: -.18em;
  font-family: var(--font-alt); font-style: italic;
  font-size: clamp(4.5rem, 8vw, 7rem); line-height: 1; color: var(--red); opacity: .3;
}
.pullquote p {
  font-family: var(--font-alt); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem); line-height: 1.22;
  letter-spacing: -.02em; color: var(--ink); margin: 0; max-width: 16ch;
}
.pullquote footer {
  margin: 0 0 .35em; font-size: 1.0625rem; line-height: 1.6; color: var(--ink-2);
  max-width: 52ch; font-family: var(--font);
  padding-left: 26px; border-left: 1px solid var(--line);
}
@media (max-width: 860px) {
  .pullquote { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .pullquote p { max-width: none; }
  .pullquote footer { padding-left: 0; border-left: 0; margin: 0; }
}
.sec--dark .pullquote p { color: #fff; }
.sec--dark .pullquote footer { color: rgba(255,255,255,.66); }

/* ---------------------------------------------------------------- űrlap-kártya */
.formsplit { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(26px, 4vw, 56px); align-items: start; }
.formcard {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 12px rgba(32,33,35,.06), 0 28px 60px rgba(32,33,35,.12);
}
.formcard__head {
  display: flex; align-items: center; gap: 16px;
  padding: 22px clamp(22px, 2.6vw, 32px);
  background: var(--dark); color: #fff;
}
.formcard__head .ico { width: 26px; height: 26px; color: var(--red-bright); flex: none; stroke-width: 1.6; }
.formcard__head b { display: block; font-size: 1.125rem; letter-spacing: -.02em; }
.formcard__head i { display: block; font-style: normal; font-size: .8125rem; color: rgba(255,255,255,.6); margin-top: 3px; }
.formcard__body { padding: clamp(24px, 2.8vw, 34px); }

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

/* ---------------------------------------------------------------- lábléc: telephelyek */
.ftr__sites { list-style: none; margin: 0; padding: 0; }
.ftr__sites > li { margin-bottom: 20px; }
.ftr__sites > li:last-child { margin-bottom: 0; }
.ftr__sites b {
  display: block; color: #fff; font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 9px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line-dark);
}
.ftr__sites .ftr__c { display: flex; margin-bottom: 7px; }

/* ---------------------------------------------------------------- jogi dokumentum */
.legal { display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: clamp(28px, 5vw, 68px); align-items: start; }
.legal__toc {
  position: sticky; top: 110px;
  padding: 24px 26px; background: var(--white);
  border: 1px solid var(--line-2); border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.legal__toc h2 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-4); margin-bottom: 14px;
}
.legal__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: tj; }
.legal__toc li { counter-increment: tj; margin-bottom: 2px; }
.legal__toc a {
  display: flex; gap: 10px; padding: 7px 0;
  font-size: .9063rem; line-height: 1.35; color: var(--ink-2); text-decoration: none;
  transition: color .2s var(--ease);
}
.legal__toc a::before {
  content: counter(tj, decimal-leading-zero);
  font-family: var(--font-alt); font-style: italic; font-weight: 600;
  color: var(--red); flex: none; font-size: .875rem;
}
.legal__toc a:hover { color: var(--red); }

.legal__body { max-width: 74ch; }
.legal__note {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px 22px; margin: 0 0 36px;
  background: var(--red-soft); border: 1px solid rgba(166,11,12,.18);
  border-radius: var(--r-md); font-size: .9375rem; color: var(--ink-2);
}
.legal__note .ico { width: 19px; height: 19px; color: var(--red); flex: none; margin-top: 2px; }
.legal__sec { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line-2); }
.legal__sec:last-of-type { border-bottom: 0; }
.legal__sec h2 {
  display: flex; align-items: baseline; gap: 14px;
  font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 14px; scroll-margin-top: 110px;
}
.legal__sec h2 em {
  font-family: var(--font-alt); font-style: italic; font-weight: 600;
  color: var(--red); font-size: 1.05em; flex: none;
}
.legal__sec .prose { max-width: none; }
.legal__sec .prose h3 { margin-top: 1.4em; }
.legal__date {
  margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .875rem; color: var(--ink-4);
}
@media (max-width: 900px) {
  .legal { grid-template-columns: 1fr; }
  .legal__toc { position: static; }
}

/* ---------------------------------------------------------------- mozgás */
.reveal { opacity: 1; }
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; filter: none; }
.js .reveal[data-d="1"] { transition-delay: .09s; }
.js .reveal[data-d="2"] { transition-delay: .18s; }
.js .reveal[data-d="3"] { transition-delay: .27s; }
.js .reveal[data-d="4"] { transition-delay: .36s; }

.js .hero__art { animation: settle 1.15s var(--ease) both .06s; }
@keyframes settle {
  from { opacity: 0; transform: translateY(26px) scale(.985); filter: blur(9px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.js .hero__copy > * { animation: rise .85s var(--ease) both; }
.js .hero__copy > *:nth-child(1) { animation-delay: .04s; }
.js .hero__copy > *:nth-child(2) { animation-delay: .13s; }
.js .hero__copy > *:nth-child(3) { animation-delay: .22s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------------------------------------------------------------- reszponzív */
@media (max-width: 1080px) {
  .hero__in { grid-template-columns: 1fr; min-height: 0; }
  .hero__panel { display: none; }
  .hero__badge { left: 14px; bottom: 14px; padding: 12px 18px 12px 14px; gap: 12px; }
  .hero__badge svg { width: 28px; height: 28px; }
  .hero__badge b { font-size: 1.125rem; }
  .hero__art img { aspect-ratio: 16 / 10; }
  .hero__copy { max-width: 40rem; }
  .hero__art { max-width: 620px; margin-inline: auto; }

  .ftr__in { grid-template-columns: 1fr 1fr; gap: 34px; }
  .why { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) {
  .faqsplit { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 980px) {

  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
  .trust__in { grid-template-columns: 1fr 1fr; }
  .trust__i { padding: 26px 18px; }
  .trust__i:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust__i:nth-child(n+3) { border-top: 1px solid var(--line); }
  .mats { grid-template-columns: 1fr; }
  .mat__img { aspect-ratio: 16 / 9; }
  .proc__steps { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .proc__step:nth-child(2)::before, .proc__step:nth-child(2)::after { display: none; }
  .revs { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps__i { padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .steps__i:first-child { padding-top: 0; border-top: 0; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .mapcard--tall { aspect-ratio: 16 / 11; }
  .mapcard--wide { aspect-ratio: 16 / 10; }
  .sites { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__i { padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .why__i:first-child { padding-top: 4px; border-top: 0; }
  .why__i:nth-child(n+3) { padding-top: 22px; }
  .ftr__in { grid-template-columns: 1fr; gap: 30px; }
  .cta__in { flex-direction: column; align-items: flex-start; }
  .faq__a { padding-right: 8px; }
  .hero h1 .serif-it { font-size: 1em; }
}
@media (max-width: 520px) {
  .proc__steps { grid-template-columns: 1fr; gap: 0; }
  .proc__step { padding: 0 0 30px 92px; min-height: 92px; }
  .proc__n { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .proc__step::before {
    left: 33px; right: auto; top: 74px; bottom: 6px; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg,
      rgba(255,255,255,.34) 0 7px, rgba(255,255,255,0) 7px 15px);
  }
  .proc__step::after {
    right: auto; left: 28px; top: auto; bottom: -4px;
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-top: 8px solid rgba(255,255,255,.4); border-bottom: 0;
  }
  .trust__in { grid-template-columns: 1fr 1fr; }
  .trust__i { padding: 22px 14px; }
  .trust__i svg { width: 36px; height: 36px; margin-bottom: 12px; }
  .trust__i b { font-size: 1.5rem; }
  .trust__i span { font-size: .9375rem; }
  .btn { padding: 13px 22px; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}

@media print {
  .hdr, .cta, .burger, .mobnav { display: none; }
  body { background: #fff; }
}


/* =========================================================================
   WordPress / Elementor illesztés
   A szekciókat a saját widgetjeink rajzolják, ezért az Elementor konténerek
   nem tehetnek rá se szélességet, se belső margót.
   ========================================================================= */
.fc-sec > .elementor-widget-container,
.elementor-widget-container > .fc-sec { display: block; }
.e-con > .e-con-inner { max-width: none; }
.elementor-widget:not(:last-child) { margin-block-end: 0; }
body:not(.elementor-editor-active) .elementor-element { --widgets-spacing: 0px; }

/* Hello Elementor alapok kiiktatása */
.site-header, .site-footer { display: none; }
main.site-main, .page-content { margin: 0; padding: 0; }
.hentry { margin: 0; }

/* szerkesztőben legyen fogható a widget */
.elementor-editor-active .fc-sec { min-height: 40px; }

/* Ragadós fejléc az Elementor téma-készítőben.
   A .hdr önmagában nem tudna hova ragadni: a szülő konténere pont olyan magas,
   mint ő. Ezért a teljes fejléc-helyet tesszük ragadóssá, negatív `top`-pal —
   így a felső sáv kigördül a képből, a fejléc pedig fentmarad. */
.elementor-location-header {
  position: sticky;
  top: calc(-1 * var(--fc-topbar-h, 42px));
  z-index: 90;
}
.elementor-location-header .hdr { position: static; }
body.admin-bar .elementor-location-header { top: calc(32px - var(--fc-topbar-h, 42px)); }
@media (max-width: 782px) {
  body.admin-bar .elementor-location-header { top: calc(46px - var(--fc-topbar-h, 42px)); }
}
/* A ragadós elem fölé semmi ne kerüljön a szekciókból. */
.fc-sec { z-index: auto; }

/* képarány-tartás, ha az Elementor lazy-load közbeszól.
   Kivéve azokat, amelyek abszolút pozícióval, cover-rel töltenek ki egy dobozt —
   azoknak 100% magasság kell, különben csak a képarányuk szerinti sávot foglalják. */
.fc-sec img { height: auto; }
.fc-sec .slider__img,
.fc-sec .proc__art,
.fc-sec .phead__bg,
.fc-sec .mapcard img { height: 100%; }
