/* ==========================================================
   MérésBiztos - Master Dark
   Alap stíluslap
   ========================================================== */


/* ==========================================================
   1. VÁLTOZÓK
   ========================================================== */

:root {
    --bg: #080c12;
    --panel: #0e141c;
    --text: #f5f6f8;
    --muted: #aeb7c4;
    --orange: #ff7a00;
    --line: rgba(255, 255, 255, 0.09);
    --container: 1344px;
}


/* ==========================================================
   2. ALAPBEÁLLÍTÁSOK
   ========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(255, 122, 0, 0.055),
            transparent 27%
        ),
        var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.mb3-container {
    width: min(var(--container), calc(100% - 38.4px));
    margin-inline: auto;
}


/* ==========================================================
   3. FEJLÉC
   ========================================================== */

.mb3-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 12, 18, 0.93);
    backdrop-filter: blur(11.2px);
    border-bottom: 0.8px solid var(--line);
}

.admin-bar .mb3-header {
    top: 32px;
}

.mb3-header-inner {
    height: 67.2px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22.4px;
}


/* ---------- Márka / logó ---------- */

.mb3-brand {
    display: flex;
    align-items: center;
    gap: 12.8px;
    min-width: 264px;
    margin-left: -16px;
}

.mb3-logo-icon {
    width: 61.2px;
    height: 61.2px;
    object-fit: contain;
}

.mb3-brand-text {
    display: flex;
    flex-direction: column;
}

.mb3-brand-text strong {
    font-size: 22.4px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.mb3-brand-text small {
    margin-top: 5.6px;
    font-size: 11.2px;
    color: #98a1ae;
}


/* ---------- Főmenü ---------- */

.mb3-nav {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 22.4px;
}

.mb3-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 14px;

    color: #f1f3f5;
    font-size: 16px;
    font-weight: 700;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 14px rgba(0, 0, 0, 0.10);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.mb3-nav a:hover {
    background:
        linear-gradient(
            180deg,
            rgba(255, 122, 0, 0.16),
            rgba(255, 122, 0, 0.06)
        );

    border-color: rgba(255, 122, 0, 0.28);

    transform: translateY(-1px);
}

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

.mb3-header-cta {
    margin-left: 0;
    padding: 14.4px 24px;
    border-radius: 11.2px;
    background: linear-gradient(135deg, #ff8a12, #ff6900);
    font-size: 13.6px;
    font-weight: 800;
    white-space: nowrap;
}


/* ---------- Mobil menügomb ---------- */

.mb3-menu-toggle {
    display: none;
    margin-left: auto;
    padding: 6.4px 9.6px;
    border: 0.8px solid var(--line);
    border-radius: 8px;
    background: none;
    color: #fff;
    font-size: 17.6px;
}


/* ==========================================================
   4. HERO / NYITÓSZEKCIÓ
   ========================================================== */

.mb3-hero {
    padding: 43.2px 0 20.8px;
}

/*
 * Két külön oszlop: bal oldalon a szöveg, jobb oldalon a kép.
 * Az align-items:end miatt a két oszlop ALSÓ éle ugyanarra a
 * vízszintes vonalra kerül. Így a 3 információs doboz alja
 * pontosan a jobb oldali kép aljával fut egy vonalban.
 */
.mb3-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 43.2px;
    align-items: end;
}


/* ---------- Bal oldali hero tartalom ---------- */

.mb3-hero-copy {
    min-width: 0;
    align-self: end;
}

/*
 * Csak a hero felső tartalmát emeljük feljebb.
 * A 3 alsó dobozt NEM mozgatjuk, ezért azok alsó igazítása
 * nem tud elcsúszni a jobb oldali képhez képest.
 */
.mb3-eyebrow,
.mb3-hero h1,
.mb3-lead,
.mb3-actions {
    position: relative;
    top: -22px;
}

.mb3-eyebrow {
    margin-bottom: -25px;
    color: var(--orange);
    font-size: 20.4px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.mb3-hero h1 {
    margin: 0 0 17.6px;
    font-size: clamp(31.6px, 5vw, 65.6px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.mb3-lead {
    max-width: 608px;
    margin: 0;
    color: var(--muted);
    font-size: 19.6px;
    line-height: 1.65;
}


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

.mb3-actions {
    display: flex;
    gap: 12.8px;
    margin: 24px 0 18px;
}

.mb3-btn {
    min-height: 44.8px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10.4px;
    font-weight: 800;
}

.mb3-btn-primary {
    background: linear-gradient(135deg, #ff8a12, #ff6900);
    color: #fff;
}

.mb3-btn-outline {
    border: 0.8px solid rgba(255, 122, 0, 0.75);
    color: #fff;
}


/* ---------- Hero alsó három információs doboz ---------- */

.mb3-process-label {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--muted);
}

.mb3-mini-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.mb3-mini-benefits > div {
    position: relative;

    min-height: 88px;
    padding: 15px 16px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    text-align: center;

    border: 0.8px solid var(--line);
    border-radius: 14.4px;
    background: rgba(255, 255, 255, 0.018);
}

/* összekötő vonal */
.mb3-mini-benefits > div:not(:last-child)::after {
    content: "";
    position: absolute;

    width: 22px;
    height: 1px;

    right: -28px;
    top: 50%;

    background: rgba(255, 122, 0, 0.55);
}

/* nyílhegy */
.mb3-mini-benefits > div:not(:last-child)::before {
    content: "";
    position: absolute;

    right: -28px;
    top: calc(50% - 3px);

    width: 6px;
    height: 6px;

    border-top: 1px solid rgba(255, 122, 0, 0.8);
    border-right: 1px solid rgba(255, 122, 0, 0.8);

    transform: rotate(45deg);
}

.mb3-mini-benefits strong {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    height: 25px;

    margin: 0 0 8px;

    font-size: 16px;
    line-height: 1.25;
    text-align: center;
}

.mb3-mini-benefits span {
    display: block;
    width: 100%;

    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

/* ---------- Jobb oldali hero kép ---------- */

.mb3-hero-image {
    min-width: 0;
    align-self: end;
}

.mb3-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.22;
    object-fit: cover;
    border: 0.8px solid var(--line);
    border-radius: 20.8px;
    box-shadow: 0 22.4px 52px rgba(0, 0, 0, 0.28);
}


/* ==========================================================
   5. SZOLGÁLTATÁSKÁRTYÁK
   ========================================================== */

.mb3-services {
    padding: 100px 0 65px;
}

.mb3-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.mb3-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid var(--line);
    border-radius: 17.6px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.035),
        rgba(255, 255, 255, 0.017)
    );
    box-shadow: 0 14.4px 33.6px rgba(0, 0, 0, 0.18);
}

.mb3-card > img {
    display: block;
    width: 100%;
    height: 164px;
    object-fit: cover;
}

.mb3-card-body {
    min-height: 216px;
    padding: 18.4px 18.4px 17.6px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.mb3-card h2 {
    margin: 0 0 11.2px;
    font-size: clamp(22px, 1.7vw, 10px);
	 text-align: center;
    line-height: 1.07;
    letter-spacing: 0.125em;
	word-spacing: 0.525em;
}

.mb3-card p {
    margin: 0 0 14.4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.mb3-card a {
    margin-top: auto;
    color: var(--orange);
    font-size: 18px;
    font-weight: 800;
}


/* ==========================================================
   6. ELŐNYÖK SÁV
   ========================================================== */

.mb3-benefits {
    padding: 6.4px 0 24px;
}

.mb3-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 0.8px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.016);
	text-align: center;
}

.mb3-benefits-grid > div {
    padding: 20px 20.8px;
    border-left: 0.8px solid var(--line);
}

.mb3-benefits-grid > div:first-child {
    border-left: 0;
}

.mb3-benefits strong {
    display: block;
    margin-bottom: 5.6px;
    font-size: 20px;
	text-align: center;
}

.mb3-benefits span {
    color: var(--muted);
    font-size: 15.2px;
	
	    line-height: 1.55;
	
}

/* ==========================================================
   7. GYIK OLDAL
   Csak a GYIK szakasz, NEM teljes theme.css!
   Meglevő elrendezés; nagyobb narancssárga feliratok.
   ========================================================== */

.mb3-faq-page {
    padding: 44px 0 72px;
}

/* ---------- Nyitóblokk ---------- */

.mb3-faq-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 46px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 122, 0, 0.13), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014));
}

