/* ============================================
   CsukaVill – Villanyszerelés
   Modern sötét + sárga téma
   ============================================ */

:root {
    --bg:        #0e1116;
    --bg-2:      #151a22;
    --bg-3:      #1c232e;
    --surface:   #1a212b;
    --line:      #2a3340;
    --text:      #e8edf3;
    --text-dim:  #9aa7b6;
    --accent:    #4caf50;
    --accent-2:  #6fcf72;
    --accent-dk: #3d9140;
    --radius:    16px;
    --radius-sm: 10px;
    --shadow:    0 20px 50px rgba(0,0,0,.45);
    --max:       1180px;
    --t:         .3s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* A hidden attribútum mindig elrejtsen (felülírja a display:grid/flex szabályokat) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Címsorok karakteres display-fonttal */
h1, h2, h3, h4, h5, h6,
.section__title, .hero__title, .cta-banner h3 {
    font-family: 'Bricolage Grotesque', 'DM Sans', sans-serif;
    letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dk));
    color: #15110a; font-weight: 700; font-size: 1rem;
    padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
    transition: var(--t); box-shadow: 0 8px 24px rgba(76,175,80,.25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(76,175,80,.4); }
.btn--ghost {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(76,175,80,.06); }
.btn--small { padding: 10px 20px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ===== Section helpers ===== */
.section__eyebrow {
    display: inline-block; color: var(--accent); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; margin-bottom: 12px;
}
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section__head--left { text-align: left; margin-left: 0; }

/* ===== Topbar ===== */
.topbar { background: var(--bg-2); border-bottom: 1px solid var(--line); font-size: .85rem; }
.topbar__inner { display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; justify-content: flex-end; padding: 8px 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: var(--text-dim); transition: var(--t); }
a.topbar__item:hover { color: var(--accent); }
.topbar__item svg { color: var(--accent); }

/* ===== Header ===== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(14,17,22,.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); transition: var(--t);
}
.header.scrolled { background: rgba(14,17,22,.97); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-weight: 600; color: var(--text-dim); position: relative; transition: var(--t); }
.nav__link::after {
    content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
    background: var(--accent); transition: var(--t);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__cta { color: #15110a; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--t); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: clamp(70px, 12vw, 140px) 0; }
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(900px 500px at 75% 10%, rgba(76,175,80,.16), transparent 60%),
        radial-gradient(700px 500px at 10% 90%, rgba(76,175,80,.07), transparent 60%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 54px 54px; opacity: .15;
    mask-image: radial-gradient(circle at 75% 25%, #000, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero__content { max-width: 640px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__badge {
    display: inline-flex; align-items: center; gap: 7px; background: rgba(76,175,80,.1); color: var(--accent);
    border: 1px solid rgba(76,175,80,.3); padding: 7px 16px; border-radius: 999px;
    font-size: .85rem; font-weight: 600; margin-bottom: 26px;
}
.hero__title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; }
.hero__title .hl {
    color: var(--accent); position: relative; white-space: nowrap;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='16' viewBox='0 0 240 16'%3E%3Cpath d='M3 11 C 60 4, 120 14, 180 6 S 232 7, 237 9' fill='none' stroke='%234caf50' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: left bottom -2px; background-size: 100% 0.42em;
    padding-bottom: 0.12em;
}
.hero__text { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dim); margin: 24px 0 36px; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== Features strip ===== */
.features { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 0; }
.features__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.feature__icon {
    width: 54px; height: 54px; display: grid; place-items: center;
    color: var(--accent); background: rgba(76,175,80,.08);
    border: 1px solid rgba(76,175,80,.25); border-radius: 14px; transition: var(--t);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature:hover .feature__icon { background: rgba(76,175,80,.16); transform: translateY(-3px) rotate(-4deg); }
.feature h6 { font-size: .92rem; font-weight: 600; color: var(--text-dim); }

/* ===== About ===== */
.about { padding: clamp(70px, 10vw, 120px) 0; }
.about__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.about__content p { color: var(--text-dim); margin-top: 16px; }
.about__content p:first-of-type { margin-top: 22px; }
.about__content-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
@media (max-width: 980px) { .about__content-cta { justify-content: center; } }

.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 70px; }
.value {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 24px; transition: var(--t); position: relative; overflow: hidden;
}
.value::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent); transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.value:hover { transform: translateY(-6px); border-color: rgba(76,175,80,.4); }
.value:hover::before { transform: scaleX(1); }
.value h4 { font-size: 1.15rem; margin-bottom: 10px; }
.value p { color: var(--text-dim); font-size: .95rem; }
.about__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 56px; }

