:root {
    --bg: #f7f8ff;
    --bg2: #ffffff;
    --ink: #0b1220;
    --muted: rgba(11,18,32,.68);
    --stroke: rgba(15,23,42,.10);
    --stroke2: rgba(15,23,42,.07);
    --shadow: 0 20px 70px rgba(2,6,23,.10);
    --shadow2: 0 12px 34px rgba(2,6,23,.10);
    --r: 18px;
    --r2: 24px;
    --a1: #1f6feb; /* blue */
    --a2: #7c3aed; /* purple */
    --a3: #d946ef; /* magenta */

    --grad: linear-gradient(135deg, rgba(31,111,235,.92), rgba(124,58,237,.90) 55%, rgba(217,70,239,.86) );
    --accent-bg: rgba(124,58,237,.06);
    --accent-bg2: rgba(31,111,235,.06);
    --accent-ring: rgba(124,58,237,.14);
    --soft: rgba(124,58,237,.08);
    --soft2: rgba(31,111,235,.08);
    --aiGlow1: rgba(124,58,237,.16);
    --aiGlow2: rgba(31,111,235,.14);
    --aiGlow3: rgba(217,70,239,.12);
    --aiRing: rgba(124,58,237,.22);
    /* NEW: nav sizing tokens */
    --navH: 64px; /* desktop */
    --navH_m: 62px; /* mobile */
    --navPadX: 18px;
    --navPadX_m: 14px;
    --btnH: 44px;
    --btnR: 14px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: radial-gradient(900px 520px at 14% -10%, rgba(31,111,235,.10), transparent 58%), radial-gradient(900px 520px at 86% -10%, rgba(124,58,237,.09), transparent 58%), radial-gradient(900px 520px at 60% 0%, rgba(217,70,239,.06), transparent 60%), linear-gradient(180deg, var(--bg2), var(--bg) 35%, #eef2ff 100%);
}

a {
    color: inherit
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px
}

/* NAV (premium mobile UX) */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid var(--stroke2);
    box-shadow: 0 10px 30px rgba(2,6,23,.06);
    backdrop-filter: none;
    /* Landing oldalak későbbi :root felülírásai ne változtassák a fejléc gomb / CTA megjelenését */
    --btnH: 44px;
    --btnR: 14px;
    --grad: linear-gradient(135deg, rgba(31,111,235,.92), rgba(124,58,237,.90) 55%, rgba(217,70,239,.86));
    --stroke: rgba(15,23,42,.10);
}

.navin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    min-height: var(--navH);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 1000;
    letter-spacing: .2px;
    min-width: 0;
}

.brand-logo {
    height: 42px;
    width: auto;
    display: block;
}

.links {
    display: flex;
    gap: 10px;
    align-items: center
}

    .links a {
        text-decoration: none;
        color: rgba(11,18,32,.72);
        font-weight: 900;
        font-size: 13px;
        padding: 10px 10px;
        border-radius: 12px;
    }

        .links a:hover {
            background: rgba(2,6,23,.04);
        }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--btnH);
    padding: 0 14px;
    border-radius: var(--btnR);
    border: 1px solid var(--stroke);
    text-decoration: none;
    font-weight: 1000;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    box-shadow: none !important;
    outline: none;
    transition: transform .12s ease, background .12s ease, filter .12s ease;
    -webkit-tap-highlight-color: transparent;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: none !important;
    }

    .btn:focus {
        outline: none
    }

    .btn:focus-visible {
        outline: 2px solid rgba(31,111,235,.22);
        outline-offset: 2px
    }

    .btn.primary {
        border: none;
        background: var(--grad);
        color: white;
        box-shadow: none !important;
    }

        .btn.primary:hover {
            filter: saturate(.95) brightness(.98);
        }

    .btn.ghost {
        background: rgba(255,255,255,.86);
    }

/* NEW: nav CTA looks premium (no "cheap pill") */
.navCta {
    position: relative;
    isolation: isolate;
    height: var(--btnH);
    padding: 0 14px;
}

    .navCta:before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: calc(var(--btnR) + 2px);
        background: linear-gradient(135deg, rgba(31,111,235,.32), rgba(124,58,237,.30), rgba(217,70,239,.26));
        opacity: .55;
        z-index: -1;
        filter: blur(.2px);
    }

    .navCta:after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: var(--btnR);
        background: rgba(255,255,255,.06);
        z-index: -1;
        pointer-events: none;
    }