.mb3-faq-hero-inner {
    max-width: 900px;
}

.mb3-faq-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.1em;
}

.mb3-faq-hero h1 {
    max-width: 850px;
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.mb3-faq-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ---------- Témakörválasztó ---------- */

.mb3-faq-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 28px;
    margin-top: 30px;
    align-items: start;
}

.mb3-faq-nav {
    position: sticky;
    top: 95px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.018);
}

.mb3-faq-nav-label {
    display: block;
    margin: 0 0 13px 5px;
    color: #77818f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.mb3-faq-nav a {
    min-height: 46px;
    padding: 0 13px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #e9edf2;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mb3-faq-nav a:hover {
    border-color: rgba(255, 122, 0, 0.28);
    background: rgba(255, 122, 0, 0.07);
    transform: translateX(2px);
}

.mb3-faq-nav-count {
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 122, 0, 0.28);
    border-radius: 999px;
    color: var(--orange);
    background: rgba(255, 122, 0, 0.06);
    font-size: 12px;
    font-weight: 800;
}

/* ---------- Témakörök címei ---------- */

.mb3-faq-content {
    min-width: 0;
}

.mb3-faq-group {
    scroll-margin-top: 110px;
    margin-bottom: 38px;
}

.mb3-faq-group:last-child {
    margin-bottom: 0;
}

.mb3-faq-group-head {
    margin-bottom: 15px;
}

.mb3-faq-group-head span {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.09em;
}

.mb3-faq-group-head h2 {
    margin: 0 0 8px;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.mb3-faq-group-head p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ---------- Lenyíló kérdések ---------- */

.mb3-faq-item {
    margin-bottom: 9px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.027), rgba(255, 255, 255, 0.014));
    transition: border-color 0.2s ease, background 0.2s ease;
}

.mb3-faq-item[open] {
    border-color: rgba(255, 122, 0, 0.34);
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.07), rgba(255, 255, 255, 0.018));
}

.mb3-faq-item summary {
    position: relative;
    min-height: 72px;
    padding: 20px 66px 20px 22px;
    display: flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
    color: var(--text);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.4;
}

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

.mb3-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 122, 0, 0.28);
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 122, 0, 0.06);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.mb3-faq-item[open] summary::after {
    content: "\2212";
    color: #111;
    background: var(--orange);
    border-color: var(--orange);
}

.mb3-faq-answer {
    max-width: 850px;
    padding: 0 66px 22px 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.mb3-faq-answer p {
    margin: 0;
}

/* A forráshivatkozások csak a kapcsolódó válasz kinyitásakor jelennek meg. */
.mb3-faq-answer .mb3-faq-source {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.6;
}

.mb3-faq-source a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mb3-faq-source a:hover {
    color: var(--orange);
}

/* ---------- Kis kiemelő címkék ---------- */

.mb3-faq-popular {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: 9px;
    padding: 4px 7px;
    border: 1px solid rgba(255, 122, 0, 0.27);
    border-radius: 999px;
    color: var(--orange);
    background: rgba(255, 122, 0, 0.055);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---------- Alsó kapcsolatfelvételi blokk ---------- */

.mb3-faq-cta {
    margin-top: 34px;
    padding: 30px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 122, 0, 0.34);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.13), transparent 36%),
        linear-gradient(135deg, rgba(255, 122, 0, 0.10), rgba(255, 255, 255, 0.018));
}

.mb3-faq-cta-copy {
    max-width: 720px;
}

.mb3-faq-cta-copy > span {
    display: block;
    margin-bottom: 6px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.1em;
}

.mb3-faq-cta h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.15;
}

.mb3-faq-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.mb3-faq-cta-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
}