/* ===== Services – aszimmetrikus, váltakozó sorok ===== */
.services {
    padding: clamp(80px, 11vw, 140px) 0; background: var(--bg-2);
    position: relative;
    clip-path: polygon(0 2.5vw, 100% 0, 100% calc(100% - 2.5vw), 0 100%);
    margin: -2vw 0;
}
.services__rows { display: grid; gap: clamp(40px, 6vw, 80px); }
.service {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.service:nth-child(even) .service__media { order: 2; }
.service__media {
    border-radius: var(--radius); overflow: hidden; background: var(--bg-3);
    border: 1px solid var(--line); aspect-ratio: 4/3; position: relative;
    box-shadow: var(--shadow);
}
/* enyhe elforgatás váltakozva – kézzel rendezett hatás */
.service:nth-child(odd) .service__media { transform: rotate(-1.4deg); }
.service:nth-child(even) .service__media { transform: rotate(1.4deg); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service:hover .service__media img { transform: scale(1.06); }
.service__body { position: relative; }
.service__num {
    font-family: 'Bricolage Grotesque', sans-serif; display: block;
    font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1;
    color: transparent; -webkit-text-stroke: 1.5px rgba(76,175,80,.45); margin-bottom: 14px;
}
.service__body h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 14px; }
.service__body p { color: var(--text-dim); font-size: 1rem; max-width: 46ch; }

/* ===== Referencia / Munkák galéria ===== */
.refs { padding: clamp(70px, 10vw, 120px) 0; }
.refs__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px; gap: 18px;
}
.ref {
    position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
    border: 1px solid var(--line); background: var(--bg-3);
}
.ref--featured { grid-column: span 2; grid-row: span 2; }
.ref img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ref::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,13,17,.92) 0%, rgba(10,13,17,.25) 45%, transparent 70%);
    transition: var(--t);
}
.ref:hover img { transform: scale(1.07); }
.ref figcaption {
    position: absolute; left: 0; bottom: 0; z-index: 2; padding: 22px;
    display: flex; flex-direction: column; gap: 5px;
    transform: translateY(8px); opacity: .96; transition: var(--t);
}
.ref:hover figcaption { transform: translateY(0); }
.ref__tag {
    align-self: flex-start; background: var(--accent); color: #15110a;
    font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px;
}
.ref figcaption strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; line-height: 1.25; }
.ref--featured figcaption strong { font-size: 1.35rem; }
.ref figcaption small { color: var(--text-dim); font-size: .82rem; }

.refs__cta { display: flex; justify-content: center; margin-top: 44px; }

