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

/* inlined from ZIP: assets/css/style.css */
/* =========================================================
   Karai Betegszállítás — Orosházi Piéta Bt.
   Arculat: piros / kék / fehér — meleg, gondoskodó, emberi
   Célközönség: 50–60+ — nagy betűk, egyszerű navigáció
   ========================================================= */

:root {
  /* Brand */
  --blue:        #1E5AA8;
  --blue-dark:   #143F78;
  --blue-deep:   #0E2E59;
  --blue-soft:   #E7F0FA;
  --blue-tint:   #F2F7FC;

  --red:         #D23B3B;
  --red-dark:    #B22B2B;
  --red-soft:    #FBEAEA;

  /* Warm neutrals */
  --ivory:       #F8F4EE;
  --cream:       #FBF8F3;
  --line:        #E8DFD2;
  --line-cool:   #DCE6F1;

  --ink:         #1B2733;
  --ink-soft:    #3A4756;
  --muted:       #616E7D;
  --white:       #FFFFFF;

  /* Type */
  --font-head: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", system-ui, -apple-system, sans-serif;

  /* Sizing */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(20, 63, 120, 0.06);
  --shadow:    0 12px 36px rgba(20, 63, 120, 0.10);
  --shadow-lg: 0 26px 60px rgba(14, 46, 89, 0.16);

  --header-h: 92px;

  /* MW token-aliasok (a meglévő értékekre mutatnak — kinézet nem változik) */
  --primary: var(--blue);
  --dark:    var(--blue-deep);
  --gray:    var(--muted);
  --display: var(--font-head);
  --body:    var(--font-body);
}

* { box-sizing: border-box; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.14;
  color: var(--blue-deep);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 92px 0; }
.section--ivory { background: var(--ivory); }
.section--blue { background: var(--blue-tint); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { font-size: 1.22rem; color: var(--ink-soft); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 30px;
  font-family: var(--font-body);
  font-size: 1.16rem;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(210, 59, 59, .28); }
.btn--red:hover { background: var(--red-dark); }

.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(30, 90, 168, .26); }
.btn--blue:hover { background: var(--blue-dark); }

.btn--ghost { background: #fff; color: var(--blue-dark); border-color: var(--line-cool); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--lg { min-height: 68px; font-size: 1.26rem; padding: 0 38px; }
.btn .ico { width: 24px; height: 24px; flex: 0 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-cool);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo (placeholder wordmark — cserélhető a valódi logóra) */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 6px 16px rgba(30,90,168,.28);
}
.logo-mark .cross {
  width: 26px; height: 26px;
  position: relative;
}
.logo-mark .cross::before,
.logo-mark .cross::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 3px;
}
.logo-mark .cross::before { left: 50%; top: 0; width: 8px; height: 100%; transform: translateX(-50%); }
.logo-mark .cross::after  { top: 50%; left: 0; height: 8px; width: 100%; transform: translateY(-50%); }
.logo-mark .dot {
  position: absolute;
  right: -5px; bottom: -5px;
  width: 20px; height: 20px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .lt-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue-deep);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo-text .lt-sub {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink-soft);
  padding: 12px 16px;
  border-radius: 10px;
  transition: color .15s, background .15s;
}
.nav a:hover { text-decoration: none; color: var(--blue-dark); background: var(--blue-soft); }
.nav a.active { color: var(--blue-dark); background: var(--blue-soft); }

.nav a.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
  padding: 11px 22px 11px 16px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(210,59,59,.28);
  transition: transform .15s, background .2s, color .2s;
}
.nav a.header-phone:hover { text-decoration: none; background: var(--red); color: var(--ink-soft); transform: translateY(-1px); }
.header-phone .ph-ico {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid; place-items: center;
}
.header-phone .ph-ico svg { width: 20px; height: 20px; }
.header-phone .ph-label { display: flex; flex-direction: column; line-height: 1.05; }
.header-phone .ph-label small { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 56px; height: 56px;
  border: 2px solid var(--line-cool);
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px; transition: .25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -10%, var(--blue-soft) 0%, rgba(231,240,250,0) 60%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line-cool);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  font-weight: 800;
  font-size: .92rem;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero-badge .pill {
  background: var(--red); color: #fff;
  font-size: .76rem; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--red); }