.mb3-faq-updated {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

/* Billentyűzetes fókuszjelzés, kizárólag a GYIK oldalon. */
.mb3-faq-page :is(a, summary):focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: -3px;
}

/* ---------- Tablet ---------- */

@media (max-width: 900px) {
    .mb3-faq-page {
        padding-top: 30px;
    }

    .mb3-faq-hero {
        padding: 34px;
    }

    .mb3-faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mb3-faq-nav {
        position: sticky;
        top: 72px;
        z-index: 10;
        padding: 10px;
        display: flex;
        gap: 7px;
        overflow-x: auto;
        background: rgba(8, 12, 18, 0.96);
        backdrop-filter: blur(12px);
        scrollbar-width: none;
    }

    .mb3-faq-nav::-webkit-scrollbar {
        display: none;
    }

    .mb3-faq-nav-label {
        display: none;
    }

    .mb3-faq-nav a {
        flex: 0 0 auto;
        min-height: 40px;
        margin: 0;
        padding: 0 12px;
    }

    .mb3-faq-nav a:hover {
        transform: none;
    }

    .mb3-faq-group {
        scroll-margin-top: 135px;
    }

    .mb3-faq-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- Mobil ---------- */

@media (max-width: 600px) {
    .mb3-faq-page {
        padding: 24px 0 46px;
    }

    .mb3-faq-hero {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .mb3-faq-hero h1 {
        margin-bottom: 14px;
        font-size: 38px;
    }

    .mb3-faq-hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    .mb3-faq-layout {
        margin-top: 18px;
    }

    .mb3-faq-nav {
        margin-inline: -4px;
        border-radius: 13px;
    }

    .mb3-faq-nav-count {
        display: none;
    }

    .mb3-faq-group {
        margin-bottom: 30px;
    }

    .mb3-faq-group-head h2 {
        font-size: 26px;
    }

    .mb3-faq-item summary {
        min-height: 66px;
        padding: 17px 58px 17px 17px;
        font-size: 14px;
    }

    .mb3-faq-item summary::after {
        right: 15px;
        width: 30px;
        height: 30px;
    }

    .mb3-faq-answer {
        padding: 0 17px 19px 17px;
        font-size: 13px;
        line-height: 1.7;
    }

    .mb3-faq-popular {
        display: none;
    }

    .mb3-faq-cta {
        margin-top: 24px;
        padding: 23px 20px;
    }

    .mb3-faq-cta h2 {
        font-size: 25px;
    }

    .mb3-faq-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .mb3-faq-cta-actions .mb3-btn {
        width: 100%;
    }
}


/* ==========================================================
   8. AJÁNLATKÉRÉS CTA
   ========================================================== */

.mb3-cta-section {
    padding: 6.4px 0 33.6px;
}

.mb3-cta-box {
    padding: 23.2px 27.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19.2px;
    border: 0.8px solid rgba(255, 122, 0, 0.38);
    border-radius: 17.6px;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.17),
        rgba(255, 122, 0, 0.065)
    );
}

.mb3-cta-box h2 {
    margin: 0 0 4.8px;
    font-size: 28.8px;
}

.mb3-cta-box p {
    margin: 0;
    color: #e4c7b3;
}


/* ==========================================================
   9. NORMÁL ALoldalak
   ========================================================== */

.mb3-page {
    padding: 46.4px 19.2px 64px;
}

.mb3-page-inner {
    max-width: 784px;
    margin-inline: auto;
    padding: 27.2px;
    border: 0.8px solid var(--line);
    border-radius: 17.6px;
    background: rgba(255, 255, 255, 0.018);
}

.mb3-page h1 {
    margin: 0 0 20.8px;
    font-size: 40px;
}

.mb3-page-content {
    color: var(--muted);
    font-size: 14.4px;
    line-height: 1.8;
}

.mb3-page-content h2,
.mb3-page-content h3 {
    color: var(--text);
}

/* ==========================================================
   10. LÁBLÉC - MÉRÉSBIZTOS
   Ez a teljes 10. LÁBLÉC szakasz cseréje, nem a teljes theme.css.
   Minden szabály az .mbf-footer alá tartozik.
   A fejléc, a főoldal és az aloldalak stílusait nem módosítja.
   ========================================================== */

/* ---------- Keret és elrendezés ---------- */

.mbf-footer {
    --mbf-accent: var(--orange, #ff7a00);
    --mbf-text: var(--text, #f5f6f8);
    --mbf-muted: #aeb7c4;
    --mbf-line: rgba(255, 255, 255, 0.09);

    position: relative;
    isolation: isolate;
    padding: 44px 0 0;
    border-top: 1px solid var(--mbf-line);
    background:
        radial-gradient(
            ellipse at 100% 0%,
            rgba(255, 122, 0, 0.045),
            transparent 42%
        ),
        #0a0f16;
    color: var(--mbf-text);
    font-family: inherit;
    line-height: 1.5;
}

.mbf-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 122, 0, 0.7) 23%,
        rgba(255, 122, 0, 0.12) 65%,
        transparent
    );
}

.mbf-footer .mbf-inner {
    width: min(var(--container, 1344px), calc(100% - 48px));
    margin-inline: auto;
}

.mbf-footer .mbf-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 1fr)
        minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(28px, 3.8vw, 56px);
}

.mbf-footer .mbf-grid > * {
    min-width: 0;
    margin: 0;
}

.mbf-footer a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 122, 0, 0.15);
}

.mbf-footer a:focus-visible {
    outline: 2px solid var(--mbf-accent);
    outline-offset: 5px;
    border-radius: 5px;
}

.mbf-footer svg {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

/* ---------- Márka és szolgáltatási terület ---------- */

.mbf-footer .mbf-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
}

.mbf-footer .mbf-logo {
    display: block;
    width: 48px;
    height: 54px;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center;
}