/* ===== Reviews / Vélemények ===== */
.reviews { padding: clamp(70px, 10vw, 120px) 0; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 26px; margin: 0; display: flex; flex-direction: column; gap: 14px;
    transition: var(--t); position: relative;
}
/* enyhén eltolt sorok – kézzel rendezett, kevésbé „rácsos" hatás */
.review:nth-child(2) { transform: translateY(-22px); }
.review:nth-child(5) { transform: translateY(-22px); }
.review:hover { border-color: rgba(76,175,80,.4); transform: translateY(-26px); }
.review:nth-child(1):hover, .review:nth-child(3):hover,
.review:nth-child(4):hover, .review:nth-child(6):hover { transform: translateY(-6px); }
.review__stars { color: var(--accent); letter-spacing: 3px; font-size: 1.05rem; }
.review blockquote { margin: 0; color: var(--text); font-size: 1rem; line-height: 1.65; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar {
    flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: #15110a;
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.1rem;
}
.review figcaption strong { display: block; font-size: .95rem; }
.review figcaption small { color: var(--text-dim); font-size: .82rem; }

/* ===== Contact ===== */
.contact { padding: clamp(70px, 10vw, 120px) 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact__list { margin-top: 28px; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.contact__ic {
    flex: 0 0 46px; height: 46px; display: grid; place-items: center; color: var(--accent);
    background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.3); border-radius: 12px;
}
.contact__ic svg { width: 22px; height: 22px; }
.contact__list a:hover { color: var(--accent); }

.contact__form {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px; display: grid; gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field textarea {
    background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 1rem; transition: var(--t); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(76,175,80,.12); }
.field.invalid input, .field.invalid textarea { border-color: #ff5a5a; }
.field__error { color: #ff7a7a; font-size: .82rem; min-height: 0; }
.field.invalid .field__error::before { content: attr(data-msg); }
.form__status { text-align: center; font-weight: 600; min-height: 1.4em; }
.form__status.ok { color: var(--accent); }
.form__status.err { color: #ff7a7a; }
.field--check .check { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.field--check .check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); flex: 0 0 auto; }
.field--check .check span { font-size: .88rem; color: var(--text-dim); font-weight: 400; line-height: 1.5; }
.field--check .check a { color: var(--accent); }
.field--check.invalid .check span { color: #ff9a9a; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ===== FAQ ===== */
.faq { padding: clamp(70px, 10vw, 120px) 0; background: var(--bg-2); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: var(--t); }
.faq__item.open { border-color: rgba(76,175,80,.4); }
.faq__q {
    width: 100%; text-align: left; background: none; border: none; color: var(--text);
    font-family: inherit; font-size: 1.05rem; font-weight: 600; cursor: pointer;
    padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__sign { position: relative; flex: 0 0 20px; height: 20px; }
.faq__sign::before, .faq__sign::after {
    content: ''; position: absolute; background: var(--accent); border-radius: 2px; transition: var(--t);
}
.faq__sign::before { top: 9px; left: 0; width: 20px; height: 2.5px; }
.faq__sign::after  { top: 0; left: 9px; width: 2.5px; height: 20px; }
.faq__item.open .faq__sign::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--text-dim); }

/* ===== CTA banner ===== */
.cta-banner { padding: 60px 0; background: linear-gradient(135deg, var(--accent), var(--accent-dk)); }
.cta-banner__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-banner h3 { color: #15110a; font-size: 1.8rem; font-weight: 800; }
.cta-banner p { color: #103a13; font-weight: 600; }
.cta-banner .btn { background: #15110a; color: var(--accent); box-shadow: none; }
.cta-banner .btn:hover { background: #000; }

/* ===== Footer ===== */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 70px; width: auto; margin-bottom: 18px; }
.footer__col h5 { font-size: 1.05rem; margin-bottom: 18px; }
.footer__col h6 { color: var(--text-dim); font-weight: 500; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col ul a { color: var(--text-dim); transition: var(--t); }
.footer__col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer__col ul.footer__social a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
    color: var(--text); font-weight: 600;
}
.footer__col ul.footer__social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(76,175,80,.08); padding-left: 16px; }
.footer__social svg { flex: 0 0 auto; }

.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
.footer__bottom p { color: var(--text-dim); font-size: .88rem; }
.footer__bottom a { color: var(--accent); }

/* ===== Legal / Adatvédelem oldal ===== */
.legal { padding: clamp(50px, 8vw, 90px) 0; }
.legal__inner { max-width: 820px; }
.legal__back { display: inline-block; color: var(--accent); font-weight: 600; margin-bottom: 24px; transition: var(--t); }
.legal__back:hover { padding-left: 4px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 8px; }
.legal__updated { color: var(--text-dim); font-size: .9rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 14px; color: var(--accent-2); }
.legal p { color: var(--text-dim); margin-bottom: 14px; }
.legal ul { margin: 0 0 18px; padding-left: 4px; display: grid; gap: 8px; }
.legal li { color: var(--text-dim); padding-left: 22px; position: relative; }
.legal li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; }
.legal a { color: var(--accent); }
.legal strong { color: var(--text); }
.legal .btn { margin-top: 36px; }

/* ===== Cookie banner ===== */
.cookie {
    position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200;
    background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); max-width: 720px; margin: 0 auto;
    animation: slideUp .5s ease both;
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie__inner { padding: 22px 24px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.cookie__text { flex: 1 1 320px; }
.cookie__text strong { display: block; margin-bottom: 6px; }
.cookie__text p { color: var(--text-dim); font-size: .9rem; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); }
.modal__box {
    position: relative; background: var(--bg-3); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 34px; max-width: 540px; width: 100%;
    box-shadow: var(--shadow); animation: slideUp .35s ease both; max-height: 90vh; overflow-y: auto;
}
.modal__close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-dim); font-size: 1.8rem; cursor: pointer; line-height: 1; }
.modal__close:hover { color: var(--accent); }
.modal__lead { color: var(--text-dim); font-size: .95rem; margin: 10px 0 24px; }
.cookie-opt { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 14px; }
.cookie-opt__head { display: flex; align-items: center; justify-content: space-between; font-weight: 600; margin-bottom: 6px; }
.cookie-opt p { color: var(--text-dim); font-size: .85rem; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; margin-top: 22px; }

/* Switch */
.switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__slider { position: absolute; inset: 0; background: var(--line); border-radius: 999px; cursor: pointer; transition: var(--t); }
.switch__slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--t); }
.switch input:checked + .switch__slider { background: var(--accent); }
.switch input:checked + .switch__slider::before { transform: translateX(20px); }
.switch input:disabled + .switch__slider { opacity: .6; cursor: not-allowed; }

/* ===== Floating call button ===== */
.fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 150;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: #15110a;
    box-shadow: 0 10px 26px rgba(76,175,80,.4); transition: var(--t);
    animation: pulse 2.4s infinite;
}
.fab:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 10px 26px rgba(76,175,80,.4), 0 0 0 0 rgba(76,175,80,.5); } 70% { box-shadow: 0 10px 26px rgba(76,175,80,.4), 0 0 0 16px rgba(76,175,80,0); } 100% { box-shadow: 0 10px 26px rgba(76,175,80,.4), 0 0 0 0 rgba(76,175,80,0); } }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .hero__content { max-width: 640px; margin: 0 auto; }
    .hero__actions { justify-content: center; }
    .hero__media { max-width: 380px; margin: 0 auto; order: -1; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .about__media { max-width: 460px; margin: 0 auto; }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .service { grid-template-columns: 1fr; gap: 22px; }
    .service:nth-child(even) .service__media { order: 0; }
    .service:nth-child(odd) .service__media,
    .service:nth-child(even) .service__media { transform: none; }
    .contact__inner { grid-template-columns: 1fr; gap: 36px; }
    .features__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .review:nth-child(2), .review:nth-child(5) { transform: none; }
    .refs__grid { grid-template-columns: repeat(2, 1fr); }
    .ref--featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
    .topbar { display: none; }
    /* A backdrop-filter eltávolítása, hogy a fixed pozíciós menü a képernyőhöz igazodjon */
    .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(14,17,22,.97); }
    .nav {
        position: fixed; top: 0; right: 0; bottom: 0; left: auto;
        width: min(82vw, 320px); height: 100vh; height: 100dvh;
        flex-direction: column; align-items: flex-start; gap: 8px;
        background: var(--bg-2); border-left: 1px solid var(--line);
        padding: 96px 28px 28px; transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4,0,.2,1); z-index: 105;
        overflow-y: auto;
    }
    .nav.open { transform: translateX(0); box-shadow: var(--shadow); }
    .nav__link { font-size: 1.15rem; width: 100%; padding: 10px 0; }
    .nav__cta { margin-top: 12px; }
    .nav__toggle { display: flex; z-index: 110; }

    /* Sötét háttér a nyitott menü mögött.
       Fontos: a fejléc z-index:100 külön rétegréteget hoz létre, és a menü
       abban van, ezért a háttér-rétegnek a fejléc ALÁ (z-index < 100) kell kerülnie,
       különben elnyelné a menüpontokra leadott kattintásokat. */
    .nav-backdrop {
        position: fixed; inset: 0; background: rgba(0,0,0,.55);
        opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 99;
    }
    .nav-backdrop.show { opacity: 1; visibility: visible; }

    /* A lebegő hívás gomb ne lógjon a nyitott menü fölé */
    body.nav-open .fab { display: none; }

    .footer__grid { grid-template-columns: 1fr; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
}