/* Mobile menu button (premium) */
.menuBtn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.12);
    background: radial-gradient(140px 90px at 20% 0%, rgba(31,111,235,.06), transparent 60%), radial-gradient(140px 90px at 80% 100%, rgba(124,58,237,.05), transparent 60%), #fff;
    padding: 0;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 10px 26px rgba(2,6,23,.06);
    outline: none;
    position: relative;
}

    .menuBtn:focus {
        outline: none
    }

    .menuBtn:focus-visible {
        outline: 2px solid rgba(31,111,235,.25);
        outline-offset: 2px
    }

    .menuBtn svg {
        width: 20px;
        height: 20px
    }

        .menuBtn svg * {
            stroke: rgba(11,18,32,.80);
            stroke-width: 2.4;
            stroke-linecap: round;
            transition: transform .18s ease, opacity .18s ease;
        }

    .menuBtn.isOpen svg .t {
        transform: translateY(5px) rotate(45deg);
        transform-origin: 12px 7px;
    }

    .menuBtn.isOpen svg .m {
        opacity: 0
    }

    .menuBtn.isOpen svg .b {
        transform: translateY(-5px) rotate(-45deg);
        transform-origin: 12px 17px;
    }

/* NEW: mobile top row layout */
.navRight {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

/* Mobile menu panel (premium dropdown) */
.mnav {
    display: none;
    padding: 10px 0 14px;
    border-top: 1px solid rgba(2,6,23,.06);
}

.mnavInner {
    display: grid;
    gap: 10px;
}

.mnav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 650;
    font-size: 15px;
    color: rgba(11,18,32,.82);
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(2,6,23,.08);
    background: radial-gradient(180px 90px at 18% 0%, rgba(31,111,235,.06), transparent 60%), radial-gradient(180px 90px at 82% 100%, rgba(124,58,237,.05), transparent 60%), rgba(255,255,255,.94);
    box-shadow: 0 14px 34px rgba(2,6,23,.06);
}

    .mnav a:active {
        transform: translateY(1px);
    }

    .mnav a .chev {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        opacity: .65;
    }

        .mnav a .chev path {
            stroke: rgba(11,18,32,.72);
            stroke-width: 2.4;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

/* NEW: mobile sticky CTA bar (so nav stays clean) */
.mCtaBar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    /* Egyvonalban a .wrap paddingjével (≤980px: 14px) + notch */
    padding: 10px max(14px, env(safe-area-inset-left, 0px)) calc(10px + env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-right, 0px));
    background: rgba(255,255,255,.86);
    border-top: 1px solid rgba(15,23,42,.10);
    backdrop-filter: blur(12px);
    box-shadow: 0 -14px 38px rgba(2,6,23,.10);
    /* Landing :root --grad / --btnH ne torzítsa a sticky gombot */
    --grad: linear-gradient(135deg, rgba(31,111,235,.92), rgba(124,58,237,.90) 55%, rgba(217,70,239,.86));
    --stroke: rgba(15,23,42,.10);
    --btnR: 16px;
}

    .mCtaBar .btn {
        width: 100%;
        box-sizing: border-box;
        min-height: 48px;
        height: auto;
        border-radius: 16px;
        font-size: 15px;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
        padding: 12px 14px;
    }

/* Hero */
.hero {
    padding: 54px 0 18px
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
    align-items: start;
}

.pillStack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--stroke);
    color: rgba(11,18,32,.74);
    font-weight: 1000;
    font-size: 13px;
    box-shadow: 0 10px 26px rgba(2,6,23,.06);
}

h1 {
    margin: 14px 0 12px;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: -1px;
}

.hi {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 62ch;
}

.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.fine {
    margin-top: 14px;
    color: rgba(11,18,32,.62);
    font-size: 13px;
    line-height: 1.6;
}

/* Cards base */
.glass {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--stroke2);
    border-radius: var(--r2);
    box-shadow: var(--shadow2);
    backdrop-filter: blur(12px);
    overflow: hidden;
    position: relative;
}

.panel {
    padding: 18px;
}

.glass:after {
    content: "";
    position: absolute;
    inset: auto -80px -90px -80px;
    height: 220px;
    background: radial-gradient(220px 140px at 25% 30%, rgba(31,111,235,.10), transparent 60%), radial-gradient(220px 140px at 75% 60%, rgba(124,58,237,.08), transparent 60%);
    filter: blur(10px);
    opacity: .85;
    pointer-events: none;
}