.mbf-footer .mbf-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mbf-footer .mbf-brand-copy strong {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.mbf-footer .mbf-brand-copy > span {
    color: var(--mbf-muted);
    font-size: 12px;
    line-height: 1.4;
}

.mbf-footer .mbf-description {
    max-width: 360px;
    margin: 20px 0 18px;
    color: var(--mbf-muted);
    font-size: 14px;
    line-height: 1.75;
}

.mbf-footer .mbf-area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 122, 0, 0.18);
    border-radius: 8px;
    background: rgba(255, 122, 0, 0.045);
    color: #e8edf4;
    font-size: 13px;
    font-weight: 600;
}

.mbf-footer .mbf-area svg {
    width: 16px;
    height: 16px;
    color: var(--mbf-accent);
}

.mbf-footer .mbf-area-note {
    margin: 8px 0 0;
    color: var(--mbf-muted);
    font-size: 12px;
    line-height: 1.5;
}

.mbf-footer .mbf-quicklinks {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 0;
    margin-top: 14px;
}

.mbf-footer .mbf-quicklinks a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #dce3eb;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.18s ease;
}

.mbf-footer .mbf-quicklinks a:hover {
    color: var(--mbf-accent);
}

/* ---------- Szolgáltatáslinkek ---------- */

.mbf-footer .mbf-label {
    display: block;
    margin: 0;
    color: var(--mbf-accent);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mbf-footer .mbf-services {
    padding-top: 6px;
}

.mbf-footer .mbf-service-list {
    display: block;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.mbf-footer .mbf-service-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid var(--mbf-line);
}

.mbf-footer .mbf-service-list li:first-child {
    border-top: 1px solid var(--mbf-line);
}

.mbf-footer .mbf-service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 60px;
    padding: 13px 0;
    color: #e1e7ef;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.18s ease;
}

.mbf-footer .mbf-service-list a > span:first-child {
    min-width: 0;
}

.mbf-footer .mbf-link-arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 1px solid var(--mbf-line);
    border-radius: 7px;
    color: #8d99a9;
    background: rgba(255, 255, 255, 0.02);
    transition: color 0.18s ease, border-color 0.18s ease;
}

.mbf-footer .mbf-link-arrow svg {
    width: 15px;
    height: 15px;
}

.mbf-footer .mbf-service-list a:hover,
.mbf-footer .mbf-service-list a:focus-visible {
    color: #fff;
}

.mbf-footer .mbf-service-list a:hover .mbf-link-arrow,
.mbf-footer .mbf-service-list a:focus-visible .mbf-link-arrow {
    color: var(--mbf-accent);
    border-color: rgba(255, 122, 0, 0.5);
}

/* ---------- Kiemelt kapcsolatpanel ---------- */

.mbf-footer .mbf-contact {
    padding: 24px;
    border: 1px solid rgba(255, 122, 0, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(
            ellipse at 100% 0%,
            rgba(255, 122, 0, 0.1),
            transparent 65%
        ),
        rgba(255, 255, 255, 0.02);
}

.mbf-footer .mbf-contact h2 {
    margin: 11px 0 10px;
    color: var(--mbf-text);
    font-size: clamp(23px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.mbf-footer .mbf-contact-intro {
    margin: 0 0 14px;
    color: var(--mbf-muted);
    font-size: 13px;
    line-height: 1.65;
}

.mbf-footer .mbf-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    width: fit-content;
    max-width: 100%;
    line-height: 1.45;
    transition: color 0.18s ease;
}

.mbf-footer .mbf-contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--mbf-accent);
}

.mbf-footer .mbf-contact-link > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.mbf-footer .mbf-phone {
    color: #f6f8fb;
    font-size: 21px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.mbf-footer .mbf-email {
    color: #dce3eb;
    font-size: 14px;
}

.mbf-footer .mbf-contact-link:hover {
    color: var(--mbf-accent);
}

.mbf-footer .mbf-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 48px;
    margin-top: 16px;
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(115deg, #ff8a1c, #ff7a00);
    color: #14110d;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.mbf-footer .mbf-cta:hover {
    background: #ff9b3e;
    box-shadow: 0 6px 22px rgba(255, 122, 0, 0.12);
}

.mbf-footer .mbf-contact-note {
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--mbf-line);
    color: var(--mbf-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* ---------- Alsó jogi sáv és vissza a tetejére ---------- */

.mbf-footer .mbf-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 28px;
    row-gap: 8px;
    margin-top: 34px;
    padding: 14px 0;
    border-top: 1px solid var(--mbf-line);
}

.mbf-footer .mbf-copyright {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 3px;
    margin: 0;
    color: #c2cad5;
    font-size: 12px;
    line-height: 1.7;
}

.mbf-footer .mbf-owner {
    color: #a2adbc;
}

.mbf-footer .mbf-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.mbf-footer .mbf-legal a,
.mbf-footer .mbf-top {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #b8c2cf;
    font-size: 12px;
    line-height: 1.5;
    transition: color 0.18s ease;
}

.mbf-footer .mbf-legal a:hover,
.mbf-footer .mbf-top:hover {
    color: var(--mbf-accent);
}

.mbf-footer .mbf-top {
    gap: 10px;
    flex: 0 0 auto;
}

.mbf-footer .mbf-top svg {
    width: 28px;
    height: 28px;
    padding: 6px;
    border: 1px solid var(--mbf-line);
    border-radius: 50%;
}

/* ---------- Kisebb asztali nézet / tablet ---------- */

@media (min-width: 761px) and (max-width: 1100px) {
    .mbf-footer .mbf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 36px;
        row-gap: 28px;
    }

    .mbf-footer .mbf-about {
        grid-column: 1;
        grid-row: 1;
    }

    .mbf-footer .mbf-services {
        grid-column: 1;
        grid-row: 2;
    }

    .mbf-footer .mbf-contact {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: start;
    }

    .mbf-footer .mbf-description {
        margin-top: 15px;
        margin-bottom: 14px;
    }

    .mbf-footer .mbf-service-list {
        margin-top: 10px;
    }

    .mbf-footer .mbf-service-list a {
        min-height: 52px;
    }
}

/* ---------- Telefon: minden elem a saját láblécünkön belül ---------- */