/* A menü háttér csak mobilon látszik */
.nav-backdrop { display: none; }
@media (max-width: 760px) { .nav-backdrop { display: block; } }
body.nav-open { overflow: hidden; }

@media (max-width: 520px) {
    .values__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .refs__grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
    .ref--featured { grid-column: span 1; grid-row: span 1; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__form { padding: 24px; }
    .cookie__actions { width: 100%; }
    .cookie__actions .btn { flex: 1; }
    .fab { display: none; }
}

/* ============================================================
   ÚJ KOMPONENSEK – aloldalak, SEO/GEO blokkok
   ============================================================ */

/* ===== Breadcrumb (morzsamenü) ===== */
.breadcrumb { padding: 18px 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-dim); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: '›'; color: var(--line); }
.breadcrumb a { color: var(--text-dim); transition: var(--t); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--accent); }

/* ===== Aloldal hero ===== */
.page-hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 70px) 0 clamp(46px, 7vw, 80px); }
.page-hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(800px 420px at 80% 0%, rgba(76,175,80,.15), transparent 62%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px); align-items: center; margin-top: 26px; }
.page-hero__title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.page-hero__title .hl { color: var(--accent); }
.page-hero__lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--text-dim); margin: 20px 0 28px; max-width: 60ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--bg-3); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 980px) { .page-hero__inner { grid-template-columns: 1fr; } .page-hero__media { max-width: 520px; } }