.glass > * {
    position: relative;
    z-index: 1;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 1000;
    font-size: 12px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,.90);
    color: rgba(11,18,32,.72);
}

    .chip.brand {
        border-color: rgba(15,23,42,.10);
        background: rgba(2,6,23,.03);
        color: rgba(11,18,32,.72);
    }

.kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.kpi {
    border: 1px solid var(--stroke2);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255,255,255,.92);
}

    .kpi .t {
        font-weight: 1000;
        font-size: 12px;
        color: rgba(11,18,32,.70)
    }

    .kpi .v {
        margin-top: 6px;
        font-weight: 1100;
        font-size: 15px
    }

.trust {
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(11,18,32,.72);
    font-weight: 950;
    font-size: 13px;
}

    .trust span {
        padding: 8px 10px;
        border: 1px solid var(--stroke2);
        border-radius: 999px;
        background: rgba(255,255,255,.72);
    }

.divider {
    height: 1px;
    background: rgba(2,6,23,.08);
    margin: 18px 0;
}

.section {
    padding: 30px 0
}

.h2 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -.2px
}

.desc {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.card {
    padding: 16px;
}

.fhead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.10);
    background: radial-gradient(120px 80px at 20% 0%, rgba(31,111,235,.10), transparent 60%), radial-gradient(120px 80px at 80% 100%, rgba(124,58,237,.08), transparent 60%), rgba(255,255,255,.90);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(2,6,23,.05);
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

    .icon:after {
        content: "";
        position: absolute;
        inset: -18px -22px auto auto;
        width: 56px;
        height: 56px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(31,111,235,.10), rgba(124,58,237,.07));
        transform: translate(10px,-8px);
        pointer-events: none;
    }

    .icon svg {
        width: 20px;
        height: 20px;
        position: relative;
        z-index: 1;
    }

        .icon svg path, .icon svg rect, .icon svg circle, .icon svg polyline, .icon svg line, .icon svg ellipse {
            stroke: rgba(31,111,235,.85);
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.ftag {
    font-size: 12px;
    font-weight: 1000;
    color: rgba(11,18,32,.62);
    margin-bottom: 2px;
}

.card h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: -.2px
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7
}

.plusList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

    .plusList span {
        padding: 8px 10px;
        border: 1px solid var(--stroke2);
        border-radius: 999px;
        background: rgba(255,255,255,.72);
        color: rgba(11,18,32,.72);
        font-weight: 950;
        font-size: 13px;
        line-height: 1.1;
        white-space: nowrap;
    }

/* AI */
.aiWrap {
    position: relative
}

.aiHighlight {
    border-radius: calc(var(--r2) + 6px);
    padding: 16px;
    border: 1px solid rgba(124,58,237,.14);
    background: radial-gradient(520px 240px at 12% 10%, var(--aiGlow2), transparent 60%), radial-gradient(520px 240px at 88% 0%, var(--aiGlow1), transparent 62%), radial-gradient(520px 240px at 60% 110%, var(--aiGlow3), transparent 60%), rgba(255,255,255,.52);
    box-shadow: 0 22px 70px rgba(124,58,237,.10);
    position: relative;
    overflow: hidden;
}

    .aiHighlight:before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: calc(var(--r2) + 10px);
        pointer-events: none;
        background: linear-gradient(135deg, rgba(31,111,235,.18), rgba(124,58,237,.18), rgba(217,70,239,.14));
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        padding: 1px;
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: .85;
    }

.aiHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.aiTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.robotBadge {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    border: 1px solid rgba(124,58,237,.20);
    background: radial-gradient(120px 90px at 20% 0%, rgba(31,111,235,.16), transparent 60%), radial-gradient(120px 90px at 80% 100%, rgba(124,58,237,.14), transparent 60%), rgba(255,255,255,.86);
    box-shadow: 0 18px 48px rgba(124,58,237,.16);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

    .robotBadge:after {
        content: "";
        position: absolute;
        inset: -14px -18px auto auto;
        width: 64px;
        height: 64px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(31,111,235,.16), rgba(217,70,239,.12));
        transform: translate(10px,-10px);
        pointer-events: none;
        opacity: .9;
    }

    .robotBadge svg {
        width: 22px;
        height: 22px;
        position: relative;
        z-index: 1;
    }

        .robotBadge svg * {
            stroke: rgba(124,58,237,.92);
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.aiH2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.25px;
    line-height: 1.1;
}

    .aiH2 .aiWord {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 1200;
    }