@media (max-width: 760px) {
    .mbf-footer {
        padding-top: 28px;
    }

    .mbf-footer .mbf-inner {
        width: calc(100% - 32px);
    }

    .mbf-footer .mbf-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mbf-footer .mbf-about {
        grid-row: 1;
    }

    .mbf-footer .mbf-contact {
        grid-row: 2;
        padding: 21px;
        border-radius: 16px;
    }

    .mbf-footer .mbf-services {
        grid-row: 3;
        padding-top: 0;
    }

    .mbf-footer .mbf-logo {
        width: 42px;
        height: 48px;
    }

    .mbf-footer .mbf-brand-copy strong {
        font-size: 27px;
    }

    .mbf-footer .mbf-brand-copy > span {
        font-size: 11px;
    }

    .mbf-footer .mbf-description {
        max-width: 520px;
        margin: 14px 0;
        font-size: 13px;
        line-height: 1.65;
    }

    .mbf-footer .mbf-area-note {
        font-size: 11px;
    }

    .mbf-footer .mbf-quicklinks {
        margin-top: 8px;
    }

    .mbf-footer .mbf-service-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    .mbf-footer .mbf-service-list li,
    .mbf-footer .mbf-service-list li:first-child {
        border: 1px solid var(--mbf-line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.018);
    }

    .mbf-footer .mbf-service-list a {
        height: 100%;
        min-height: 76px;
        padding: 12px;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1.5;
    }

    .mbf-footer .mbf-link-arrow {
        width: 20px;
        height: 20px;
        border: 0;
        background: transparent;
    }

    .mbf-footer .mbf-contact h2 {
        font-size: 26px;
    }

    .mbf-footer .mbf-bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 12px;
        row-gap: 4px;
        margin-top: 28px;
        padding: 16px 0;
    }

    .mbf-footer .mbf-copyright {
        grid-column: 1 / -1;
        font-size: 11px;
        gap: 2px 14px;
    }

    .mbf-footer .mbf-legal {
        grid-column: 1;
    }

    .mbf-footer .mbf-legal a {
        font-size: 11px;
    }

    .mbf-footer .mbf-top {
        grid-column: 2;
        grid-row: 2;
        justify-content: center;
        width: 44px;
        height: 44px;
    }

    .mbf-footer .mbf-top > span {
        display: none;
    }

    .mbf-footer .mbf-top svg {
        width: 34px;
        height: 34px;
        padding: 8px;
    }
}

@media (max-width: 359px) {
    .mbf-footer .mbf-service-list {
        grid-template-columns: 1fr;
    }

    .mbf-footer .mbf-service-list a {
        min-height: 48px;
    }

    .mbf-footer .mbf-contact {
        padding: 18px;
    }

    .mbf-footer .mbf-contact h2 {
        font-size: 24px;
    }

    .mbf-footer .mbf-phone {
        font-size: 19px;
    }
}

/* ---------- Csökkentett mozgás beállítása ---------- */

@media (prefers-reduced-motion: reduce) {
    .mbf-footer a,
    .mbf-footer .mbf-link-arrow {
        transition: none;
    }
}

/* ================== 10. LÁBLÉC VÉGE ================== */


/* ==========================================================
   11. TABLET / KISEBB DESKTOP
   ========================================================== */

@media (max-width: 960px) {

    .mb3-header-inner {
        height: 73.6px;
    }

    .mb3-brand {
        min-width: 232px;
        margin-left: 0;
    }

    .mb3-logo-icon {
        width: 43.2px;
        height: 43.2px;
    }

    .mb3-brand-text strong {
        font-size: 19.2px;
    }

    .mb3-brand-text small {
        font-size: 9.6px;
    }

    .mb3-nav {
        gap: 17.6px;
    }

    .mb3-header-cta {
        margin-left: 12.8px;
        padding: 12px 17.6px;
    }


    .mb3-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mb3-card > img {
        height: 176px;
    }
}


/* ==========================================================
   12. TABLET / MOBIL MENÜ
   ========================================================== */
@media (max-width: 900px) {

    .admin-bar .mb3-header {
        top: 46px;
    }

    .mb3-menu-toggle {
        display: block;
    }

    .mb3-header-inner {
        height: auto;
        min-height: 65.6px;
        padding: 9.6px 0;
        display: grid;
        grid-template-columns: 1fr auto auto;
    }

    .mb3-header-cta {
        margin-left: auto;
    }

    .mb3-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin: 0;
        padding: 9.6px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 11.2px;
    }

    .mb3-nav.is-open {
        display: flex;
    }

    .mb3-hero-grid {
        grid-template-columns: 1fr;
        gap: 22.4px;
        align-items: stretch;
    }

    .mb3-hero-copy,
    .mb3-hero-image {
        align-self: auto;
    }

    .mb3-eyebrow,
    .mb3-hero h1,
    .mb3-lead,
    .mb3-actions {
        top: 0;
    }

    .mb3-hero-image img {
        aspect-ratio: 2.1;
    }

    .mb3-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mb3-benefits-grid > div:nth-child(odd) {
        border-left: 0;
    }

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


/* ==========================================================
   13. MOBIL
   ========================================================== */

@media (max-width: 480px) {

    .mb3-container {
        width: min(100% - 22.4px, var(--container));
    }

    .mb3-brand {
        min-width: 0;
    }

    .mb3-brand-text small {
        display: none;
    }

    .mb3-logo-icon {
        width: 36.8px;
        height: 36.8px;
    }

    .mb3-brand-text strong {
        font-size: 16.8px;
    }

    .mb3-header-cta {
        display: none;
    }

    .mb3-hero {
        padding-top: 27.2px;
    }

    .mb3-hero h1 {
        font-size: 33.6px;
    }

    .mb3-lead {
        font-size: 14.4px;
    }

 .mb3-mini-benefits > div::before,
.mb3-mini-benefits > div::after {
    display: none;
}

    .mb3-services-grid {
        grid-template-columns: 1fr;
    }

    .mb3-card > img {
        height: 168px;
    }

    .mb3-benefits-grid {
        grid-template-columns: 1fr;
    }

    .mb3-benefits-grid > div {
        border-left: 0;
        border-top: 0.8px solid var(--line);
    }

    .mb3-benefits-grid > div:first-child {
        border-top: 0;
    }

    .mb3-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .mb3-footer-bottom {
        flex-direction: column;
        gap: 6.4px;
    }
}