/* ===== Kulcstények / gyors válasz doboz (GEO – AI keresők idézik) ===== */
.keyfacts {
    background: var(--surface); border: 1px solid rgba(76,175,80,.35);
    border-left: 4px solid var(--accent); border-radius: var(--radius-sm);
    padding: 24px 26px; margin: 30px 0;
}
.keyfacts h2, .keyfacts h3 { font-size: 1.05rem; color: var(--accent-2); margin-bottom: 10px; }
.keyfacts p { color: var(--text); margin-bottom: 10px; }
.keyfacts p:last-child { margin-bottom: 0; }
.keyfacts ul { display: grid; gap: 8px; margin-top: 8px; }
.keyfacts li { color: var(--text-dim); padding-left: 22px; position: relative; }
.keyfacts li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; }
.keyfacts strong { color: var(--text); }

/* ===== Szövegtörzs (cikkek, aloldalak) ===== */
.article { padding: clamp(46px, 7vw, 80px) 0; }
.article__layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 980px) { .article__layout { grid-template-columns: 1fr; } }

.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-weight: 800; margin: 42px 0 14px; color: var(--text); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; margin: 30px 0 10px; color: var(--accent-2); }
.prose p { color: var(--text-dim); margin-bottom: 16px; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { margin: 0 0 20px; display: grid; gap: 9px; }
.prose ul li { color: var(--text-dim); padding-left: 24px; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; }
.prose ol { list-style: none; counter-reset: step; }
.prose ol li { color: var(--text-dim); padding-left: 40px; position: relative; counter-increment: step; }
.prose ol li::before {
    content: counter(step); position: absolute; left: 0; top: 2px;
    width: 26px; height: 26px; display: grid; place-items: center;
    background: rgba(76,175,80,.12); border: 1px solid rgba(76,175,80,.35);
    color: var(--accent); border-radius: 8px; font-size: .8rem; font-weight: 700;
}
.prose figure { margin: 26px 0; }
.prose figure img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; }
.prose figcaption { color: var(--text-dim); font-size: .85rem; margin-top: 8px; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }

/* ===== Táblázat (árak, adatok – AI keresők jól olvassák) ===== */
.table-wrap { overflow-x: auto; margin: 22px 0 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table.data { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 460px; }
table.data caption { text-align: left; padding: 14px 18px; color: var(--text-dim); font-size: .85rem; border-bottom: 1px solid var(--line); background: var(--bg-3); }
table.data th, table.data td { padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--bg-3); color: var(--text); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .5px; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:hover { background: rgba(76,175,80,.04); }
table.data td:last-child { color: var(--accent-2); font-weight: 600; white-space: nowrap; }

/* ===== Oldalsáv ===== */
.sidebar { display: grid; gap: 20px; position: sticky; top: 100px; }
@media (max-width: 980px) { .sidebar { position: static; } }
.side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.side-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.side-card p { color: var(--text-dim); font-size: .92rem; margin-bottom: 16px; }
.side-card ul { display: grid; gap: 10px; }
.side-card ul a { color: var(--text-dim); font-size: .93rem; transition: var(--t); display: block; }
.side-card ul a:hover { color: var(--accent); padding-left: 4px; }
.side-card--cta { background: linear-gradient(160deg, rgba(76,175,80,.14), var(--surface)); border-color: rgba(76,175,80,.35); }
.side-card--cta .btn { width: 100%; }
.side-phone { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 14px; }

/* ===== Tartalomjegyzék ===== */
.toc { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 34px; }
.toc strong { display: block; margin-bottom: 12px; font-size: .95rem; }
.toc ol { display: grid; gap: 8px; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; padding-left: 0; }
.toc li::before { content: none; }
.toc a { color: var(--text-dim); font-size: .93rem; transition: var(--t); }
.toc a::before { content: counter(toc) '. '; color: var(--accent); font-weight: 700; }
.toc a:hover { color: var(--accent); }

/* ===== Ellátott települések rács ===== */
.areas { padding: clamp(60px, 9vw, 100px) 0; background: var(--bg-2); }
.areas__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 34px; }
.area-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 16px 18px; transition: var(--t); display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.area-card:hover { border-color: rgba(76,175,80,.45); transform: translateY(-3px); }
.area-card span { font-weight: 600; font-size: .98rem; }
.area-card small { color: var(--text-dim); font-size: .8rem; display: block; font-weight: 400; }
.area-card svg { color: var(--accent); flex: 0 0 auto; }
.areas__note { color: var(--text-dim); font-size: .92rem; margin-top: 22px; }