.aiSub {
    margin: 3px 0 0;
    color: rgba(11,18,32,.70);
    font-weight: 950;
    font-size: 13px;
    line-height: 1.5;
}

.aiStats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.aiStat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(124,58,237,.16);
    background: rgba(255,255,255,.70);
    box-shadow: 0 10px 24px rgba(2,6,23,.05);
    color: rgba(11,18,32,.74);
    font-weight: 1100;
    font-size: 13px;
    white-space: nowrap;
}

    .aiStat .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(31,111,235,.95), rgba(124,58,237,.92));
        box-shadow: 0 8px 20px rgba(124,58,237,.22);
    }

.ai {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.box {
    padding: 16px;
}

.input {
    font-weight: 900;
    color: rgba(11,18,32,.82);
    line-height: 1.7;
    padding: 12px;
    border-radius: 16px;
    border: 1px dashed rgba(15,23,42,.18);
    background: rgba(255,255,255,.78);
    margin-top: 10px;
}

.list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none
}

    .list li {
        padding: 10px 0;
        border-top: 1px solid rgba(2,6,23,.08);
        color: rgba(11,18,32,.74);
        font-weight: 950;
    }

        .list li:first-child {
            border-top: none
        }

.tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    margin-right: 10px;
    border: 1px solid rgba(31,111,235,.18);
    background: rgba(31,111,235,.08);
    color: rgba(31,111,235,.95);
    font-weight: 1100;
    font-size: 12px;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items: stretch;
}

.priceBox {
    padding: 18px;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 55px rgba(2,6,23,.08);
    position: relative;
}

    .priceBox:before {
        content: "";
        position: absolute;
        inset: -120px -140px auto auto;
        width: 280px;
        height: 280px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(124,58,237,.10), transparent 60%);
        transform: translate(30px,-10px);
        pointer-events: none;
    }

.price {
    font-size: 38px;
    font-weight: 1200;
    margin: 10px 0 2px;
    letter-spacing: -.6px;
}

    .price small {
        font-size: 14px;
        font-weight: 950;
        color: rgba(11,18,32,.60)
    }
/* Pricing add-on full width bubble */
.pricingAddons {
    grid-column: 1 / -1; /* ✅ 2 oszlop teljes szélesség */
    padding: 18px;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 55px rgba(2,6,23,.08);
    position: relative;
}

    .pricingAddons:before {
        content: "";
        position: absolute;
        inset: -120px -140px auto auto;
        width: 280px;
        height: 280px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(217,70,239,.09), transparent 60%);
        transform: translate(30px,-10px);
        pointer-events: none;
    }

.addonsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.addonCard {
    border: 1px solid var(--stroke2);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255,255,255,.90);
}

.addonTitle {
    font-weight: 1100;
    color: rgba(11,18,32,.84);
    margin: 0 0 8px;
}

.addonLines {
    margin: 0;
    color: rgba(11,18,32,.72);
    font-weight: 950;
    line-height: 1.7;
    font-size: 13px;
}

.addonHint {
    margin-top: 10px;
    color: rgba(11,18,32,.62);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 900;
}

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

.ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

    .ul li {
        padding: 10px 0;
        border-top: 1px solid rgba(2,6,23,.08);
        color: rgba(11,18,32,.74);
        font-weight: 950;
    }

        .ul li:first-child {
            border-top: none
        }

        .ul li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 8px;
            background: rgba(31,111,235,.08);
            border: 1px solid rgba(31,111,235,.14);
            margin-right: 10px;
            color: rgba(31,111,235,.95);
            font-weight: 1100;
            font-size: 12px;
        }

.customBox {
    padding: 18px;
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 55px rgba(2,6,23,.08);
    position: relative;
}

    .customBox:before {
        content: "";
        position: absolute;
        inset: -120px auto auto -140px;
        width: 280px;
        height: 280px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(31,111,235,.10), transparent 60%);
        transform: translate(-20px,-10px);
        pointer-events: none;
    }

/* Contact */
.email {
    color: var(--a1);
    font-weight: 1100;
    text-decoration: none;
}

    .email:hover {
        text-decoration: underline
    }