/* ==========================================================
   14. VILLAMOS BIZTONSÁGI FELÜLVIZSGÁLAT OLDAL
   ========================================================== */


/* ---------- Oldal alap ---------- */

.mb3-vbf-page {
    color: var(--text);
}

.mb3-vbf-page h1,
.mb3-vbf-page h2,
.mb3-vbf-page h3,
.mb3-vbf-page p {
    margin-top: 0;
}


/* ==========================================================
   VBF HERO
   ========================================================== */

.mb3-vbf-hero {
    padding: 52px 0 46px;
}

.mb3-vbf-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 46px;
    align-items: stretch;
}

.mb3-vbf-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mb3-vbf-eyebrow {
    margin-bottom: 14px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.mb3-vbf-hero h1 {
    max-width: 780px;
    margin: 0 0 22px;

    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.mb3-vbf-lead {
    max-width: 720px;
    margin-bottom: 26px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}

.mb3-vbf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* ---------- Jobb oldali összefoglaló ---------- */

.mb3-vbf-summary {
    padding: 26px;

    border: 1px solid var(--line);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.08),
            rgba(255, 255, 255, 0.018) 45%
        );
}

.mb3-vbf-summary-label {
    display: block;
    margin-bottom: 18px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mb3-vbf-summary-item {
    padding: 14px 0;

    border-bottom: 1px solid var(--line);
}

.mb3-vbf-summary-item strong {
    display: block;
    margin-bottom: 4px;

    font-size: 16px;
}

.mb3-vbf-summary-item span {
    display: block;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.5;
}

.mb3-vbf-summary-note {
    margin: 18px 0 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================
   ÁLTALÁNOS SZEKCIÓK
   ========================================================== */

.mb3-vbf-section {
    padding: 48px 0;
}

.mb3-vbf-section-alt {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.012);
}


/* ---------- Szekció cím ---------- */

.mb3-vbf-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.mb3-vbf-heading > span,
.mb3-vbf-section-title > span,
.mb3-vbf-small-title {
    display: block;
    margin-bottom: 9px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.mb3-vbf-heading h2,
.mb3-vbf-section-title h2,
.mb3-vbf-when h2,
.mb3-vbf-info-box h2 {
    margin-bottom: 14px;

    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.mb3-vbf-heading p {
    color: var(--muted);

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================================
   MI A VBF?
   ========================================================== */

.mb3-vbf-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.mb3-vbf-intro-text {
    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}

.mb3-vbf-intro-text p {
    margin-bottom: 18px;
}


/* ==========================================================
   MIT VIZSGÁLUNK?
   ========================================================== */

.mb3-vbf-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mb3-vbf-check-card {
    padding: 22px;

    border: 1px solid var(--line);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.018);
}

.mb3-vbf-check-number {
    display: block;
    margin-bottom: 18px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
}

.mb3-vbf-check-card h3 {
    margin-bottom: 9px;

    font-size: 18px;
    line-height: 1.3;
}

.mb3-vbf-check-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


/* ==========================================================
   MIKOR LEHET SZÜKSÉG VBF-RE?
   ========================================================== */

.mb3-vbf-when {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.mb3-vbf-when-copy > p {
    max-width: 520px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}

.mb3-vbf-when-list {
    border-top: 1px solid var(--line);
}

.mb3-vbf-when-list > div {
    padding: 15px 0;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;

    border-bottom: 1px solid var(--line);
}

.mb3-vbf-when-list strong {
    font-size: 14px;
}

.mb3-vbf-when-list span {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================
   FOLYAMAT
   ========================================================== */

.mb3-vbf-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.mb3-vbf-process-card {
    position: relative;

    padding: 24px;

    border: 1px solid var(--line);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.018);
}

.mb3-vbf-step {
    width: 36px;
    height: 36px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 50%;

    color: var(--orange);
    background: rgba(255, 122, 0, 0.08);

    font-size: 11px;
    font-weight: 800;
}

.mb3-vbf-process-card h3 {
    margin-bottom: 9px;

    font-size: 18px;
}

.mb3-vbf-process-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


/* összekötő vonal */

.mb3-vbf-process-card:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 42px;
    right: -25px;

    width: 18px;
    height: 1px;

    background: rgba(255, 122, 0, 0.5);
}


/* nyílhegy */

.mb3-vbf-process-card:not(:last-child)::before {
    content: "";

    position: absolute;
    top: 39px;
    right: -26px;

    width: 6px;
    height: 6px;

    border-top: 1px solid rgba(255, 122, 0, 0.8);
    border-right: 1px solid rgba(255, 122, 0, 0.8);

    transform: rotate(45deg);
}


/* ==========================================================
   EREDMÉNY + MÉRNÖKI SZEMLÉLET
   ========================================================== */

.mb3-vbf-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mb3-vbf-info-box {
    padding: 28px;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.018);
}

.mb3-vbf-info-box p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}

.mb3-vbf-info-box p:last-child {
    margin-bottom: 0;
}

.mb3-vbf-engineer {
    border-color: rgba(255, 122, 0, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.08),
            rgba(255, 255, 255, 0.018)
        );
}


/* ==========================================================
   VBF CTA
   ========================================================== */

.mb3-vbf-cta-section {
    padding: 12px 0 54px;
}

.mb3-vbf-cta {
    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.14),
            rgba(255, 122, 0, 0.045)
        );
}

.mb3-vbf-cta > div {
    max-width: 720px;
}