/* ===== Szolgáltatás kártyák (belső linkelés) ===== */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
@media (max-width: 980px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-cards { grid-template-columns: 1fr; } }
.svc-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; transition: var(--t); display: flex; flex-direction: column; gap: 10px;
}
.svc-card:hover { border-color: rgba(76,175,80,.45); transform: translateY(-5px); }
.svc-card__ic { width: 46px; height: 46px; display: grid; place-items: center; color: var(--accent); background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.28); border-radius: 12px; margin-bottom: 6px; }
.svc-card__ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.12rem; }
.svc-card p { color: var(--text-dim); font-size: .93rem; flex: 1; }
.svc-card__more { color: var(--accent); font-weight: 600; font-size: .9rem; }
.svc-card:hover .svc-card__more { text-decoration: underline; }

/* ===== Bizalmi sáv (számok) ===== */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 34px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
.trust__num { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--accent); line-height: 1; }
.trust__lbl { color: var(--text-dim); font-size: .88rem; margin-top: 6px; }

/* ===== Blog lista ===== */
.posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 980px) { .posts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .posts__grid { grid-template-columns: 1fr; } }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: var(--t); display: flex; flex-direction: column; gap: 10px; }
.post-card:hover { border-color: rgba(76,175,80,.45); transform: translateY(-5px); }
.post-card__meta { color: var(--accent); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.post-card h3 { font-size: 1.1rem; line-height: 1.35; }
.post-card p { color: var(--text-dim); font-size: .92rem; flex: 1; }

/* ===== Kapcsolódó oldalak ===== */
.related { padding: clamp(50px, 8vw, 80px) 0; border-top: 1px solid var(--line); }
.related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 26px; }
.related__grid a {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 18px 20px; transition: var(--t); font-weight: 600; font-size: .96rem;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.related__grid a:hover { border-color: rgba(76,175,80,.45); color: var(--accent); transform: translateY(-3px); }
.related__grid a::after { content: '→'; color: var(--accent); }

/* ===== Checklist / figyelmeztető doboz ===== */
.callout { border: 1px solid var(--line); border-left: 4px solid var(--accent); background: var(--bg-3); border-radius: var(--radius-sm); padding: 20px 24px; margin: 26px 0; }
.callout--warn { border-left-color: #e8b33a; }
.callout strong { display: block; margin-bottom: 8px; color: var(--text); }
.callout p { color: var(--text-dim); margin: 0; }

/* ===== 404 ===== */
.notfound { padding: clamp(70px, 12vw, 140px) 0; text-align: center; }
.notfound h1 { font-size: clamp(3.5rem, 12vw, 7rem); font-weight: 900; color: var(--accent); line-height: 1; }
.notfound p { color: var(--text-dim); margin: 16px auto 32px; max-width: 46ch; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== Utility ===== */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nav__link.is-active { color: var(--accent); }
.nav__link.is-active::after { width: 100%; }
.mt-0 { margin-top: 0; }

/* ============================================================
   RÓLUNK oldal – modern komponensek
   ============================================================ */

/* ===== Idővonal (pálya, mérföldkövek) ===== */
.timeline { position: relative; display: grid; gap: 0; margin: 44px 0 0; }
.timeline::before {
    content: ''; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(76,175,80,.15));
}
.tl-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
    position: relative; z-index: 1; width: 56px; height: 56px; display: grid; place-items: center;
    border-radius: 50%; background: var(--bg-3); border: 2px solid var(--accent);
    color: var(--accent); font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: .82rem; letter-spacing: -.02em;
}
.tl-item--now .tl-year { background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: #15110a; }
.tl-body { padding-top: 4px; }
.tl-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tl-body p { color: var(--text-dim); margin: 0; font-size: .98rem; }
@media (max-width: 560px) {
    .timeline::before { left: 21px; }
    .tl-item { grid-template-columns: 44px 1fr; gap: 16px; }
    .tl-year { width: 44px; height: 44px; font-size: .74rem; }
}

/* ===== Jogosultság-kártyák ===== */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0 0; }
@media (max-width: 900px) { .cred-grid { grid-template-columns: 1fr; } }
.cred-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; position: relative; overflow: hidden; transition: var(--t);
}
.cred-card::before {
    content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(.25); transform-origin: left; transition: var(--t);
}
.cred-card:hover { border-color: rgba(76,175,80,.4); transform: translateY(-4px); }
.cred-card:hover::before { transform: scaleX(1); }
.cred-card__badge {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
    background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.3);
    color: var(--accent); font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: .9rem; letter-spacing: .04em;
    padding: 6px 14px; border-radius: 999px;
}
.cred-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.3; }
.cred-card p { color: var(--text-dim); font-size: .93rem; margin: 0; }
.cred-card p + p { margin-top: 10px; }
.cred-card a { color: var(--accent); }

