/* Brand color tokens — override via Live Edit Style Editor */
:root {
  --primary-color: #ffffff;
  --accent-color: #15724a;
  --bg-color: #ffffff;
  --text-color: #1f2937;
}


/* =====================================================================
   ViLand Clean — megosztott arculat (navy + kék)
   ===================================================================== */
:root {
  /* Microweber Style Editor alias-ok — UGYANARRA az értékre mutatnak, a kinézet NEM változik */
  --primary: var(--navy);
  --dark:    var(--navy-deep);
  --gray:    var(--muted);
  --display: 'Outfit', sans-serif;
  --body:    'Inter', sans-serif;

  /* Brand — navy & blue (referencia szerint) */
  --navy:        #1d3b5c;   /* fő sötétkék — címek, header, gombok */
  --navy-deep:   #142942;   /* lábléc, sötét sáv */
  --navy-soft:   #2b517a;
  --blue:        #4a8bc7;   /* akcent kék — "siker", linkek */
  --blue-bright: #5fa0d6;
  --blue-deep:   #3a74ad;

  /* Lágy hátterek */
  --sky:         #eaf2fa;   /* halvány kék szekció-háttér */
  --sky-2:       #f3f8fc;
  --band:        #e7eff7;   /* világoskék sáv */
  --tint:        #dce9f4;

  /* Szöveg */
  --ink:        #233140;
  --ink-soft:   #3a4856;
  --muted:      #6c7a89;
  --line:       #dde7f0;
  --bg:         #ffffff;

  --shadow-sm: 0 1px 2px rgba(20,45,75,.05), 0 3px 8px rgba(20,45,75,.05);
  --shadow-md: 0 6px 18px rgba(20,45,75,.08), 0 16px 40px rgba(20,45,75,.07);
  --shadow-lg: 0 12px 30px rgba(20,45,75,.10), 0 30px 60px rgba(20,45,75,.10);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --section-pad: 110px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.5rem, 4.8vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0; color: var(--ink-soft); text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex; align-items: center; justify-content: flex-start;
  height: 84px; gap: 0;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 56px; width: auto; display: block; }

nav.main { margin-left: auto; }
nav.main ul { display: flex; align-items: center; gap: 4px; }
nav.main a {
  display: inline-block; padding: 9px 15px;
  font-size: 0.95rem; font-weight: 600; color: var(--ink-soft);
  border-radius: 8px; transition: color .2s ease, background .2s ease;
  font-family: 'Outfit', sans-serif; letter-spacing: -0.005em;
}
nav.main a:hover { color: var(--navy); background: var(--sky); }
nav.main a.active { color: var(--navy); }
nav.main a.active::after {
  content: ""; display: block; height: 2.5px; border-radius: 2px;
  background: var(--blue); margin-top: 5px;
}
.nav-right { display: flex; align-items: center; gap: 18px; margin-left: 28px; }

.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  align-items: center; justify-content: center; color: var(--navy);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 8px 20px rgba(29,59,92,.28);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,59,92,.34); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-deep); background: var(--sky-2); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(74,139,199,.3); }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--sky); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

/* ---------- SECTION HEADERS ---------- */
.section { padding: var(--section-pad) 0; }
.section.tight { padding: 80px 0; }
.section.sky { background: var(--sky); }
.section.sky2 { background: var(--sky-2); }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-tag {
  display: inline-block; color: var(--blue-deep); background: var(--sky);
  padding: 7px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}