.mb3-vbf-cta span {
    display: block;
    margin-bottom: 6px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.mb3-vbf-cta h2 {
    margin-bottom: 7px;

    font-size: 30px;
}

.mb3-vbf-cta p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   VBF TABLET / MOBIL
   ========================================================== */

@media (max-width: 900px) {

    .mb3-vbf-hero-grid,
    .mb3-vbf-intro,
    .mb3-vbf-when,
    .mb3-vbf-two-column {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mb3-vbf-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mb3-vbf-process {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mb3-vbf-process-card::before,
    .mb3-vbf-process-card::after {
        display: none;
    }

    .mb3-vbf-when-list > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

}


@media (max-width: 600px) {

    .mb3-vbf-hero {
        padding: 34px 0 30px;
    }

    .mb3-vbf-hero h1 {
        font-size: 38px;
    }

    .mb3-vbf-lead {
        font-size: 16px;
    }

    .mb3-vbf-section {
        padding: 36px 0;
    }

    .mb3-vbf-check-grid {
        grid-template-columns: 1fr;
    }

    .mb3-vbf-summary,
    .mb3-vbf-info-box {
        padding: 21px;
    }

    .mb3-vbf-cta {
        padding: 22px;

        flex-direction: column;
        align-items: flex-start;
    }

}



/* ==========================================================
   14. FOOLDAL - MOBIL FINOMHANGOLAS
   Csak a fooldal egyedi elemeit modositja.
   Az aloldalak mobilos megjeleneset nem erinti.
   ========================================================== */

@media (max-width: 720px) {

    /* ------------------------------------------------------
       HERO
       ------------------------------------------------------ */

    .mb3-hero {
        padding: 22px 0 18px;
    }

    .mb3-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mb3-hero-copy,
    .mb3-hero-image {
        align-self: auto;
    }

    .mb3-eyebrow,
    .mb3-hero h1,
    .mb3-lead,
    .mb3-actions {
        top: 0;
    }

    .mb3-eyebrow {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .mb3-hero h1 {
        margin-bottom: 14px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.02;
    }

    .mb3-lead {
        max-width: none;
        font-size: 15px;
        line-height: 1.55;
    }

    .mb3-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 18px 0 22px;
    }

    .mb3-actions .mb3-btn {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        font-size: 13px;
    }


    /* ------------------------------------------------------
       3 LEPESES FOLYAMAT
       Mobilon kompakt, szamozott lista.
       Az asztali osszekoto nyilak itt eltunnek.
       ------------------------------------------------------ */

    .mb3-process-label {
        margin: 0 0 10px;
        font-size: 12px;
        line-height: 1.3;
    }

    .mb3-mini-benefits {
        grid-template-columns: 1fr;
        gap: 9px;
        counter-reset: mb3-mobile-step;
    }

    .mb3-mini-benefits > div {
        position: relative;
        min-height: 0;
        padding: 13px 14px 13px 52px;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        border-radius: 13px;
    }

.mb3-mini-benefits > div::before {
    content: counter(mb3-mobile-step, decimal-leading-zero) !important;
    counter-increment: mb3-mobile-step;

    position: absolute !important;

    left: 13px !important;
    right: auto !important;
    top: 50% !important;

    width: 28px !important;
    height: 28px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    transform: translateY(-50%) !important;

    border: 1px solid rgba(255, 122, 0, 0.38) !important;
    border-radius: 50% !important;

    color: var(--orange) !important;
    background: rgba(255, 122, 0, 0.07) !important;

    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    box-sizing: border-box !important;
}

    .mb3-mini-benefits > div::after {
        display: none !important;
    }

    .mb3-mini-benefits strong {
        width: 100%;
        height: auto;
        margin: 0 0 4px;
        font-size: 15px;
        line-height: 1.25;
        text-align: left;
    }

    .mb3-mini-benefits span {
        width: 100%;
        font-size: 12px;
        line-height: 1.45;
        text-align: center;
    }


    /* ------------------------------------------------------
       HERO KEP
       ------------------------------------------------------ */

    .mb3-hero-image img {
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }


/* ------------------------------------------------------
   4 SZOLGALTATASKARTYA
   Mobilon kep felul, szoveg alatta.
   ------------------------------------------------------ */

.mb3-services {
    padding: 18px 0 16px;
}

.mb3-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
}

.mb3-card {
    display: flex;
    flex-direction: column;

    min-height: 0;

    border-radius: 14px;
    overflow: hidden;
}

.mb3-card > img {
    display: block;
    width: 100%;
    height: 115px;
    object-fit: cover;
    object-position: center;
}

.mb3-card-body {
    min-height: 0;
    padding: 15px 16px 16px;
}

.mb3-card h2 {
    margin-bottom: 8px;

    font-size: 19px;
    line-height: 1.15;

    text-align: left;
    letter-spacing: 0.06em;
    word-spacing: normal;
}

.mb3-card p {
    margin-bottom: 10px;

    font-size: 12px;
    line-height: 1.5;
}

.mb3-card a {
    font-size: 13px;
}


    /* ------------------------------------------------------
       4 ELOSAV - mobilon 2 x 2
       ------------------------------------------------------ */

    .mb3-benefits {
        padding: 4px 0 20px;
    }

    .mb3-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mb3-benefits-grid > div {
        padding: 14px;
        border-top: 0.8px solid var(--line);
        border-left: 0.8px solid var(--line);
    }

    .mb3-benefits-grid > div:nth-child(-n + 2) {
        border-top: 0;
    }

    .mb3-benefits-grid > div:nth-child(odd) {
        border-left: 0;
    }

    .mb3-benefits strong {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.25;
    }

    .mb3-benefits span {
        font-size: 10.8px;
        line-height: 1.45;
    }


    /* ------------------------------------------------------
       FOOLDALI CTA
       ------------------------------------------------------ */

    .mb3-cta-section {
        padding: 4px 0 24px;
    }

    .mb3-cta-box {
        padding: 18px;
        gap: 14px;
        border-radius: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mb3-cta-box h2 {
        margin-bottom: 5px;
        font-size: 23px;
        line-height: 1.15;
    }

    .mb3-cta-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    .mb3-cta-box .mb3-btn {
        width: 100%;
    }
}


/* ==========================================================
   NAGYON KESKENY MOBIL
   ========================================================== */

@media (max-width: 390px) {

    .mb3-hero h1 {
        font-size: 32px;
    }

    .mb3-actions {
        grid-template-columns: 1fr;
    }

 

    .mb3-card h2 {
        font-size: 17px;
    }

    .mb3-card p {
        font-size: 11px;
    }

    .mb3-benefits-grid {
        grid-template-columns: 1fr;
    }

   .mb3-benefits-grid > div {
    border-left: 0;
    border-top: 0.8px solid var(--line);
}

.mb3-benefits-grid > div:first-child {
    border-top: 0;
}

.mb3-benefits-grid > div:nth-child(2) {
    border-top: 0.8px solid var(--line);
}
}

/* ==========================================================
   RÓLAM / RÓLUNK OLDAL
   ========================================================== */

.mb3-about-page {
    color: var(--text);
}

.mb3-about-page h1,
.mb3-about-page h2,
.mb3-about-page h3,
.mb3-about-page p {
    margin-top: 0;
}

/* HERO */

.mb3-about-hero {
    padding: 52px 0 46px;
}

.mb3-about-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 46px;
    align-items: stretch;
}

.mb3-about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mb3-about-eyebrow,
.mb3-about-small-title {
    display: block;
    margin-bottom: 11px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.mb3-about-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.mb3-about-role {
    margin-bottom: 22px;
    color: #eef1f5;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.mb3-about-lead {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.mb3-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

/* Szakmai háttér kártya */

.mb3-about-profile-card {
    padding: 28px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255, 122, 0, 0.06), rgba(255, 255, 255, 0.018));
}

.mb3-about-profile-list {
    display: grid;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid var(--line);
}

.mb3-about-profile-list > div {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.mb3-about-profile-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.08);
}

.mb3-about-profile-list strong {
    font-size: 15px;
    line-height: 1.35;
}

.mb3-about-profile-note {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

/* Általános szekciók */

.mb3-about-section {
    padding: 48px 0;
}

.mb3-about-section-alt {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
}

.mb3-about-heading {
    max-width: 780px;
    margin-bottom: 28px;
}

.mb3-about-heading > span,
.mb3-about-section-title > span {
    display: block;
    margin-bottom: 9px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.mb3-about-heading h2,
.mb3-about-section-title h2,
.mb3-about-info-box h2,
.mb3-about-principle h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.mb3-about-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Hozzáállás */

.mb3-about-intro-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 70px;
}

.mb3-about-intro-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.mb3-about-intro-copy p {
    margin-bottom: 18px;
}

.mb3-about-intro-copy p:last-child {
    margin-bottom: 0;
}

/* Területek */

.mb3-about-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mb3-about-focus-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mb3-about-focus-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 0, 0.26);
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.055), rgba(255, 255, 255, 0.016));
}