.footer {
    padding: 22px 0 44px;
    color: rgba(11,18,32,.60);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
    .wrap {
        padding: 0 14px;
    }

    .links {
        display: none
    }

    .menuBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .navin {
        min-height: var(--navH_m);
        padding: 9px 0;
        gap: 10px;
    }

    .brand-logo {
        height: 38px
    }

    /* Csak a fejléc CTA (nem a sticky sáv / cikkvégi gomb .navCta) */
    .nav .navCta {
        display: none
    }

    .hero {
        padding: 34px 0 18px
    }

    .heroGrid {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 38px
    }

    .grid3 {
        grid-template-columns: 1fr
    }

    .grid2 {
        grid-template-columns: 1fr
    }

    .pricing {
        grid-template-columns: 1fr
    }

    .ai {
        grid-template-columns: 1fr
    }

    .kpis {
        grid-template-columns: 1fr
    }

    .aiHead {
        flex-direction: column;
        align-items: flex-start
    }

    .aiStats {
        justify-content: flex-start
    }

    body {
        padding-bottom: 78px;
    }

    /* Oldalak sticky alsó CTA nélkül (pl. olcso-crm) */
    body.no-mobile-sticky-cta {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .mCtaBar {
        display: block;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 34px
    }

    .menuBtn {
        width: 42px;
        height: 42px;
        border-radius: 14px
    }

    .brand-logo {
        height: 36px
    }

    body {
        padding-bottom: 84px;
    }
}
/* ===== GALLERY / SCREENSHOTS (UPGRADED: slider + arrows + dots + dynamic lightbox) ===== */

.galleryWrap {
    margin-top: 8px;
}

.galleryHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

    .galleryHead .hint {
        color: rgba(11,18,32,.62);
        font-weight: 900;
        font-size: 13px;
        line-height: 1.5;
    }

/* Slider shell */
.gSlider {
    position: relative;
    border-radius: calc(var(--r2) + 2px);
    border: 1px solid var(--stroke2);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow2);
    overflow: hidden;
}

.gViewport {
    position: relative;
    overflow: hidden;
}

.gTrack {
    display: flex;
    gap: 0;
    transition: transform .45s cubic-bezier(.22,.9,.25,1);
    will-change: transform;
    touch-action: pan-y;
}

.gSlide {
    min-width: 100%;
    padding: 14px;
}

/* Card inside slide (reuse existing look, but nicer) */
.shot {
    padding: 12px;
    border-radius: calc(var(--r2));
    border: 1px solid var(--stroke2);
    background: rgba(255,255,255,.86);
    box-shadow: 0 16px 40px rgba(2,6,23,.08);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .16s ease, filter .16s ease;
}

    .shot:hover {
        transform: translateY(-2px);
        filter: saturate(1.02);
    }

.shotMedia {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
    position: relative;
}

    .shotMedia img {
        width: 100%;
        height: min(58vh, 520px);
        object-fit: cover;
        display: block;
        transform: scale(1.01);
        transition: transform .5s ease;
    }

.shot:hover .shotMedia img {
    transform: scale(1.04);
}

/* soft shine */
.shotMedia:after {
    content: "";
    position: absolute;
    inset: auto -20% -35% -20%;
    height: 55%;
    background: radial-gradient(60% 70% at 50% 0%, rgba(31,111,235,.14), transparent 70%), radial-gradient(60% 70% at 30% 40%, rgba(124,58,237,.12), transparent 70%);
    filter: blur(10px);
    opacity: .9;
    pointer-events: none;
}

.shotCap {
    margin-top: 10px;
}

.shotTitle {
    font-weight: 1100;
    margin: 0 0 4px;
    letter-spacing: -.2px;
    font-size: 14px;
    color: rgba(11,18,32,.88);
}

.shotDesc {
    margin: 0;
    color: rgba(11,18,32,.62);
    font-weight: 900;
    font-size: 13px;
    line-height: 1.55;
}

.shotBadge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(124,58,237,.16);
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 24px rgba(2,6,23,.06);
    font-weight: 1000;
    font-size: 12px;
    color: rgba(11,18,32,.72);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

    .shotBadge .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(31,111,235,.95), rgba(124,58,237,.92));
        box-shadow: 0 8px 18px rgba(124,58,237,.22);
    }

/* Slider arrows */
.gNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.82);
    box-shadow: 0 16px 40px rgba(0,0,0,.14);
    cursor: pointer;
    display: grid;
    place-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease, filter .12s ease, opacity .12s ease;
    backdrop-filter: blur(10px);
}

    .gNav:hover {
        transform: translateY(-50%) scale(1.03);
        filter: saturate(1.03);
    }

    .gNav:active {
        transform: translateY(-50%) scale(.98);
    }

    .gNav:focus {
        outline: none;
    }

    .gNav:focus-visible {
        outline: 2px solid rgba(31,111,235,.22);
        outline-offset: 2px;
    }