.section.sky .section-tag, .section.sky2 .section-tag { background: #fff; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.06rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex; flex-direction: column;
  background:
    radial-gradient(ellipse 58% 62% at 94% 24%, rgba(95,160,214,.12) 0%, rgba(95,160,214,0) 60%),
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 68%);
}
.hero-top { position: relative; flex: 1; display: flex; align-items: center; min-height: 420px; }
.hero-inner {
  position: relative; z-index: 2; width: 100%; padding-top: 40px; padding-bottom: 40px;
}
.hero-features { position: relative; z-index: 2; padding: 18px 32px 52px; }
.hero-text { max-width: 540px; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { line-height: 1.06; }
.hero h1 .accent { color: var(--blue); }
.hero-sub { margin-top: 26px; font-size: 1.1rem; color: var(--ink-soft); max-width: 480px; }
.hero-sub + .hero-sub { margin-top: 16px; }
.hero-ctas { margin-top: 38px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Hero visual — full-bleed photo a jobb szélig (csak a felső részben) */
.hero-photo-bleed {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 1;
  width: 50%; overflow: hidden;
}
.hero-photo-bleed img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* lágy átmenet a szöveg felőli oldalon — a kép beleolvad a világos háttérbe */
.hero-photo-bleed::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, #f7fbfe 0%, rgba(247,251,254,.7) 20%, rgba(247,251,254,.16) 40%, rgba(247,251,254,0) 58%);
}

/* ---------- FEATURE ROW (megbízhatóság, minőség…) ---------- */
.features { background: var(--bg); padding: 76px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  text-align: center; padding: 8px 22px; position: relative;
}
.feature + .feature::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: var(--line);
}
.feature .ficon {
  width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 20px;
  background: var(--sky); color: var(--blue-deep); display: grid; place-items: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s ease, color .3s ease;
}
.feature:hover .ficon { background: var(--navy); color: #fff; transform: translateY(-4px); }
.feature .ficon svg { width: 36px; height: 36px; }
.feature h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* one-by-one entrance */
.feature.pop { opacity: 0; transform: translateY(22px) scale(.96); }
.feature.pop.in { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }

/* ---------- TRUST BAND (kék sáv) ---------- */
.trust-band { padding: 56px 0; background: var(--bg); }
.trust-band .inner {
  background: var(--band); border-radius: var(--radius-lg);
  padding: 40px 48px; display: grid; grid-template-columns: auto 1fr auto;
  gap: 36px; align-items: center;
}
.trust-band .bicon {
  width: 96px; height: 96px; border-radius: 24px; background: var(--navy);
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
}
.trust-band .bicon svg { width: 46px; height: 46px; }
.trust-band h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.trust-band p { color: var(--ink-soft); font-size: 1rem; max-width: 520px; }
.trust-band .script {
  font-family: 'Caveat', cursive; font-size: 2.1rem; line-height: 1.15;
  color: var(--blue-deep); font-weight: 600; text-align: right; white-space: nowrap;
}

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
  aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow-md);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-values { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; }
.about-value { display: flex; gap: 14px; align-items: flex-start; }
.about-value-icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--sky);
  color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0;
}
.about-value-icon svg { width: 21px; height: 21px; }
.about-value h4 { font-size: 1rem; font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.about-value p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--tint); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 15px; background: var(--sky);
  color: var(--blue-deep); display: grid; place-items: center; margin-bottom: 22px;
  transition: background .25s ease, color .25s ease;
}
.service-card:hover .service-icon { background: var(--navy); color: #fff; }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.18rem; color: var(--navy); }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.service-link {
  margin-top: 18px; color: var(--blue-deep); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  transition: gap .2s ease; font-family: 'Outfit', sans-serif;
}
.service-card:hover .service-link { gap: 11px; }
.service-link svg { width: 15px; height: 15px; }

/* expandable detail (services page) */
.service-detail {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.3,.9,.3,1), margin-top .4s ease;
  margin-top: 0;
}
.service-detail > div { overflow: hidden; }
.service-card.open .service-detail { grid-template-rows: 1fr; margin-top: 18px; }
.service-detail p { font-size: 0.92rem; color: var(--ink-soft); }
.service-detail ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.service-detail li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.service-detail li svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.service-card.open .service-link svg { transform: rotate(90deg); }