/* ===== Folyamat lépések ===== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 40px 0 0; counter-reset: st; }
@media (max-width: 1050px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .steps { grid-template-columns: 1fr; } }
.step {
    position: relative; counter-increment: st; padding: 26px 20px 22px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    transition: var(--t);
}
.step:hover { border-color: rgba(76,175,80,.45); transform: translateY(-5px); }
.step::before {
    content: '0' counter(st); display: block;
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 2rem; font-weight: 800;
    line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(76,175,80,.5);
    margin-bottom: 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.step p { color: var(--text-dim); font-size: .88rem; margin: 0; line-height: 1.6; }

/* ===== Elvek / alapelvek ===== */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 36px 0 0; }
@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }
.principle {
    display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
    background: var(--bg-3); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px 24px;
    transition: var(--t);
}
.principle:hover { border-color: rgba(76,175,80,.4); }
.principle__ic {
    width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.28); color: var(--accent);
}
.principle__ic svg { width: 22px; height: 22px; }
.principle h3 { font-size: 1.02rem; margin-bottom: 8px; line-height: 1.35; }
.principle p { color: var(--text-dim); font-size: .93rem; margin: 0; }

/* ===== Kompakt adatsáv ===== */
.factbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; margin: 36px 0 0; }
.factbar div { background: var(--surface); padding: 20px 22px; }
.factbar dt { color: var(--text-dim); font-size: .78rem; text-transform: uppercase;
    letter-spacing: 1.2px; font-weight: 700; margin-bottom: 6px; }
.factbar dd { margin: 0; font-size: .98rem; font-weight: 600; line-height: 1.45; }
.factbar dd a { color: var(--accent); }

/* ===== Széles szekció-fejléc aloldalon ===== */
.sec { padding: clamp(56px, 8vw, 96px) 0; }
.sec--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec__head { max-width: 720px; margin-bottom: 8px; }
.sec__head p { color: var(--text-dim); margin-top: 14px; font-size: 1.02rem; }
.sec__lead { color: var(--text-dim); max-width: 68ch; margin-top: 16px; font-size: 1.05rem; }
.sec__lead + .sec__lead { margin-top: 14px; }
.sec__lead strong { color: var(--text); }

/* ============================================================
   <picture> elemek – a wrapper ne törje meg a képarányt
   ============================================================ */
picture { display: block; }
.service__media picture,
.page-hero__media picture,
.ref picture,
.about__media picture { width: 100%; height: 100%; }
.service__media picture img,
.page-hero__media picture img,
.ref picture img { width: 100%; height: 100%; object-fit: cover; }
.about__media picture img { width: 100%; height: auto; border-radius: var(--radius); }
.page-hero__media { background: var(--bg-3); }
/* portré arányú hero kép (Rólunk oldal) */
.page-hero__media--portrait { aspect-ratio: 3/4; max-width: 380px; margin-left: auto; }
@media (max-width: 980px) { .page-hero__media--portrait { margin: 0 auto; } }

/* Spam-csapda mező – ember számára láthatatlan, botok kitöltik */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