.gPrev {
    left: 12px;
}

.gNext {
    right: 12px;
}

.gNav svg {
    width: 20px;
    height: 20px;
}

    .gNav svg path {
        stroke: rgba(11,18,32,.78);
        stroke-width: 2.8;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.gNav[disabled] {
    opacity: .45;
    cursor: default;
}

    .gNav[disabled]:hover {
        transform: translateY(-50%);
    }

/* Dots + counter */
.gFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(2,6,23,.08);
    background: rgba(255,255,255,.76);
}

.gDots {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.gDot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.18);
    background: rgba(2,6,23,.08);
    cursor: pointer;
    padding: 0;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, width .12s ease;
}

    .gDot[aria-current="true"] {
        width: 24px;
        background: linear-gradient(135deg, rgba(31,111,235,.95), rgba(124,58,237,.90));
        border-color: rgba(124,58,237,.28);
    }

.gCounter {
    color: rgba(11,18,32,.62);
    font-weight: 950;
    font-size: 13px;
    white-space: nowrap;
}

/* Lightbox (UPGRADED: arrows + dynamic sizing to image + nice effect) */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(2,6,23,.72);
    backdrop-filter: blur(10px);
}

    .lightbox.open {
        display: flex;
    }

.lbCard {
    width: auto; /* dynamic */
    max-width: min(96vw, 1240px);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.92);
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
    overflow: hidden;
    position: relative;
    transform: scale(.98);
    opacity: .0;
    transition: transform .18s ease, opacity .18s ease;
}

.lightbox.open .lbCard {
    transform: scale(1);
    opacity: 1;
}

.lbTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(2,6,23,.10);
    background: radial-gradient(240px 110px at 20% 0%, rgba(31,111,235,.08), transparent 60%), radial-gradient(240px 110px at 80% 100%, rgba(124,58,237,.07), transparent 60%), rgba(255,255,255,.94);
}

.lbTitle {
    font-weight: 1100;
    color: rgba(11,18,32,.84);
    letter-spacing: -.2px;
    font-size: 14px;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lbClose {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.12);
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(2,6,23,.08);
}

    .lbClose svg {
        width: 20px;
        height: 20px;
    }

        .lbClose svg path {
            stroke: rgba(11,18,32,.78);
            stroke-width: 2.6;
            fill: none;
            stroke-linecap: round;
        }

.lbImgWrap {
    position: relative;
    background: rgba(2,6,23,.04);
}

/* IMPORTANT: no fixed height -> card matches image size, but capped by viewport */
.lbImg {
    display: block;
    width: auto;
    height: auto;
    max-width: min(92vw, 1240px);
    max-height: 78vh;
    object-fit: contain;
    margin: 0 auto;
}

.lbMeta {
    padding: 14px 14px 16px;
    color: rgba(11,18,32,.70);
    font-weight: 900;
    line-height: 1.7;
}

    .lbMeta strong {
        color: rgba(11,18,32,.86);
    }

.lbArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.82);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
    cursor: pointer;
    display: grid;
    place-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease, opacity .12s ease;
    backdrop-filter: blur(10px);
}

    .lbArrow:hover {
        transform: translateY(-50%) scale(1.03);
    }

    .lbArrow:active {
        transform: translateY(-50%) scale(.98);
    }

    .lbArrow:focus {
        outline: none;
    }

    .lbArrow:focus-visible {
        outline: 2px solid rgba(31,111,235,.22);
        outline-offset: 2px;
    }

    .lbArrow[disabled] {
        opacity: .45;
        cursor: default;
    }

        .lbArrow[disabled]:hover {
            transform: translateY(-50%);
        }

.lbPrev {
    left: 12px;
}

.lbNext {
    right: 12px;
}