/* ---------- STATS ---------- */
.stats {
  padding: 96px 0; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--navy-deep) 0%, var(--navy) 45%, #244a72 70%, var(--navy-deep) 100%);
  background-size: 240% 240%; animation: bandShift 22s ease-in-out infinite;
}
.stats::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,160,214,.22) 0%, rgba(95,160,214,0) 70%);
  right: -180px; top: -200px; pointer-events: none;
}
@keyframes bandShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@media (prefers-reduced-motion: reduce){ .stats { animation: none; } }
.stats .container { position: relative; z-index: 1; }
.stats-head { text-align: center; margin-bottom: 54px; }
.stats-head h2 { color: #fff; }
.stats-head p { color: rgba(255,255,255,.72); margin-top: 14px; font-size: 1.05rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { text-align: center; padding: 0 12px; }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: #fff;
}
.stat-num .suf { color: var(--blue-bright); margin-left: 2px; }
.stat-label { margin-top: 16px; color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.5; font-weight: 500; }

/* ---------- REFERENCES ---------- */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ref-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ref-photo { aspect-ratio: 16/11; overflow: hidden; background: var(--sky); }
.ref-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.ref-card:hover .ref-photo img { transform: scale(1.05); }
.ref-body { padding: 22px 24px 26px; }
.ref-cat {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 8px; font-family: 'Outfit', sans-serif;
}
.ref-body h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 7px; }
.ref-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* category filter pills */
.ref-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.ref-filter button {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--ink-soft);
  background: #fff; transition: all .2s ease;
}
.ref-filter button:hover { border-color: var(--blue); color: var(--blue-deep); }
.ref-filter button.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- JOB CTA ---------- */
.job-cta {
  color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--navy-deep) 0%, var(--navy) 42%, #2b5c8e 72%, var(--navy-deep) 100%);
  background-size: 240% 240%; animation: bandShift 20s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){ .job-cta { animation: none; } }
.job-cta::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,160,214,.3) 0%, rgba(95,160,214,0) 70%);
  right: -150px; top: -200px; pointer-events: none;
}
.job-cta .container { position: relative; z-index: 1; }
.job-cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.job-cta h2 { color: #fff; }
.job-cta p { color: rgba(255,255,255,.85); margin-top: 18px; font-size: 1.06rem; max-width: 540px; }
.job-perks { margin-top: 28px; display: flex; gap: 26px; flex-wrap: wrap; }
.job-perk { display: flex; align-items: center; gap: 9px; font-size: 0.95rem; color: rgba(255,255,255,.92); font-weight: 500; }
.job-perk svg { width: 19px; height: 19px; color: var(--blue-bright); }
.job-cta-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 34px; font-size: 1.02rem; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: var(--sky-2); border-radius: var(--radius); border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-method:hover { border-color: var(--blue); transform: translateX(4px); }
.contact-method-icon {
  width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--blue-deep);
  display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.contact-method-icon svg { width: 21px; height: 21px; }
.contact-method-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.contact-method-value { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--navy); font-size: 1.05rem; margin-top: 2px; }