.hero-lead {
  font-size: 1.34rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-cool);
}
.hero-trust .ht {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--ink-soft); font-size: 1.02rem;
}
.hero-trust .ht .num { font-family: var(--font-head); font-size: 2rem; color: var(--blue); font-weight: 700; line-height: 1; }
.hero-trust .ht svg { width: 30px; height: 30px; color: var(--blue); flex: 0 0 auto; }

.hero-media { position: relative; }
.hero-media .img-ph {
  width: 100%;
  height: 520px;
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
  background: linear-gradient(150deg, var(--blue-soft) 0%, #fff 60%, var(--red-soft) 140%);
  color: var(--blue-dark) !important;
}
.hero-media .float-card {
  position: absolute;
  left: -28px; bottom: 34px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 290px;
}
.hero-media .float-card .fc-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; flex: 0 0 auto;
}
.hero-media .float-card .fc-ico svg { width: 26px; height: 26px; }
.hero-media .float-card b { display: block; color: var(--blue-deep); font-size: 1.04rem; }
.hero-media .float-card span { font-size: .92rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .img-ph {
  width: 100%; height: 480px; box-shadow: var(--shadow);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--blue-soft) 0%, #fff 70%);
  color: var(--blue-dark) !important;
}
.about-media .media-img { display: block; width: 100%; height: 480px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); background: linear-gradient(150deg, var(--blue-soft) 0%, #fff 70%); }
.about-media .est {
  position: absolute;
  right: -24px; top: -24px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.about-media .est b { font-family: var(--font-head); font-size: 2.3rem; line-height: 1; display: block; }
.about-media .est span { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

.about-body h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.about-body .lead { font-size: 1.28rem; color: var(--ink-soft); }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .fi {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex: 0 0 auto;
}
.feature-list .fi svg { width: 24px; height: 24px; }
.feature-list b { color: var(--blue-deep); font-size: 1.1rem; }
.feature-list p { color: var(--muted); font-size: 1.02rem; margin: 2px 0 0; }

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card .svc-ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.svc-card:nth-child(2n) .svc-ico { background: var(--red-soft); color: var(--red); }
.svc-card .svc-ico svg { width: 34px; height: 34px; }
.svc-card h3 { font-size: 1.42rem; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 1.04rem; }

/* Coverage */
.coverage {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(210,59,59,.35) 0%, rgba(210,59,59,0) 70%);
}
.coverage .eyebrow { color: #ffb3b3; position: relative; }
.coverage .eyebrow::before { background: #ffb3b3; }
.coverage h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.5rem); position: relative; }
.coverage p { color: rgba(255,255,255,.82); font-size: 1.16rem; position: relative; }
.coverage-counties { display: grid; gap: 18px; position: relative; }
.county {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 22px 26px;
}
.county .cty-top { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.county .cty-top svg { width: 28px; height: 28px; color: #ffb3b3; }
.county .cty-top b { font-family: var(--font-head); font-size: 1.5rem; }
.county .towns { color: rgba(255,255,255,.78); font-size: 1.02rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.why-card .wc-ico {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center;
}
.why-card:nth-child(odd) .wc-ico { background: var(--blue-soft); color: var(--blue); }
.why-card .wc-ico svg { width: 38px; height: 38px; }
.why-card h3 { font-size: 1.24rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 1rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .ci-phone {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(210,59,59,.28);
  margin-bottom: 24px;
}
.ci-phone small { font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; opacity: .9; }
.ci-phone a {
  display: flex; align-items: center; gap: 16px;
  color: #fff; font-family: var(--font-head);
  font-size: clamp(2rem, 4.4vw, 2.8rem); font-weight: 700;
  margin-top: 10px; letter-spacing: -.01em;
}
.ci-phone a:hover { text-decoration: none; }
.ci-phone .ph-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center; flex: 0 0 auto;
}
.ci-phone .ph-circle svg { width: 30px; height: 30px; }
.ci-phone .note { font-family: var(--font-body); font-size: 1rem; opacity: .92; margin-top: 14px; font-weight: 600; }

.ci-row {
  display: flex; align-items: center; gap: 18px;
  background: #fff;
  border: 1px solid var(--line-cool);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.ci-row .ci-ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex: 0 0 auto;
}
.ci-row .ci-ico svg { width: 28px; height: 28px; }
.ci-row small { font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; color: var(--muted); }
.ci-row b, .ci-row a.ci-val { display: block; font-size: 1.18rem; color: var(--blue-deep); font-weight: 700; }
.ci-row a.ci-val:hover { color: var(--blue); }
.ci-fb .ci-ico { background: #e7eefc; color: #1877F2; }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius-lg);
  padding: 44px 44px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.contact-form > p { color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-weight: 800; font-size: .96rem;
  color: var(--ink-soft); margin-bottom: 8px;
}
.field label .req { color: var(--red); }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 16px 18px;
  border: 2px solid var(--line-cool);
  border-radius: 13px;
  background: var(--blue-tint);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa6b4; }
.field.invalid input, .field.invalid textarea { border-color: var(--red); background: var(--red-soft); }
.field .err { display: none; color: var(--red-dark); font-size: .92rem; font-weight: 700; margin-top: 7px; }
.field.invalid .err { display: block; }

/* === Contact form: MW custom_fields kimenet stílusozása a .field designra (2026-06-22 hot-fix) === */
.contact-form .mw-flex-row { display: flex; flex-wrap: wrap; gap: 0 18px; }
.contact-form .mw-flex-col-md-6 { flex: 0 0 calc(50% - 9px); max-width: calc(50% - 9px); }
.contact-form .mw-flex-col-md-12 { flex: 0 0 100%; max-width: 100%; }
.contact-form .mw-ui-field-holder { margin-bottom: 18px; }
.contact-form .mw-ui-field-holder label { display: block; font-weight: 800; font-size: .96rem; color: var(--ink-soft); margin-bottom: 8px; }
.contact-form .vc-input,
.contact-form .mw-ui-field-holder input,
.contact-form .mw-ui-field-holder textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.1rem; padding: 16px 18px;
  border: 2px solid var(--line-cool); border-radius: 13px; background: var(--blue-tint); color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s; }
.contact-form .mw-ui-field-holder textarea { resize: vertical; min-height: 130px; }
.contact-form .vc-input:focus,
.contact-form .mw-ui-field-holder input:focus,
.contact-form .mw-ui-field-holder textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-soft); }
.contact-form .vc-input::placeholder,
.contact-form .mw-ui-field-holder textarea::placeholder { color: #9aa6b4; }
.contact-form #contact-form .btn { width: 100%; margin-top: 8px; }

.form-note { font-size: .94rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none;
  background: #EAF6EE;
  border: 2px solid #BfE3CB;
  border-radius: 16px;
  padding: 26px 28px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success .fs-ico {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%; background: #2E9E5B; color: #fff;
  display: grid; place-items: center;
}
.form-success .fs-ico svg { width: 34px; height: 34px; }
.form-success h3 { color: #1f7a44; }
.form-success p { color: #2c6e47; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.78);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid .logo .lt-name { color: #fff; }
.footer-grid .logo-mark { background: rgba(255,255,255,.12); box-shadow: none; }
.footer-about p { margin-top: 18px; font-size: 1.04rem; max-width: 340px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: .92rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.78); font-size: 1.06rem; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg { width: 22px; height: 22px; color: #ffb3b3; flex: 0 0 auto; margin-top: 3px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 26px; font-size: .94rem; color: rgba(255,255,255,.6);
}

/* Placeholder helper note (csak fejlesztéshez/cserélhető adatokhoz) */
.ph-hint {
  display: inline-block;
  background: #FFF4D6;
  color: #8a6d1a;
  border: 1px dashed #E0C04A;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 1px 7px;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { order: -1; }
  .hero-media .img-ph { height: 380px; }
  .about-grid, .contact-grid, .coverage { grid-template-columns: 1fr; }
  .coverage { padding: 40px 34px; gap: 30px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-media .est { right: 12px; }

  /* Mobile nav drawer */
  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--line-cool);
  }
  .nav.mobile-open a { font-size: 1.2rem; padding: 16px 18px; }
  .nav.mobile-open .header-phone {
    display: inline-flex; margin: 8px 0 0; justify-content: center;
  }
  /* menu-module <ul> függőlegesre mobil-nyitott állapotban (különben flex-sor marad) */
  .nav.mobile-open .module-menu { width: 100%; }
  .nav.mobile-open ul, .nav.mobile-open ul.menu-root { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav.mobile-open li { width: 100%; }
  .nav.mobile-open .menu_element_link { display: block; width: 100%; }
}

@media (max-width: 600px) {
  html { font-size: 17px; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 18px; }
  .svc-grid, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 24px; }
  .hero-grid { padding: 56px 0 64px; }
  .hero-media .float-card { left: 0; right: 0; margin: 0 auto; bottom: 14px; }
  .about-media .est { width: 104px; height: 104px; right: 8px; top: -16px; }
  .about-media .est b { font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn, .svc-card, .header-phone { transition: none; }
}


/* ---- Fotó-placeholder (MW-ben valódi képre cserélhető) ---- */
.img-ph { display: grid; place-items: center; text-align: center; gap: 12px; padding: 24px; }
.img-ph svg { width: 56px; height: 56px; color: var(--blue); opacity: .5; }
.img-ph span { font-weight: 800; font-size: .98rem; opacity: .7; }


/* === 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; }


/* 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; }

/* === Hero full-bleed background image + dark overlay (2026-06-22 hot-fix) ===
   A háttérkép a MW background-modulból jön (Live Edit háttér-választó). A
   sötétítő overlay a modul saját .mw-layout-background-overlay rétegén, hogy
   a fehér szöveg mindig olvasható maradjon a feltöltött képen. */
.hero { background: #0d1a36; overflow: hidden; }
.hero .mw-layout-background-node { z-index: 0; }
.hero .mw-layout-background-overlay {
  background: linear-gradient(90deg, rgba(13,26,54,.84) 0%, rgba(13,26,54,.62) 50%, rgba(13,26,54,.34) 100%) !important;
  opacity: 1 !important; z-index: 1; }
.hero .mw-layout-container { position: relative; z-index: 2; }
.hero .hero-copy { position: relative; z-index: 2; }
.hero-grid { grid-template-columns: 1fr; max-width: 680px; padding: 84px 0; }
.hero h1, .hero-lead { color: #fff; }
.hero h1 .accent { color: #ff8f7e; }
.hero-lead { color: rgba(255,255,255,.92); }
.hero-trust .ht { color: #fff; }
.hero-trust .ht .num { color: #fff; }
.hero-trust .ht svg, .hero-trust .ht i { color: #fff; }
.hero .btn--ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.hero .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }


/* 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;
}

/* bullet-icon-normalizer: suppress CSS-pseudo bullets */
.feature-list li::before, .feature-list li::after { content: none !important; }
.feature-list li { padding-left: 0; }
.feature-list li > i.mdi { margin-right: 8px; vertical-align: middle; }


/* DSP compliance footer-block — pietabt-b */
:root { --dsp-logo-height: 141px; }
.pietabt-b-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 { }
.pietabt-b-dsp .dsp-logos { display: flex; align-items: center; gap: 50px; }
.pietabt-b-dsp .dsp-logo { height: var(--dsp-logo-height); width: auto; padding: 10px; display: block; }
.pietabt-b-dsp .dsp-logo-link { display: inline-block; line-height: 0; }
.pietabt-b-dsp .dsp-statement { max-width: 720px; text-align: center; font-size: 0.875rem; line-height: 1.5; margin: 0; }
@media (max-width: 1024px) {
  .pietabt-b-dsp .dsp-logos { gap: 32px; }
}
@media (max-width: 768px) {
  .pietabt-b-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; }
}