.mb3-about-card-index {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 122, 0, 0.34);
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 122, 0, 0.07);
    font-size: 11px;
    font-weight: 800;
}

.mb3-about-focus-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.3;
}

.mb3-about-focus-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.68;
}

/* Munkamódszer */

.mb3-about-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mb3-about-method-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.018);
}

.mb3-about-method-card > span {
    display: block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mb3-about-method-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.3;
}

.mb3-about-method-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.68;
}

/* Kiemelt alapelv */

.mb3-about-principle-section {
    padding: 10px 0 48px;
}

.mb3-about-principle {
    padding: 30px 32px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    border: 1px solid rgba(255, 122, 0, 0.36);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.13), transparent 36%),
        linear-gradient(135deg, rgba(255, 122, 0, 0.085), rgba(255, 255, 255, 0.018));
}

.mb3-about-principle-mark {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--orange);
    font-size: 22px;
    font-weight: 900;
}

.mb3-about-principle p {
    max-width: 880px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.mb3-about-principle p:last-child {
    margin-bottom: 0;
}

/* Kommunikáció + terület */

.mb3-about-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mb3-about-info-box {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.018);
}

.mb3-about-info-box p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.mb3-about-info-box p:last-child {
    margin-bottom: 0;
}

.mb3-about-area-box {
    border-color: rgba(255, 122, 0, 0.22);
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.065), rgba(255, 255, 255, 0.018));
}

.mb3-about-area-row {
    padding: 13px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    border-bottom: 1px solid var(--line);
}

.mb3-about-area-row strong {
    font-size: 13px;
    line-height: 1.45;
}

.mb3-about-area-row span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: right;
}

.mb3-about-area-note {
    margin-top: 18px;
}

/* CTA */

.mb3-about-cta-section {
    padding: 12px 0 56px;
}

.mb3-about-cta {
    padding: 29px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(255, 122, 0, 0.045));
}

.mb3-about-cta > div {
    max-width: 760px;
}

.mb3-about-cta span {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.mb3-about-cta h2 {
    margin: 0 0 7px;
    font-size: 30px;
    line-height: 1.15;
}

.mb3-about-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Tablet */

@media (max-width: 980px) {
    .mb3-about-focus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mb3-about-hero-grid,
    .mb3-about-intro-grid,
    .mb3-about-two-column {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mb3-about-method-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobil */

@media (max-width: 600px) {
    .mb3-about-hero {
        padding: 32px 0 28px;
    }

    .mb3-about-hero h1 {
        font-size: 40px;
    }

    .mb3-about-role {
        font-size: 15px;
    }

    .mb3-about-lead {
        font-size: 14px;
        line-height: 1.7;
    }

    .mb3-about-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mb3-about-actions .mb3-btn {
        width: 100%;
    }

    .mb3-about-profile-card {
        padding: 22px;
    }

    .mb3-about-section {
        padding: 36px 0;
    }

    .mb3-about-focus-grid {
        grid-template-columns: 1fr;
    }

    .mb3-about-focus-card,
    .mb3-about-method-card,
    .mb3-about-info-box {
        padding: 21px;
    }

    .mb3-about-principle-section {
        padding-bottom: 36px;
    }

    .mb3-about-principle {
        padding: 23px 21px;
        grid-template-columns: 1fr;
    }

    .mb3-about-principle-mark {
        width: 42px;
        height: 42px;
    }

    .mb3-about-area-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .mb3-about-area-row span {
        text-align: left;
    }

    .mb3-about-cta {
        padding: 23px 21px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mb3-about-cta .mb3-btn {
        width: 100%;
    }
}