/* follow us — bigger facebook */
.follow { margin-top: 8px; }
.follow .label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 14px; }
.social-fb {
  display: inline-flex; align-items: center; gap: 14px; padding: 16px 26px 16px 18px;
  border-radius: 16px; background: var(--sky-2); border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.social-fb:hover { border-color: var(--blue); transform: translateY(-2px); background: #fff; }
.social-fb .fb-ic {
  width: 56px; height: 56px; border-radius: 14px; background: #1877F2; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.social-fb .fb-ic svg { width: 30px; height: 30px; }
.social-fb .fb-tx b { font-family: 'Outfit', sans-serif; color: var(--navy); font-size: 1.05rem; display: block; }
.social-fb .fb-tx span { font-size: 0.86rem; color: var(--muted); }

/* Form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--navy); }
.form-card > p { color: var(--muted); margin-bottom: 26px; font-size: 0.96rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-family: 'Outfit', sans-serif; }
.field label .req { color: var(--blue); margin-left: 2px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; font-family: 'Inter', sans-serif; font-size: 0.98rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(74,139,199,.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* contact custom_fields (admin-editable) — mirror .field styling onto MW field markup */
.vc-fields .mw-ui-field-holder { margin-bottom: 18px; }
.vc-fields .mw-ui-label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-family: 'Outfit', sans-serif; }
.vc-fields .mw-ui-field, .vc-fields .form-select, .vc-fields input, .vc-fields select, .vc-fields textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; font-family: 'Inter', sans-serif; font-size: 0.98rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vc-fields .mw-ui-field:focus, .vc-fields .form-select:focus, .vc-fields input:focus, .vc-fields select:focus, .vc-fields textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(74,139,199,.15);
}
.vc-fields textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px 24px; font-size: 1.02rem; }
.form-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); text-align: center; }
.form-success {
  display: none; padding: 18px 20px; background: #E8F5EE; color: #15724a;
  border-radius: 10px; margin-bottom: 18px; font-size: 0.94rem; font-weight: 500;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, #f6fafd 0%, var(--sky) 100%);
  padding: 72px 0 76px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(95,160,214,.18), rgba(95,160,214,0) 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.breadcrumb a:hover { color: var(--blue-deep); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }
.page-hero p { margin-top: 18px; color: var(--ink-soft); font-size: 1.12rem; max-width: 620px; }

/* ---------- FOOTER ---------- */
.contact-bar { background: var(--navy-deep); color: #fff; }
.contact-bar .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; flex-wrap: wrap;
}
.contact-bar a, .contact-bar span.cb {
  display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.92);
  font-size: 0.98rem; font-weight: 500;
}
.contact-bar .cb-ic { color: var(--blue-bright); display: grid; place-items: center; }
.contact-bar .cb-ic svg { width: 20px; height: 20px; }
.contact-bar .sep { width: 1px; height: 28px; background: rgba(255,255,255,.16); }
.contact-bar a:hover { color: #fff; }

.site-footer { background: #0f2235; color: rgba(255,255,255,.7); padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.footer-brand .logo img { height: 58px; }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,.6); font-size: 0.94rem; max-width: 320px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Outfit', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.64); font-size: 0.94rem; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,.6); font-size: 0.93rem; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; transition: background .2s ease; }
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 0.86rem; color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: #fff; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  :root { --section-pad: 76px; }
  .hero { display: block; min-height: 0; }
  .hero-top { display: block; }
  .hero-inner { padding: 44px 0 36px; }
  .hero-text { max-width: none; }
  .hero-photo-bleed { position: static; width: 100%; height: 360px; }
  .hero-photo-bleed::before { display: none; }
  .hero-features { padding: 36px 32px 8px; }
  .about-grid, .contact-grid, .job-cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .feature + .feature::before { display: none; }
  .services-grid, .ref-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-band .inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .trust-band .bicon { margin: 0 auto; }
  .trust-band p { margin: 0 auto; }
  .trust-band .script { text-align: center; white-space: normal; }
  .job-cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  nav.main ul, .nav-right .btn { display: none; }
  .menu-toggle { display: flex; }
  nav.main.open ul {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 84px; left: 0; right: 0; background: #fff;
    border-top: 1px solid var(--line); padding: 16px; gap: 4px; box-shadow: var(--shadow-md);
  }
  nav.main.open ul a { padding: 14px 16px; }
  .contact-bar .sep { display: none; }
  .contact-bar .inner { gap: 16px 28px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .features-grid, .services-grid, .ref-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .trust-band .inner { padding: 32px 24px; }
}



/* === MW Live Edit overrides (auto-generated) === */

.mw-admin-live-edit-page [data-layout-container] { min-height: 0 !important; }

.brand img, .nav-logo img, .logo img { max-width: 48px; max-height: 48px; width: auto; height: auto; object-fit: contain; }
.f-brand .logo img, footer .logo img { max-width: 40px; max-height: 40px; }

.image-slot-canonicalized { width: 100%; height: auto; display: block; }
.image-slot-shape-circle { border-radius: 50%; }

/* === Nav <ul><li> bullet suppression (auto-generated) === */
nav.nav ul, .nav ul, header nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2px; align-items: center;
}
nav.nav ul li, .nav ul li, header nav ul li {
  list-style: none; margin: 0; padding: 0;
}
nav.nav ul li::marker, header nav ul li::marker { content: none; }

/* === Multilanguage MW module — link-list clean skin (auto-generated) === */
.lang-mw, .mw-lang-switch { display: inline-block; position: relative; font-size: 12.5px; letter-spacing: .08em; }
.mw-lang-current {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: var(--light, #fff); border-radius: 6px;
  padding: 6px 10px 6px 12px; font: inherit; cursor: pointer;
  text-transform: uppercase; line-height: 1;
}
.mw-lang-current:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }
.mw-lang-current .mdi { font-size: 16px; opacity: 0.75; }
.mw-lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 80px;
  list-style: none; margin: 0; padding: 6px 0;
  background: rgba(8, 32, 62, 0.96);
  border: 1px solid var(--line-dark, rgba(255,255,255,0.15));
  border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  display: none; z-index: 50;
}
.mw-lang-menu.is-open { display: block; }
.mw-lang-menu li { list-style: none; padding: 0; margin: 0; }
.mw-lang-link {
  display: block; padding: 8px 14px;
  color: var(--light, #fff); text-decoration: none;
  text-transform: uppercase; white-space: nowrap;
}
.mw-lang-link:hover { background: rgba(255,255,255,0.08); }
.mw-lang-fullname { display: none; }

.mw-admin-live-edit-page .reveal {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.mw-admin-live-edit-page .hero-sub,
.mw-admin-live-edit-page .hero-ctas,
.mw-admin-live-edit-page .hero-photo {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}


/* add-generator-hardening: hero full-viewport rules (override of upstream defaults) */
.hero { min-height: 100vh; padding: 0; display: flex; }
.hero .mw-layout-container { flex: 1; padding: 40px 0; }


/* add-generator-hardening: Posts module wrapper transparency.
   The `<div class="module module-posts">` wrapper MW injects between the
   section container and the skin output breaks `parent > child` selectors
   from the source design. Two-part fix: (a) `display:contents` so the box
   model is transparent, and (b) class-level selectors so flex/grid layout
   matches regardless of wrapper depth. */
.module-posts { display: contents; }

/* Class-level flex/grid layouts — match regardless of `.module-posts` depth. */
.carousel-track { display: flex; }
.carousel-track > article.carousel-slide,
.carousel-track > .carousel-slide { flex: 0 0 100%; width: 100%; }


/* ===== MDI-SVG-INFLATE-FIX ===== */
/* MW Live Edit inflates `<i class="mdi …">` to inline <svg viewBox="0 0 24 24">
   without width/height — without these rules the SVG fills its parent. */
.mdi svg { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.125em; }
i.mdi svg, .mdi > svg { width: 1em; height: 1em; }


/* ===== STATIC-PAGE-CLEARANCE-BLOCK ===== */
/* Static pages (subtype=static) bypass inner.php and inject content
   directly into the body. Without padding the fixed header overlaps. */
body.page-impresszum > .main-content { padding-top: 80px; }
body.page-adatvedelmi > .main-content { padding-top: 80px; }


/* ===== FONT-COLOR-RUNTIME-OVERRIDE ===== */
/* Live Edit inserts inline <font color="…">; override to brand color
   non-destructively. !important is required (inline attribute beats rules). */
font[color] { color: var(--brand) !important; }

/* ===== MW LAYOUT WRAPPER TRANSPARENCY ===== */
section > .mw-layout-container { display: contents; }
.edit.allow-drop { display: none !important; }

/* ===== MW MENU MODULE STYLING + DROPDOWN ===== */
/* MW renders <ul class="menu-root"> + <li><a class="menu_element_link">.
   Nested <ul> = dropdown (have-submenu li). Claude-emit `.menu a:hover`
   NEM matchel az MW renderre. */
.site-header .module-menu { display: flex; }
.site-header .module-menu > ul {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; align-items: center;
}
.site-header .module-menu > ul > li { position: relative; list-style: none; }
.site-header .module-menu li::marker { content: none; }
.site-header .module-menu .menu_element_link {
  text-decoration: none;
  white-space: nowrap;
  /* color / padding / font az `nav.primary a` Claude-emit szabálytól örökölt */
}
.site-header .module-menu .have-submenu-link::after {
  content: " \25BE"; font-size: 11px; opacity: 0.7; margin-left: 4px;
}
/* Dropdown (nested ul) */
.site-header .module-menu ul ul {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  display: none; flex-direction: column;
  background: #fff; color: #1a1a2e;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  border-radius: 12px; padding: 8px; margin: 6px 0 0 0;
  z-index: 100; gap: 2px; list-style: none;
}
.site-header .module-menu > ul > li:hover > ul,
.site-header .module-menu > ul > li:focus-within > ul { display: flex; }
.site-header .module-menu ul ul li { width: 100%; list-style: none; }
.site-header .module-menu ul ul .menu_element_link {
  display: block; border-radius: 8px; padding: 8px 14px;
  font-size: 14px; font-weight: 400; white-space: normal; color: inherit;
}

/* ===== MW .element CLASS HEADING-FONT FIX (2026-06-11) ===== */
h1.element, h2.element, h3.element, h4.element,
.edit h1, .edit h2, .edit h3, .edit h4,
.main-content h1, .main-content h2, .main-content h3, .main-content h4 {
  font-family: var(--display) !important;
}


/* DSP compliance footer-block — vilandcelan-new */
:root { --dsp-logo-height: 141px; }
.vilandcelan-new-dsp { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 24px 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dsp-compliance-wrap { }
.vilandcelan-new-dsp .dsp-logos { display: flex; align-items: center; gap: 50px; }
.vilandcelan-new-dsp .dsp-logo { height: var(--dsp-logo-height); width: auto; padding: 10px; display: block; }
.vilandcelan-new-dsp .dsp-logo-link { display: inline-block; line-height: 0; }
.vilandcelan-new-dsp .dsp-statement { max-width: 720px; text-align: center; font-size: 0.875rem; line-height: 1.5; margin: 0; color: #fff; }
@media (max-width: 1024px) {
  .vilandcelan-new-dsp .dsp-logos { gap: 32px; }
}
@media (max-width: 768px) {
  .vilandcelan-new-dsp .dsp-logos { gap: 20px; flex-wrap: wrap; justify-content: center; }
}


/* ===== LEGAL-PAGES-DEFAULT-STYLES ===== */
/* Impresszum + Adatvédelmi page styling (add-default-legal-pages-v2 — rk-teto pattern). */
.impresszum-wrap, .adatvedelmi-wrap { max-width: 980px; margin: 0 auto; padding: 32px 20px 80px; line-height: 1.65; color: #4a4a4a; }

/* Intro box — left brand-border, soft gray bg. */
.impresszum-intro-box, .adatvedelmi-intro-box {
  background: #f5f5f5;
  border-left: 4px solid var(--primary, currentColor);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 0 0 48px;
  line-height: 1.75;
}
.impresszum-intro-box p, .adatvedelmi-intro-box p { margin: 0; }

/* Section heading — UPPERCASE + MDI-icon + thin divider. */
.impresszum-section, .adatvedelmi-section { margin: 48px 0; }
.impresszum-h2, .adatvedelmi-h2 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a;
}
.impresszum-h2 > i, .adatvedelmi-h2 > i { color: var(--primary, currentColor); font-size: 1.4em; line-height: 1; }

/* Card grid for identity data (Üzemeltető / Adatkezelő). */
.impresszum-grid, .adatvedelmi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.impresszum-card, .adatvedelmi-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 18px 20px;
}
.impresszum-label, .adatvedelmi-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #888;
  font-weight: 600;
  margin-bottom: 8px;
}
.impresszum-value, .adatvedelmi-value { color: #1a1a1a; font-weight: 500; }
.adatvedelmi-value a { color: inherit; text-decoration: none; }
.adatvedelmi-value a:hover { text-decoration: underline; }

/* TODO placeholders — italic + brand color. */
.impresszum-todo, .adatvedelmi-todo {
  color: var(--primary, currentColor) !important;
  font-style: italic;
  font-weight: 500;
}

/* Pill-style contact links. */
.impresszum-contact-row, .adatvedelmi-contact-row { display: flex; flex-wrap: wrap; gap: 12px; }
.impresszum-pill, .adatvedelmi-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 14px 22px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
}
.impresszum-pill > i, .adatvedelmi-pill > i { color: var(--primary, currentColor); font-size: 1.15em; }
.impresszum-pill:hover, .adatvedelmi-pill:hover { background: #fafafa; }

/* Lists (Adatvédelmi célok + Érintetti jogok). */
.adatvedelmi-list { padding-left: 22px; margin: 0; }
.adatvedelmi-list li { margin: 6px 0; }

/* Body paragraphs in legal sections. */
.impresszum-section > p, .adatvedelmi-section > p { margin: 0; }

/* Footer legal-link visibility (B4) — visible on dark footers. */
.footer .footer-bottom-links, .footer-bottom-links {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; letter-spacing: .06em;
  color: var(--light, #ffffff);
}
.footer .footer-bottom-links a, .footer-bottom-links a,
.footer .footer-bottom-links .footer-legal-link, .footer-bottom-links .footer-legal-link {
  color: inherit; text-decoration: none;
}
.footer .footer-bottom-links .footer-legal-link:hover,
.footer-bottom-links .footer-legal-link:hover { text-decoration: underline; }
.footer-legal-sep { opacity: 0.5; margin: 0 4px; user-select: none; }

@media (max-width: 640px) {
  .impresszum-wrap, .adatvedelmi-wrap { padding: 24px 16px 60px; }
  .impresszum-grid, .adatvedelmi-grid { grid-template-columns: 1fr; }
  .impresszum-section, .adatvedelmi-section { margin: 36px 0; }
}


/* ===== subpage CSS (multi-page consolidation) ===== */
.perks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.perk-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }

.perk-card .pk-ic { width:50px;height:50px;border-radius:13px;background:var(--sky);color:var(--blue-deep);display:grid;place-items:center;margin-bottom:16px; }

.perk-card .pk-ic svg { width:24px;height:24px; }

.perk-card h3 { color:var(--navy); font-size:1.05rem; margin-bottom:6px; }

.perk-card p { color:var(--muted); font-size:0.9rem; line-height:1.5; }

.positions { display: flex; flex-direction: column; gap: 16px; }

.position {
    background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 0;
    box-shadow: var(--shadow-sm); transition: border-color .2s ease, box-shadow .3s ease; overflow: hidden;
  }

.position:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }

.position.open { border-color: var(--blue); box-shadow: var(--shadow-md); }

.pos-head {
    width: 100%; display: flex; align-items: center; gap: 20px; justify-content: space-between;
    padding: 26px 30px; text-align: left; background: none;
  }

.position h3 { color: var(--navy); font-size: 1.22rem; margin-bottom: 6px; }

.position .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

.position .tag {
    font-size: 0.8rem; font-weight: 600; color: var(--blue-deep); background: var(--sky);
    padding: 5px 12px; border-radius: 999px; font-family: 'Outfit', sans-serif;
  }

.position p { color: var(--muted); font-size: 0.95rem; }

.pos-chev {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--sky);
    color: var(--blue-deep); display: grid; place-items: center; transition: transform .35s cubic-bezier(.3,.9,.3,1), background .2s ease, color .2s ease;
  }

.pos-chev svg { width: 22px; height: 22px; }

.position:hover .pos-chev { background: var(--navy); color: #fff; }

.position.open .pos-chev { transform: rotate(180deg); background: var(--navy); color: #fff; }

.pos-detail {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .4s cubic-bezier(.3,.9,.3,1);
  }

.pos-detail > div { overflow: hidden; }

.position.open .pos-detail { grid-template-rows: 1fr; }

.pos-detail-inner { padding: 4px 30px 30px; border-top: 1px solid var(--line); margin-top: 0; }

.pos-detail-inner h4 { color: var(--navy); font-family: 'Outfit', sans-serif; font-size: 0.84rem; letter-spacing: .06em; text-transform: uppercase; margin: 22px 0 12px; }

.pos-detail-inner ul { display: flex; flex-direction: column; gap: 9px; }

.pos-detail-inner li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }

.pos-detail-inner li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }

.pos-detail-inner .lead-p { color: var(--ink-soft); font-size: 1rem; }

.pos-detail-inner .btn { margin-top: 26px; }

.apply-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.apply-grid .pts { display:flex; flex-direction:column; gap:18px; margin-top: 26px; }

.apply-grid .pt { display:flex; gap:14px; align-items:flex-start; }

.apply-grid .pt .ic { width:40px;height:40px;border-radius:11px;background:var(--sky);color:var(--blue-deep);display:grid;place-items:center;flex-shrink:0; }

.apply-grid .pt .ic svg { width:20px;height:20px; }

.apply-grid .pt h4 { color:var(--navy); font-family:'Outfit',sans-serif; font-size:1rem; margin-bottom:3px; }

.apply-grid .pt p { color:var(--muted); font-size:0.92rem; }

@media (max-width:980px){ .perks-grid{grid-template-columns:1fr 1fr} .position{grid-template-columns:1fr; gap:18px} .apply-grid{grid-template-columns:1fr; gap:40px} }

@media (max-width:600px){ .perks-grid{grid-template-columns:1fr} }

.ref-photo { cursor: pointer; }

.lightbox { position: fixed; inset: 0; background: rgba(15,30,45,.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }

.lightbox.open { display: flex; }

.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s ease; }

.lightbox-close:hover { background: rgba(255,255,255,.22); }

.lightbox-close svg { width: 22px; height: 22px; }

.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.story-row + .story-row { margin-top: 96px; }

.story-row.flip .story-visual { order: 2; }

.story-visual { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.story-visual img { width: 100%; height: 100%; object-fit: cover; }

.story-text h2 { margin-bottom: 18px; }

.story-text p + p { margin-top: 16px; }

.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.6; }

.value-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.value-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); }

.value-card .vc-ic { width:56px;height:56px;border-radius:15px;background:var(--sky);color:var(--blue-deep);display:grid;place-items:center;margin-bottom:18px; }

.value-card .vc-ic svg { width:27px;height:27px; }

.value-card h3 { color:var(--navy); font-size:1.15rem; margin-bottom:8px; }

.value-card p { color:var(--muted); font-size:0.94rem; }

@media (max-width:980px){ .story-row{grid-template-columns:1fr;gap:40px} .story-row.flip .story-visual{order:0} .value-cards{grid-template-columns:1fr} }

/* Rólunk CTA — fehér háttér, oldalhoz igazított szövegszín */
  .job-cta.alt {
    background: #fff;
    border-top: 1px solid var(--line);
    animation: none;
  }

.job-cta.alt::before, .job-cta.alt::after { display: none; }

.job-cta.alt h2 { color: var(--navy); }

.job-cta.alt p { color: var(--muted); }

.svc-hint { text-align:center; color:var(--muted); font-size:0.92rem; margin-top:14px; }

.svc-hint b { color: var(--blue-deep); }

/* CTA — fehér háttér, oldalhoz igazított szövegszín */
  .job-cta.alt { background: #fff; border-top: 1px solid var(--line); animation: none; }