.lbArrow svg {
    width: 20px;
    height: 20px;
}

    .lbArrow svg path {
        stroke: rgba(11,18,32,.78);
        stroke-width: 2.8;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Responsive tweaks */
@media (max-width: 980px) {
    .shotMedia img {
        height: min(44vh, 360px);
    }

    .gPrev {
        left: 10px;
    }

    .gNext {
        right: 10px;
    }
}

@media (max-width: 520px) {
    .shotMedia img {
        height: 240px;
    }

    .gNav {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .lbArrow {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .lbImg {
        max-height: 72vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gTrack, .shot, .shotMedia img, .lbCard {
        transition: none !important;
    }
}
/* ===== Anchor offset fix sticky nav-hoz ===== */
:root {
    --scrollOffset: calc(var(--navH) + 14px);
}

@media (max-width: 980px) {
    :root {
        --scrollOffset: calc(var(--navH_m) + 14px);
    }
}

/* minden id-s célpontra */
[id] {
    scroll-margin-top: var(--scrollOffset);
}
/* Mobile menu panel open state (FIX) */
.mnav.open {
    display: block;
}

.footer a:hover {
    text-decoration: underline;
}

/* Webform (Kapcsolat → CégemOne API) */
.webform-fields {
    margin: 0 0 14px;
}

.webform-row {
    margin-bottom: 14px;
}

.webform-label {
    display: block;
    font-weight: 1000;
    font-size: 13px;
    color: rgba(11,18,32,.82);
    margin-bottom: 6px;
}

.webform-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--stroke2);
    background: rgba(255,255,255,.92);
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    box-sizing: border-box;
    transition: border-color .12s ease, box-shadow .12s ease;
}

    .webform-input:focus {
        outline: none;
        border-color: rgba(31,111,235,.35);
        box-shadow: 0 0 0 3px rgba(31,111,235,.12);
    }

    .webform-input::placeholder {
        color: rgba(11,18,32,.45);
    }

.webform-msg {
    margin-top: 12px;
    font-weight: 1000;
    font-size: 14px;
    line-height: 1.5;
}
/* ===== Article / blog — nyugodt, szerkesztőség-szerű olvasás (nem „minden félkövér”) ===== */
body.article-page {
    padding-bottom: 0;
    /* kevésbé rikító mint a landing neon gradiens */
    background: linear-gradient(180deg, #f4f6fa 0%, #eef1f7 42%, #e8ecf4 100%);
}

@media (max-width: 980px) {
    body.article-page {
        padding-bottom: 28px;
    }

    /* Cikk / tartalomjegyzék: több lélegző hely mobilon + notch */
    body.article-page .wrap {
        padding-left: max(18px, env(safe-area-inset-left, 0px));
        padding-right: max(18px, env(safe-area-inset-right, 0px));
    }
}

.article-shell {
    padding: 32px 0 56px;
    /* ugyanaz a vízszintes keret mint a főoldalon (.wrap), ne legyen keskeny „oszlop” */
    width: 100%;
}

.article-shell .article-back {
    margin: 0 0 18px;
}

.article-shell .article-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: rgba(11,18,32,.52);
    border-radius: 12px;
    padding: 8px 10px;
    margin: -8px -10px;
}

.article-shell .article-back a:hover {
    background: rgba(2,6,23,.05);
    color: rgba(11,18,32,.78);
}

.article-card {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: var(--r2);
    border: 1px solid rgba(15,23,42,.07);
    background: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 24px 48px rgba(2,6,23,.05);
    padding: 40px 44px 48px;
}

@media (max-width: 640px) {
    body.article-page .wrap {
        padding-left: max(22px, env(safe-area-inset-left, 0px));
        padding-right: max(22px, env(safe-area-inset-right, 0px));
    }

    .article-shell {
        padding-top: 24px;
        padding-bottom: 44px;
    }

    .article-card {
        padding: 22px 18px 28px;
        border-radius: calc(var(--r2) - 4px);
    }
}

.article-card .article-title {
    margin: 0 0 14px;
    font-size: clamp(1.65rem, 2.8vw + 0.6rem, 2.35rem);
    line-height: 1.18;
    letter-spacing: -0.045em;
    font-weight: 620;
    color: rgba(11,18,32,.94);
}

.article-card .article-meta {
    margin: 0 0 32px;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 14px;
    font-weight: 450;
    color: rgba(11,18,32,.46);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-card .article-meta::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 20px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(31,111,235,.75), rgba(124,58,237,.65));
}

/* Törzs: teljes szélesség a .wrap-on belül; 18px körüli „magazin” alap (Stripe/Linear blog vonal) */
.article-body {
    font-size: 1.125rem;
    line-height: 1.78;
    color: rgba(11,18,32,.76);
    font-weight: 400;
    letter-spacing: -0.011em;
    font-variant-numeric: oldstyle-nums;
    max-width: none;
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body > *:last-child {
    margin-bottom: 0;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    color: rgba(11,18,32,.88);
    font-weight: 650;
    line-height: 1.3;
    margin: 1.65em 0 0.65em;
    letter-spacing: -0.02em;
}

.article-body h1:first-child,
.article-body h2:first-child {
    margin-top: 0;
}

.article-body h1 { font-size: 1.45rem; font-weight: 640; letter-spacing: -0.03em; }
.article-body h2 {
    font-size: clamp(1.12rem, 1.5vw + 0.85rem, 1.35rem);
    font-weight: 600;
    margin-top: 2em;
}
.article-body h3 { font-size: 1.08rem; font-weight: 580; color: rgba(11,18,32,.78); }
.article-body h4 { font-size: 1.02rem; font-weight: 560; color: rgba(11,18,32,.72); }

.article-body p {
    margin: 0 0 1.05em;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.1em 0;
    padding: 0;
    padding-left: 1.35em;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body li {
    margin: 0.45em 0;
    line-height: 1.75;
    color: rgba(11,18,32,.7);
}

.article-body li::marker {
    color: rgba(11,18,32,.35);
}

.article-body a {
    color: rgba(31, 111, 235, .88);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: rgba(24, 88, 199, .95);
}

/* Félkövér: finom hangsúly, nem „fekete téglák” */
.article-body strong,
.article-body b {
    font-weight: 600;
    color: rgba(11,18,32,.82);
}

.article-body blockquote {
    margin: 1.35em 0;
    padding: 16px 20px;
    border-left: 3px solid rgba(124,58,237,.22);
    background: rgba(124,58,237,.035);
    border-radius: 0 12px 12px 0;
    color: rgba(11,18,32,.68);
    font-weight: 400;
}

.article-body blockquote strong,
.article-body blockquote b {
    font-weight: 600;
    color: rgba(11,18,32,.78);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.08);
}

.article-body pre,
.article-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.88em;
}

.article-body code {
    font-weight: 500;
    color: rgba(11,18,32,.75);
    background: rgba(11,18,32,.05);
    padding: 0.12em 0.4em;
    border-radius: 6px;
}

.article-body pre {
    overflow-x: auto;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(11,18,32,.035);
    border: 1px solid rgba(15,23,42,.08);
}

/* CTA a cikkvégén: ugyanaz a gomb mint a főoldalon (.btn.primary + navCta gyűrű) */
.article-body .article-cta-wrap {
    margin: 2em 0 0.75em;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.article-body .article-cta-wrap .btn {
    text-decoration: none !important;
    color: inherit;
    font-weight: 1000;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    min-height: var(--btnH);
    height: auto;
    padding: 12px 18px;
    max-width: 100%;
}

.article-body .article-cta-wrap .btn.primary {
    color: #fff !important;
    border: none;
    background: var(--grad);
}

.article-body .article-cta-wrap .btn.primary:hover {
    filter: saturate(.95) brightness(.98);
}

/* .navCta:before / :after a globális szabályokból (nav) — itt is ugyanaz a gyűrű */

/* Content hub */
.content-hub h1 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    letter-spacing: -0.04em;
    line-height: 1.2;
    font-weight: 650;
    color: rgba(11,18,32,.88);
}

.content-hub .hub-lead {
    margin: 0 0 24px;
    color: rgba(11,18,32,.58);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 62ch;
    font-weight: 400;
}

.content-hub-section {
    margin: 0 0 28px;
}

.content-hub-section:last-child {
    margin-bottom: 0;
}

.content-hub-h2 {
    margin: 0 0 14px;
    font-size: clamp(1.12rem, 2.2vw, 1.28rem);
    font-weight: 620;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: rgba(11,18,32,.78);
}

.content-hub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.content-hub-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: var(--r2);
    border: 1px solid var(--stroke2);
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 28px rgba(2,6,23,.05);
    color: inherit;
    transition: transform .12s ease, box-shadow .12s ease;
}

.content-hub-list a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow2);
}

.content-hub-list .t {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 1.02rem;
    color: rgba(11,18,32,.82);
    line-height: 1.35;
}

.content-hub-list .chev {
    color: rgba(11,18,32,.32);
    font-weight: 500;
    flex: 0 0 auto;
}

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

.content-hub .hub-lead code {
    font-size: 0.86em;
    font-weight: 550;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(11,18,32,.05);
    border: 1px solid rgba(15,23,42,.08);
}

@media (max-width: 640px) {
    .content-hub-list a {
        padding: 14px 16px;
        gap: 12px;
    }

    .content-hub-list .t {
        font-size: 0.98rem;
    }

    .content-hub .hub-lead {
        font-size: 1rem;
    }
}
