/* ÜresÓra CSS split: Core, shared layout, legacy homepage sections, reviews, footer. Source: app.css lines 1-5178. */
/* ═════════════════════════════════════════════════════════════════════════
   ÜresÓra · APP STYLESHEET (consolidated)
   - animations.css
   - auth-modals.css
   - overhaul.css
   - hero.css
   ═════════════════════════════════════════════════════════════════════════ */



/* ═══════════════════════════════════════════════════════════════════════
   animations.css
   ═══════════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────────────────
   ÜresÓra · Premium animációk és mobile drawer (3.A+)
   Önálló stylesheet a fő styles.css mellett — modern feel réteg.
   ───────────────────────────────────────────────────────────────────────── */

/* ─── Cubic-bezier easing tokens ──────────────────────────────────────── */
:root {
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
    --ease-snap:   cubic-bezier(0.25, 1.5, 0.5, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ═════════════════════════════════════════════════════════════════════════
   MAPLIBRE DISCOVERY · ajánlatok térképes böngészés
   ═════════════════════════════════════════════════════════════════════════ */
.uo-discovery-shell {
    display: block;
}

body.uo-offers-map-view .uo-discovery-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw);
    gap: 24px;
    align-items: start;
}

.uo-discovery-list {
    min-width: 0;
}

.uo-discovery-shell .ajanlatok-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.uo-offers-map-view .uo-discovery-shell .ajanlatok-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.uo-discovery-map-panel {
    position: sticky;
    top: 88px;
    display: none;
    min-width: 0;
}

body.uo-offers-map-view .uo-discovery-map-panel {
    display: block;
}

.uo-map-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(20, 23, 31, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 44px rgba(20, 23, 31, 0.08);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.uo-map-topbar span {
    display: block;
    margin-bottom: 2px;
    color: #ff6a00;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.uo-map-topbar strong {
    color: #14171f;
    font-size: 14px;
}

.uo-map-topbar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: #14171f;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.uo-discovery-shell .ajanlatok-map-wrap {
    position: relative;
    height: calc(100dvh - 174px);
    min-height: 560px;
    max-height: 760px;
    border: 1px solid rgba(20, 23, 31, 0.10);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 106, 0, 0.22), transparent 30%),
        #101317;
    box-shadow: 0 30px 90px rgba(20, 23, 31, 0.16);
    overflow: hidden;
}

#offers-map,
#offers-map-mobile {
    width: 100%;
    height: 100%;
    background: #0d1116;
}

.uo-map-marker {
    position: relative;
    display: inline-grid;
    place-items: center;
    min-width: 48px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px 999px 999px 8px;
    background: linear-gradient(135deg, #ff6a00, #ff8a2d);
    color: #fff;
    box-shadow:
        0 14px 34px rgba(255, 106, 0, 0.38),
        0 0 0 7px rgba(255, 106, 0, 0.13);
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    transform: rotate(-8deg) translateY(0);
    transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms ease, filter 180ms ease;
}

.uo-map-marker span {
    display: block;
    transform: rotate(8deg);
    white-space: nowrap;
}

.uo-map-marker::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.28), transparent 64%);
    opacity: 0;
    transition: opacity 180ms ease;
    z-index: -1;
}

.uo-map-marker:hover,
.uo-map-marker.is-active {
    transform: rotate(-8deg) translateY(-6px) scale(1.08);
    box-shadow:
        0 18px 46px rgba(255, 106, 0, 0.48),
        0 0 0 10px rgba(255, 106, 0, 0.17);
    filter: saturate(1.12);
}

.uo-map-marker:hover::after,
.uo-map-marker.is-active::after {
    opacity: 1;
}

.uo-map-card-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    pointer-events: none;
}

.uo-map-pop-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    max-width: 460px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(13, 15, 18, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 24px 70px rgba(0, 0, 0, 0.35);
    color: #fff;
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    pointer-events: auto;
    animation: uo-map-card-in 260ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.uo-map-pop-card img {
    width: 118px;
    height: 128px;
    border-radius: 16px;
    object-fit: cover;
}

.uo-map-pop-card span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 750;
}

.uo-map-pop-card h3 {
    margin: 5px 0 4px;
    color: #fff;
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.uo-map-pop-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.uo-map-pop-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.uo-map-pop-meta b,
.uo-map-pop-meta small {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.16);
    color: #ff8a2d;
    font-size: 12px;
    font-weight: 900;
}

.uo-map-pop-meta strong {
    margin-left: auto;
    color: #fff;
    font-size: 17px;
}

.uo-map-pop-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 12px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.aj-card.is-map-active,
.uo-map-mobile-card.is-map-active {
    border-color: rgba(255, 106, 0, 0.54) !important;
    box-shadow: 0 18px 44px rgba(255, 106, 0, 0.12) !important;
}

.uo-mobile-map-button {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 48;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(20, 23, 31, 0.88);
    color: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    transform: translateX(-50%);
}

.uo-map-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    background: #0b0e12;
}

.uo-map-modal.is-open {
    display: block;
}

.uo-map-modal-head {
    position: absolute;
    top: max(14px, env(safe-area-inset-top));
    left: 14px;
    right: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 8px 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(14, 16, 19, 0.72);
    color: #fff;
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.uo-map-modal-head strong {
    font-size: 15px;
}

.uo-map-modal-head button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

#offers-map-mobile {
    position: absolute;
    inset: 0;
}

.uo-map-mobile-cards {
    position: absolute;
    left: 0;
    right: 0;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 4;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    gap: 12px;
    overflow-x: auto;
    padding: 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.uo-map-mobile-cards::-webkit-scrollbar {
    display: none;
}

.uo-map-mobile-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    background: rgba(16, 18, 21, 0.78);
    color: #fff;
    text-decoration: none;
    scroll-snap-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.uo-map-mobile-card img {
    width: 82px;
    height: 92px;
    border-radius: 15px;
    object-fit: cover;
}

.uo-map-mobile-card b,
.uo-map-mobile-card small,
.uo-map-mobile-card em {
    display: block;
}

.uo-map-mobile-card b {
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
}

.uo-map-mobile-card small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.uo-map-mobile-card em {
    margin-top: 10px;
    color: #ff8a2d;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

body.uo-map-modal-open {
    overflow: hidden;
}

@keyframes uo-map-card-in {
    from { opacity: 0; transform: translate3d(0, 14px, 0) scale(0.98); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1280px) {
    body.uo-offers-map-view .uo-discovery-shell {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 38vw);
        gap: 20px;
    }

    .uo-discovery-shell .ajanlatok-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.uo-offers-map-view .uo-discovery-shell .ajanlatok-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 900px) {
    body.uo-offers-map-view .uo-discovery-shell,
    .uo-discovery-shell {
        display: block;
    }

    .uo-discovery-map-panel {
        display: none !important;
    }

    .uo-mobile-map-button {
        display: inline-flex;
    }

    .uo-discovery-shell .ajanlatok-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Final map toggle behavior: map view fully replaces the list. */
body.uo-offers-map-view .uo-discovery-shell {
    display: block !important;
}

body.uo-offers-map-view .uo-discovery-list {
    display: none !important;
}

body.uo-offers-map-view .uo-discovery-map-panel {
    position: relative;
    top: auto;
    display: block !important;
    width: 100%;
}

body.uo-offers-map-view .uo-map-topbar {
    margin-bottom: 14px;
}

body.uo-offers-map-view .uo-discovery-shell .ajanlatok-map-wrap {
    height: min(78dvh, 820px);
    min-height: 620px;
    max-height: none;
    border-radius: 30px;
}

@media (min-width: 901px) {
    .uo-discovery-shell {
        position: relative;
        view-transition-name: offers-discovery;
    }

    .uo-discovery-list,
    .uo-discovery-map-panel {
        will-change: transform, opacity, filter;
        transition:
            opacity 360ms var(--ease-out),
            transform 460ms var(--ease-out),
            filter 360ms ease;
    }

    body.uo-offers-list-view .uo-discovery-list {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: none;
    }

    body.uo-offers-list-view .uo-discovery-map-panel {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(0.985);
        filter: blur(12px);
        pointer-events: none;
    }

    body.uo-offers-map-view .uo-discovery-list {
        opacity: 0;
        transform: translate3d(0, -28px, 0) scale(0.985);
        filter: blur(12px);
        pointer-events: none;
    }

    body.uo-offers-map-view .uo-discovery-map-panel {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: none;
        pointer-events: auto;
    }

    body.uo-offers-view-transitioning .uo-discovery-shell {
        position: relative;
        isolation: isolate;
        border-radius: 30px;
    }

    body.uo-offers-view-transitioning .uo-discovery-shell::before {
        content: "";
        position: absolute;
        inset: -18px;
        z-index: 0;
        border-radius: 34px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34));
        backdrop-filter: blur(24px) saturate(145%);
        -webkit-backdrop-filter: blur(24px) saturate(145%);
        pointer-events: none;
    }

    body.uo-offers-view-transitioning .uo-discovery-list,
    body.uo-offers-view-transitioning .uo-discovery-map-panel {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1;
    }

    body.uo-offers-view-transitioning .uo-discovery-map-panel {
        width: 100%;
    }
}

::view-transition-old(offers-discovery),
::view-transition-new(offers-discovery) {
    height: 100%;
    overflow: clip;
    border-radius: 30px;
}

body.uo-offers-native-view-transition::view-transition-old(offers-discovery) {
    animation: uo-offers-view-out 300ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

body.uo-offers-native-view-transition::view-transition-new(offers-discovery) {
    animation: uo-offers-view-in 460ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

body.uo-offers-to-map::view-transition-new(offers-discovery) {
    animation-name: uo-offers-map-in;
}

body.uo-offers-to-list::view-transition-new(offers-discovery) {
    animation-name: uo-offers-list-in;
}

@keyframes uo-offers-view-out {
    from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
    to { opacity: 0; transform: translate3d(0, -18px, 0) scale(0.985); filter: blur(10px); }
}

@keyframes uo-offers-view-in {
    from { opacity: 0; transform: translate3d(0, 22px, 0) scale(0.985); filter: blur(12px); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes uo-offers-map-in {
    from { opacity: 0; transform: translate3d(0, 28px, 0) scale(0.975); filter: blur(14px) saturate(0.94); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0) saturate(1); }
}

@keyframes uo-offers-list-in {
    from { opacity: 0; transform: translate3d(0, -22px, 0) scale(0.985); filter: blur(12px); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@media (max-width: 900px) {
    body.uo-offers-map-view .uo-discovery-list {
        display: block !important;
    }

    body.uo-offers-map-view .uo-discovery-map-panel {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   1. MOBIL DRAWER — slide-out menü jobbról
   ═══════════════════════════════════════════════════════════════════════ */

.mobile-drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms var(--ease-smooth), visibility 280ms;
    z-index: 998;
}
.mobile-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 360ms var(--ease-out);
    z-index: 999;
    display: flex; flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}
.mobile-drawer-head .logo { padding: 0; }
.mobile-drawer-close {
    width: 38px; height: 38px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-1);
    font-size: 22px; line-height: 1;
    cursor: pointer;
    display: grid; place-items: center;
    transition: all 200ms var(--ease-out);
}
.mobile-drawer-close:hover {
    background: var(--glass-strong);
    transform: rotate(90deg);
}

.mobile-drawer-user {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.mobile-drawer-user .user-avatar {
    width: 42px; height: 42px;
    font-size: 16px;
}
.mobile-drawer-user-name {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}
.mobile-drawer-user-email {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
}

.mobile-drawer-nav {
    display: flex; flex-direction: column;
    padding: 12px 14px;
}
.mobile-drawer-nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 200ms var(--ease-out);
    /* staggered entrance on drawer open */
    opacity: 0;
    transform: translateX(20px);
}
.mobile-drawer.open .mobile-drawer-nav a {
    animation: drawer-item-in 400ms var(--ease-out) forwards;
    animation-delay: calc(80ms + var(--i, 0) * 50ms);
}
@keyframes drawer-item-in {
    to { opacity: 1; transform: translateX(0); }
}

.mobile-drawer-nav a:hover {
    background: var(--glass);
    color: var(--accent);
}
.mobile-drawer-nav a.active {
    background: var(--glass-strong);
    color: var(--accent);
}
.mobile-drawer-nav-icon {
    width: 28px; height: 28px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: var(--glass);
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
}
.mobile-drawer-nav-arrow {
    margin-left: auto;
    color: var(--text-3);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 220ms var(--ease-out);
}
.mobile-drawer-nav a:hover .mobile-drawer-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 22px;
}

.mobile-drawer-cta {
    margin-top: auto;
    padding: 22px;
    border-top: 1px solid var(--border);
}

/* Body lock while drawer open */
body.drawer-open {
    overflow: hidden;
    /* Prevent layout shift from scrollbar disappearing */
    padding-right: var(--scrollbar-w, 0);
}

/* Animated hamburger to X
   Override the styles.css base which uses flex column — we need
   absolute positioning so the spans can morph into an X. */
.hamburger {
    position: relative;
    display: none;          /* hidden by default, shown on mobile via @media */
    width: 24px !important;
    height: 18px !important;
    /* Reset the flex props from styles.css so they don't interfere */
    flex-direction: initial;
    justify-content: initial;
    align-items: initial;
    gap: 0;
    /* Visual: minimal box, just the bars */
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 280ms var(--ease-out);
}

/* Show on mobile/tablet */
@media (max-width: 1024px) {
    .hamburger {
        display: block !important;
        /* Slightly larger tap target via pseudo-element */
        position: relative;
    }
    .hamburger::before {
        content: "";
        position: absolute;
        inset: -10px;
        /* Invisible expanded tap area for finger-friendly target */
    }
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100% !important;        /* override styles.css width:18px */
    background: var(--text-1);
    border-radius: 2px;
    left: 0;
    transition: transform 280ms var(--ease-snap),
                opacity 200ms ease,
                top 280ms var(--ease-snap),
                background 200ms ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.is-open span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* Régi mobile-menu kikapcsolása */
.mobile-menu { display: none !important; }


/* ═══════════════════════════════════════════════════════════════════════
   2. PAGE LOAD ENTRANCE ANIMÁCIÓK
   ═══════════════════════════════════════════════════════════════════════ */

/* Hero szekció elemei egymás után jönnek be */
.hero-eyebrow,
.display,
.hero .lede,
.search-card,
.hero-stats {
    opacity: 0;
    animation: hero-rise 800ms var(--ease-out) forwards;
}
.hero-eyebrow      { animation-delay: 100ms; }
.display           { animation-delay: 200ms; }
.hero .lede        { animation-delay: 350ms; }
.search-card       { animation-delay: 500ms; }
.hero-stats        { animation-delay: 700ms; }

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Page hero (aloldalak fejléce) */
.page-hero .eyebrow,
.page-hero .page-title,
.page-hero .lede {
    opacity: 0;
    animation: hero-rise 700ms var(--ease-out) forwards;
}
.page-hero .eyebrow    { animation-delay: 100ms; }
.page-hero .page-title { animation-delay: 200ms; }
.page-hero .lede       { animation-delay: 350ms; }


/* ═══════════════════════════════════════════════════════════════════════
   3. ANIMATED GRADIENT — Hero háttér
   ═══════════════════════════════════════════════════════════════════════ */

.hero-grad {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,106,0,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 80% 70%, rgba(110,30,180,0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15,17,21,0.85) 0%, rgba(15,17,21,0.95) 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    animation: hero-gradient-drift 24s ease-in-out infinite;
}
@keyframes hero-gradient-drift {
    0%, 100% { background-position: 0% 50%, 100% 50%, 0 0; }
    50%      { background-position: 100% 50%, 0% 50%, 0 0; }
}


/* ═══════════════════════════════════════════════════════════════════════
   4. SUBTLE DOT PATTERN — Hero hátterek
   ═══════════════════════════════════════════════════════════════════════ */

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* Make sure z-index is right */
.hero { position: relative; }
.hero-content, .page-hero-content { position: relative; z-index: 2; }


/* ═══════════════════════════════════════════════════════════════════════
   5. SCROLL REVEAL — JS triggered (.is-revealed)
   ═══════════════════════════════════════════════════════════════════════ */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="scale"] {
    transform: scale(0.94);
}
[data-reveal="scale"].is-revealed {
    transform: scale(1);
}

[data-reveal="left"] {
    transform: translateX(-32px);
}
[data-reveal="left"].is-revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(32px);
}
[data-reveal="right"].is-revealed {
    transform: translateX(0);
}


/* ═══════════════════════════════════════════════════════════════════════
   6. MIKRO-INTERAKCIÓK — gombok, kártyák
   ═══════════════════════════════════════════════════════════════════════ */

/* Gombok — emelkednek + halvány árnyék */
.btn {
    transition: transform 180ms var(--ease-out),
                box-shadow 180ms var(--ease-out),
                background 180ms ease,
                border-color 180ms ease,
                color 180ms ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.25);
}
.btn-ghost:hover {
    transform: translateY(-1px);
}

/* Ajánlat-kártyák — hover lift + image zoom */
.offer-card {
    transition: transform 320ms var(--ease-out),
                box-shadow 320ms var(--ease-out),
                border-color 320ms ease;
}
.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--border-strong);
}
.offer-card .offer-img img {
    transition: transform 600ms var(--ease-out);
}
.offer-card:hover .offer-img img {
    transform: scale(1.06);
}

/* Kategória kártyák */
.cat-card {
    transition: transform 280ms var(--ease-out),
                box-shadow 280ms var(--ease-out);
    position: relative;
    overflow: hidden;
}
.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(255,106,0,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 320ms ease;
    pointer-events: none;
}
.cat-card:hover::after {
    opacity: 1;
}

/* Trust kártyák */
.trust-card {
    transition: transform 280ms var(--ease-out),
                background 280ms ease,
                border-color 280ms ease;
}
.trust-card:hover {
    transform: translateY(-3px);
    background: var(--glass-strong);
    border-color: var(--border-strong);
}

/* Step kártyák */
.step-card {
    transition: transform 320ms var(--ease-out),
                background 320ms ease;
}
.step-card:hover {
    transform: translateY(-3px) scale(1.01);
    background: var(--surface);
}

/* Search card focus animation */
.search-card {
    transition: transform 280ms var(--ease-out),
                box-shadow 280ms var(--ease-out),
                border-color 280ms ease;
}
.search-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 106, 0, 0.3);
    border-color: rgba(255, 106, 0, 0.4);
}

/* Inputs — kis lift fokuszálva */
.field input, .field select, .field textarea {
    transition: border-color 200ms ease,
                background 200ms ease,
                box-shadow 200ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

/* Chip — szűrő pillek */
.chip {
    transition: transform 180ms var(--ease-out),
                background 180ms ease,
                color 180ms ease;
}
.chip:hover {
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════════════
   7. STEPPER (foglalási flow) — pulzáló aktív lépés
   ═══════════════════════════════════════════════════════════════════════ */

.step-dot.on {
    animation: stepper-pulse 2s var(--ease-smooth) infinite;
}
@keyframes stepper-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 106, 0, 0); }
}


/* ═══════════════════════════════════════════════════════════════════════
   8. HEADER — finomított scroll state
   ═══════════════════════════════════════════════════════════════════════ */

.header {
    transition: background 320ms ease,
                backdrop-filter 320ms ease,
                border-color 320ms ease,
                box-shadow 320ms ease;
}
.header.scrolled {
    background: rgba(15, 17, 21, 0.78);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 1px 0 var(--border);
}


/* ═══════════════════════════════════════════════════════════════════════
   9. SUCCESS ICON — kis pop-in
   ═══════════════════════════════════════════════════════════════════════ */

.success-icon {
    animation: success-pop 600ms var(--ease-snap);
}
@keyframes success-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════════════
   10. PILL "NEW OFFERS TODAY" — pulzáló dot
   ═══════════════════════════════════════════════════════════════════════ */

.hero-eyebrow .dot {
    animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 106, 0, 0);
        transform: scale(1.2);
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   11. USER MENU dropdown — finomított animáció
   ═══════════════════════════════════════════════════════════════════════ */

.user-menu-dropdown {
    transition: opacity 220ms var(--ease-out),
                transform 220ms var(--ease-out),
                visibility 220ms;
}


/* ═══════════════════════════════════════════════════════════════════════
   12. ELŐKÉSZÍTETT SKELETON LOADERS (jövőbeli AJAX-hoz)
   ═══════════════════════════════════════════════════════════════════════ */

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 25%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.03) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s linear infinite;
    border-radius: 8px;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* ═══════════════════════════════════════════════════════════════════════
   13. SMOOTH SCROLL
   ═══════════════════════════════════════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}


/* ═══════════════════════════════════════════════════════════════════════
   REDUCED MOTION — accessibility
   ═══════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-grad,
    .hero-eyebrow,
    .display,
    .hero .lede,
    .search-card,
    .hero-stats,
    .page-hero .eyebrow,
    .page-hero .page-title,
    .page-hero .lede {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   auth-modals.css
   ═══════════════════════════════════════════════════════════════════════ */
/* ─────────────────────────────────────────────────────────────────────────
   ÜresÓra · Auth modals (login + register)
   Half-screen sheet stílus — mobilon alulról csúszik, desktopon centrált.
   ───────────────────────────────────────────────────────────────────────── */

/* ─── Backdrop + container ─────────────────────────────────────────────── */
.auth-modal {
    position: fixed; inset: 0;
    z-index: 1100;
    display: none;
    align-items: flex-end;
    justify-content: center;
}
.auth-modal.open {
    display: flex;
}
.auth-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-modal.open .auth-modal-backdrop {
    opacity: 1;
}

/* ─── Sheet (the actual card) ──────────────────────────────────────────── */
.auth-modal-sheet {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid var(--border);
    border-bottom: none;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
    padding: 28px 24px 32px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-modal.open .auth-modal-sheet {
    transform: translateY(0);
}

/* Drag handle (mobile visual) */
.auth-modal-sheet::before {
    content: "";
    display: block;
    width: 44px; height: 4px;
    border-radius: 999px;
    background: var(--border-strong);
    margin: -8px auto 18px;
}

/* Desktop: center modal instead of bottom sheet */
@media (min-width: 768px) {
    .auth-modal {
        align-items: center;
    }
    .auth-modal-sheet {
        border-radius: 24px;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - 80px);
        padding: 36px 36px 32px;
        transform: translateY(20px) scale(0.96);
        opacity: 0;
        transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 280ms ease;
    }
    .auth-modal.open .auth-modal-sheet {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    .auth-modal-sheet::before {
        display: none;
    }
}

/* ─── Close button ─────────────────────────────────────────────────────── */
.auth-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 22px; line-height: 1;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-modal-close:hover {
    background: var(--glass-strong);
    color: #fff;
    transform: rotate(90deg);
}

/* ─── Header ───────────────────────────────────────────────────────────── */
.auth-modal-head {
    text-align: center;
    margin-bottom: 24px;
}
.auth-modal-head h2 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.auth-modal-head p {
    margin: 0;
    font-size: 14px;
    color: var(--text-3);
}

/* ─── Form ─────────────────────────────────────────────────────────────── */
.auth-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-field {
    display: flex; flex-direction: column;
    gap: 6px;
    position: relative;
}
.auth-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.02em;
}
.auth-field label .optional {
    font-weight: 400;
    color: var(--text-3);
    font-size: 11px;
}
.auth-field input {
    padding: 13px 14px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-field input::placeholder {
    color: var(--text-3);
}
.auth-field input:focus {
    border-color: var(--accent);
    background: var(--glass-strong);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.auth-field-link {
    position: absolute;
    top: 0; right: 0;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}
.auth-field-link:hover {
    text-decoration: underline;
}
.auth-field-hint {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 2px;
}

/* ─── Checkbox ─────────────────────────────────────────────────────────── */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}
.auth-checkbox input {
    margin-top: 2px;
    width: 18px; height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.auth-checkbox a {
    color: var(--accent);
    font-weight: 600;
}

/* ─── Submit button + loader ───────────────────────────────────────────── */
.auth-submit {
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}
.btn-loader {
    display: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 700ms linear infinite;
}
.auth-submit.loading .btn-label {
    visibility: hidden;
}
.auth-submit.loading .btn-loader {
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    margin-top: -9px; margin-left: -9px;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ─── Divider ──────────────────────────────────────────────────────────── */
.auth-modal-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 -2px;
    color: var(--text-3);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.auth-modal-divider::before,
.auth-modal-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ─── Flash messages inside modal ─────────────────────────────────────── */
.auth-flash:empty {
    display: none;
}
.auth-flash {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid;
    margin-bottom: 4px;
}
.auth-flash.error {
    background: rgba(255, 80, 80, 0.10);
    border-color: rgba(255, 80, 80, 0.4);
    color: #ff7373;
}
.auth-flash.success {
    background: rgba(43, 212, 164, 0.10);
    border-color: rgba(43, 212, 164, 0.4);
    color: var(--success);
}

/* ─── Footer note ──────────────────────────────────────────────────────── */
.auth-modal-footer-note {
    text-align: center;
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.4;
}
.auth-modal-footer-note a {
    color: var(--accent);
    font-weight: 600;
}
.auth-modal-footer-note a:hover {
    text-decoration: underline;
}

/* ─── Body scroll lock when modal open ─────────────────────────────────── */
body.auth-modal-open {
    overflow: hidden;
}

/* ─── Mobile drawer login/register button polish ───────────────────────── */
.mobile-drawer-action {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
    /* inherit the same styles as drawer nav links */
    display: flex; align-items: center; gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 200ms var(--ease-out);
    opacity: 0;
    transform: translateX(20px);
}
.mobile-drawer.open .mobile-drawer-action {
    animation: drawer-item-in 400ms var(--ease-out) forwards;
    animation-delay: calc(80ms + var(--i, 0) * 50ms);
}
.mobile-drawer-action:hover {
    background: var(--glass);
    color: var(--accent);
}

/* ─── Mobile drawer provider link (subtle) ─────────────────────────────── */
.mobile-drawer-provider-link {
    display: block;
    padding: 16px 18px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: left;
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer-provider-link:hover {
    background: var(--glass-strong);
    border-color: var(--border-strong);
}
.mobile-drawer-provider-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.mobile-drawer-provider-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════
   overhaul.css
   ═══════════════════════════════════════════════════════════════════════ */
/* ═════════════════════════════════════════════════════════════════════════
   ÜresÓra · 3.D overhaul
   - Soros kategória-szelektor (hero alatt) + SVG ikonok
   - Desktop nav dropdown (Ajánlatok)
   - Mobil drawer slide-page submenu
   - Auth modal tab switcher (Vendég/Szolgáltató)
   - Mobile portal screen-fit + admin/szolgáltatói sidebar fix
   ═════════════════════════════════════════════════════════════════════════ */

:root {
    --provider-accent:    #10b981;
    --provider-accent-2:  #34d399;
    --provider-accent-bg: rgba(16, 185, 129, 0.10);
}

/* SVG ikonok színe öröklött */
.cat-icon { display: inline-block; vertical-align: middle; }


/* ═══════════════════════════════════════════════════════════════════════
   1. SOROS KATEGÓRIA-SZELEKTOR (hero alatt)
   ═══════════════════════════════════════════════════════════════════════ */
.cat-strip-section {
    padding: 40px 0 24px;
    position: relative;
    z-index: 5;
}
.cat-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 14px;
    margin: 0 -2px;
    scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }

.cat-strip-item {
    flex: 1 1 0;
    min-width: 110px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-1);
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    text-align: center;
}
.cat-strip-item:hover {
    background: var(--glass-strong);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* "Osszes" kiemelt — narancs accent (mint a referencia) */
.cat-strip-item:first-child {
    background: linear-gradient(135deg, rgba(255,106,0,0.16), rgba(255,106,0,0.06));
    border-color: rgba(255,106,0,0.4);
}
.cat-strip-item:first-child .cat-strip-icon { color: var(--accent); }
.cat-strip-item:first-child .cat-strip-label { color: var(--accent); }

.cat-strip-icon {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    color: var(--accent);
}
.cat-strip-icon svg { width: 28px; height: 28px; }
.cat-strip-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
    white-space: nowrap;
    color: var(--text-1);
}
.cat-strip-more {
    background: var(--surface);
    border-color: var(--border);
}

@media (max-width: 768px) {
    .cat-strip { gap: 8px; }
    .cat-strip-item {
        min-width: 88px;
        padding: 16px 12px 14px;
        gap: 8px;
        flex: 0 0 auto;
    }
    .cat-strip-icon { width: 26px; height: 26px; }
    .cat-strip-icon svg { width: 24px; height: 24px; }
    .cat-strip-label { font-size: 11.5px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   2. DESKTOP NAV DROPDOWN (Ajánlatok)
   ═══════════════════════════════════════════════════════════════════════ */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav-dropdown-caret {
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown.open .nav-dropdown-caret {
    transform: rotate(180deg);
}

/* Dropdown panel — REJTVE alapból, csak .open-nel látszik */
.nav-dropdown-panel {
    display: none; /* hard-hidden by default — JS adds .open to show */
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.5),
                0 4px 12px rgba(0,0,0,0.3);
    z-index: 200;
    animation: nav-dropdown-fade 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown.open .nav-dropdown-panel {
    display: block;
}
@keyframes nav-dropdown-fade {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Mobil: dropdown trigger sima link-ként működik, panel sosem látszik */
@media (max-width: 1024px) {
    .nav-dropdown-panel { display: none !important; }
    .nav-dropdown-caret { display: none !important; }
}

.nav-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 11px 12px !important;
    border-radius: 10px;
    color: var(--text-1) !important;
    font-size: 14px;
    line-height: 1.3;
    transition: background 180ms ease, color 180ms ease;
    text-decoration: none;
}
.nav-dropdown-item:hover {
    background: var(--glass);
    color: var(--accent) !important;
}
.nav-dropdown-item span:not(.nav-dropdown-icon) {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-dropdown-item b { font-weight: 700; font-size: 14px; }
.nav-dropdown-item small {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 400;
}
.nav-dropdown-item:hover small { color: var(--text-2); }
.nav-dropdown-icon {
    width: 22px; height: 22px;
    display: grid; place-items: center;
    color: var(--accent);
    flex-shrink: 0;
}
.nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 6px;
}
.nav-dropdown-more {
    background: linear-gradient(135deg, rgba(255,106,0,0.10), rgba(255,106,0,0.02));
}
.nav-dropdown-more:hover {
    background: linear-gradient(135deg, rgba(255,106,0,0.18), rgba(255,106,0,0.06));
}


/* ═══════════════════════════════════════════════════════════════════════
   3. MOBIL DRAWER SLIDE-PAGE SUBMENU
   ═══════════════════════════════════════════════════════════════════════ */
.mobile-drawer-pages {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* allow internal scroll */
}
.mobile-drawer-page {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
                opacity 280ms ease;
}
.mobile-drawer-page-root {
    transform: translateX(0);
    opacity: 1;
    position: relative; /* root keeps space */
}
.mobile-drawer-page-categories {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

/* When showing categories sub-page */
.mobile-drawer-pages[data-page="categories"] .mobile-drawer-page-root {
    transform: translateX(-25%);
    opacity: 0.4;
    pointer-events: none;
    position: absolute;
}
.mobile-drawer-pages[data-page="categories"] .mobile-drawer-page-categories {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Submenu trigger button — looks like a regular nav item */
.mobile-drawer-submenu-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-1);
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer-submenu-trigger:hover,
.mobile-drawer-submenu-trigger:active {
    background: var(--glass);
    color: var(--accent);
}
.mobile-drawer-submenu-trigger .mobile-drawer-nav-icon {
    color: var(--accent);
}

/* Back button in sub-page */
.mobile-drawer-back {
    width: auto;
    align-self: flex-start;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-1);
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin: 4px 4px 14px;
    transition: all 200ms ease;
}
.mobile-drawer-back:hover {
    background: var(--glass-strong);
    color: var(--accent);
}
.mobile-drawer-sub-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 0 14px;
    margin-bottom: 8px;
}
.mobile-drawer-more-link {
    background: linear-gradient(135deg, rgba(255,106,0,0.08), transparent) !important;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 14px !important;
}
.mobile-drawer-more-link b {
    color: var(--accent);
    font-weight: 700;
}

/* Category icons in mobile drawer should be accent-colored */
.mobile-drawer-page-categories .mobile-drawer-nav-icon {
    color: var(--accent);
    width: 22px; height: 22px;
    display: inline-grid; place-items: center;
}


/* ═══════════════════════════════════════════════════════════════════════
   4. AUTH MODAL — TAB SWITCHER + PROVIDER OPTIONS
   ═══════════════════════════════════════════════════════════════════════ */
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 22px;
}
.auth-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 9px;
    color: var(--text-3);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-tab svg { transition: transform 220ms ease; }
.auth-tab:hover {
    color: var(--text-1);
}
.auth-tab.active {
    background: var(--surface);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.auth-tab[data-auth-tab="provider"].active {
    color: var(--provider-accent);
}
.auth-tab[data-auth-tab="provider"].active svg {
    color: var(--provider-accent);
}

/* Tab panes — REJTVE alapból, csak .active látszik */
.auth-tab-pane {
    display: none !important;
    animation: tab-fade-in 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-tab-pane.active {
    display: block !important;
}
@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* When provider tab active — green primary button override (in provider tab only) */
.auth-modal-provider-tab .auth-tab-pane[data-tab-pane="provider"] .btn-primary {
    background: var(--provider-accent);
    box-shadow: 0 8px 22px rgba(16,185,129,0.3),
                inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Provider option cards */
.auth-provider-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.auth-provider-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-1) !important;
    text-decoration: none;
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-provider-card:hover {
    background: var(--glass-strong);
    border-color: var(--provider-accent);
    transform: translateY(-1px);
}
.auth-provider-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--provider-accent-bg);
    color: var(--provider-accent);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.auth-provider-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.auth-provider-card-text b {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.auth-provider-card-text small {
    font-size: 12px;
    color: var(--text-3);
}
.auth-provider-card-arrow {
    color: var(--provider-accent);
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    transition: transform 220ms ease;
}
.auth-provider-card:hover .auth-provider-card-arrow {
    transform: translateX(4px);
}
.auth-provider-card-cta {
    background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(16,185,129,0.02));
    border-color: rgba(16,185,129,0.3);
}
.auth-provider-card-cta:hover {
    background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.06));
}

/* Text link button */
.auth-text-link {
    background: transparent;
    border: none;
    color: var(--accent);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}
.auth-text-link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════
   5. MOBIL HAMBURGER FIX (frontend)
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .header-actions .hamburger {
        display: block !important;
        position: relative !important;
        width: 28px !important;
        height: 22px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-left: 8px !important;
        cursor: pointer !important;
        z-index: 10 !important;
        flex: 0 0 auto !important;
    }
    .header-actions .hamburger span {
        display: block !important;
        position: absolute !important;
        height: 2.5px !important;
        width: 100% !important;
        background: #fff !important;
        border-radius: 2px !important;
        left: 0 !important;
        opacity: 1 !important;
        transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 200ms ease,
                    top 280ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .header-actions .hamburger span:nth-child(1) { top: 0 !important; }
    .header-actions .hamburger span:nth-child(2) { top: 10px !important; }
    .header-actions .hamburger span:nth-child(3) { top: 20px !important; }

    .header-actions .hamburger.is-open span:nth-child(1) { top: 10px !important; transform: rotate(45deg) !important; }
    .header-actions .hamburger.is-open span:nth-child(2) { opacity: 0 !important; }
    .header-actions .hamburger.is-open span:nth-child(3) { top: 10px !important; transform: rotate(-45deg) !important; }

    .header-actions [data-auth-open="register"] { display: none !important; }
}
@media (min-width: 1025px) {
    .header-actions .hamburger { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════════════════
   6. PROVIDER PORTAL ZÖLD TÉMA + sidebar javítás
   ═══════════════════════════════════════════════════════════════════════ */
body.sp-portal {
    --sp-accent:    #10b981;
    --sp-accent-2:  #34d399;
}

body.sp-portal .btn-primary,
body.sp-portal .sp-action.primary {
    background: #10b981 !important;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border-color: #10b981 !important;
}
body.sp-portal .btn-primary:hover,
body.sp-portal .sp-action.primary:hover {
    background: #34d399 !important;
}
body.sp-portal .sp-stat-value,
body.sp-portal .sp-pill.green { color: #10b981 !important; }
body.sp-portal .sp-form input:focus,
body.sp-portal .sp-form select:focus,
body.sp-portal .sp-form textarea:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}
body.sp-portal .sp-eyebrow {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #10b981 !important;
}
body.sp-portal .sp-nav a.active { color: #10b981 !important; }
body.sp-portal .sp-user-mini .avatar { background: #10b981 !important; }
body.sp-portal .sp-auth-link-row a { color: #10b981 !important; }


/* ═══════════════════════════════════════════════════════════════════════
   7. SZOLGÁLTATÓI PORTAL MOBIL — sidebar + screen-fit fix
   A korábbi 3.C verzió !important-jai nem mindenre vonatkoztak, ami
   miatt a sidebar a tartalom mögé csúszott. Most teljes lefedettség.
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    body.sp-portal {
        overflow-x: hidden;
    }

    /* Toggle button (top-right) */
    body.sp-portal .sp-mobile-toggle {
        display: flex !important;
        position: fixed !important;
        top: 16px !important; right: 16px !important;
        z-index: 200 !important;
        width: 44px !important; height: 44px !important;
        background: var(--sp-bg-2, #1a1f2b) !important;
        border: 1px solid var(--sp-border, #2a3040) !important;
        border-radius: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
        padding: 0 !important;
    }
    body.sp-portal .sp-mobile-toggle span {
        display: block !important;
        width: 18px !important; height: 2px !important;
        background: #fff !important;
        border-radius: 2px !important;
        transition: all 220ms ease !important;
    }
    body.sp-portal .sp-mobile-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.sp-portal .sp-mobile-toggle.open span:nth-child(2) { opacity: 0; }
    body.sp-portal .sp-mobile-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Shell — flex layout disable */
    body.sp-portal .sp-shell {
        display: block !important;
        grid-template-columns: none !important;
        position: relative !important;
    }

    /* Sidebar — fixed slide-out drawer */
    body.sp-portal .sp-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -300px !important;
        width: 280px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        z-index: 199 !important;
        transition: left 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
        border-right: 1px solid var(--sp-border, #2a3040) !important;
        border-bottom: none !important;
        padding: 24px 16px !important;
        flex-direction: column !important;
        display: flex !important;
        overflow-y: auto !important;
        background: var(--sp-bg-2, #1a1f2b) !important;
    }
    body.sp-portal .sp-sidebar.open {
        left: 0 !important;
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5) !important;
    }
    body.sp-portal .sp-sidebar-section { display: block !important; }
    body.sp-portal .sp-nav {
        flex-direction: column !important;
        overflow-x: visible !important;
        gap: 2px !important;
    }
    body.sp-portal .sp-nav a {
        white-space: normal !important;
        flex-shrink: 1 !important;
        padding: 11px 12px !important;
    }
    body.sp-portal .sp-sidebar-foot { display: block !important; }

    /* Backdrop */
    body.sp-portal .sp-shell::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 198;
        opacity: 0;
        visibility: hidden;
        transition: all 280ms ease;
    }
    body.sp-portal .sp-shell.drawer-open::before {
        opacity: 1;
        visibility: visible;
    }

    /* Main content — full width, top padding for toggle button */
    body.sp-portal .sp-main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 70px 16px 24px !important;
        box-sizing: border-box !important;
    }
    body.sp-portal .sp-main * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Stat cards full-width on mobile */
    body.sp-portal .sp-stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    body.sp-portal .sp-card {
        padding: 18px 16px !important;
    }
    body.sp-portal .sp-page-head {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding-right: 60px !important; /* keep space for toggle */
    }

    /* Tables — horizontal scroll */
    body.sp-portal .sp-table-wrap {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    body.sp-portal table {
        min-width: 600px !important;
    }
}
@media (min-width: 1025px) {
    body.sp-portal .sp-mobile-toggle { display: none !important; }
}


/* ═══════════════════════════════════════════════════════════════════════
   8. PROVIDER PORTAL FORM GAP (offer-edit input mezők szétkapcsolása)
   ═══════════════════════════════════════════════════════════════════════ */
.sp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px !important;
    margin-bottom: 8px;
}
.sp-form-grid .field {
    margin-bottom: 0 !important;
    min-width: 0;
}
.sp-form-grid .field input,
.sp-form-grid .field select,
.sp-form-grid .field textarea {
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .sp-form-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
}
.sp-card {
    padding: 24px 26px !important;
    margin-bottom: 22px !important;
}
.sp-card h3 { margin-bottom: 22px !important; }
.sp-image-upload {
    gap: 20px;
    padding: 18px;
}


/* ═══════════════════════════════════════════════════════════════════════
   9. ADMIN — egyszerű mobile sidebar (hamburger toggle)
   A duplikált hamburger gond: az admin/header.php-ben generáltunk egy
   .admin-mobile-toggle gombot 3.C-ben. Ez most marad, és a régi
   beépített hamburgert (admin-drawer-toggle az admin.css-ben) kikapcsoljuk.
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Régi/másik hamburger ikon kikapcsolva ha van */
    .admin-body .hamburger,
    .admin-body .header-actions .hamburger,
    .admin-shell .hamburger,
    .admin-drawer-toggle { display: none !important; }

    /* Admin toggle gomb — fixed, csak ha létezik */
    .admin-mobile-toggle {
        display: flex !important;
        position: fixed !important;
        top: 14px !important; left: 14px !important;
        right: auto !important;
        z-index: 200 !important;
        width: 44px !important; height: 44px !important;
        background: var(--surface) !important;
        border: 1px solid var(--border) !important;
        border-radius: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 4px !important;
        cursor: pointer !important;
    }
    .admin-mobile-toggle span {
        display: block !important;
        width: 18px !important; height: 2px !important;
        background: #fff !important;
        border-radius: 2px !important;
    }

    .admin-body { position: relative; overflow-x: hidden; }
    .admin-body::before {
        content: ""; position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 198;
        opacity: 0; visibility: hidden;
        transition: all 280ms ease;
    }
    .admin-body.drawer-open::before { opacity: 1; visibility: visible; }

    /* CRITICAL: a styles.css mobil view-ban "display: none"-ra teszi a sidebart
       és ez kioltja az admin.css mobile szabályait. Override-oljuk teljesen. */
    .admin-sidebar {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        position: fixed !important;
        top: 0 !important;
        left: -280px !important;
        width: 260px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        z-index: 199 !important;
        background: var(--bg-2) !important;
        border-right: 1px solid var(--border) !important;
        padding: 24px 16px !important;
        overflow-y: auto !important;
        transition: left 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-sizing: border-box !important;
    }
    .admin-sidebar.open {
        left: 0 !important;
        box-shadow: 8px 0 40px rgba(0,0,0,0.4) !important;
    }
    /* Biztosítsuk hogy a sidebar belső elemei is láthatóak legyenek */
    .admin-sidebar .logo,
    .admin-sidebar .admin-nav-section,
    .admin-sidebar .admin-nav-item,
    .admin-sidebar > * {
        display: revert !important;
    }
    .admin-sidebar .logo {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .admin-sidebar .admin-nav-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        color: var(--text-2) !important;
        font-size: 14px !important;
        font-weight: 500 !important;
    }
    .admin-sidebar .admin-nav-item.active {
        background: rgba(255,106,0,0.12) !important;
        color: var(--accent) !important;
        border: 1px solid rgba(255,106,0,0.3) !important;
    }
    .admin-sidebar .admin-nav-section {
        display: block !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: var(--text-3) !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        padding: 16px 14px 6px !important;
    }

    .admin-main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 70px 16px 24px !important;
    }
}
@media (min-width: 1025px) {
    .admin-mobile-toggle { display: none !important; }
}

/* GLOBAL: a regi admin-drawer-toggle minden viewport-on elrejtve
   (az admin.css mobilra display:flex-et ad neki, de ures elem) */
.admin-drawer-toggle { display: none !important; }


/* ═══════════════════════════════════════════════════════════════════════
   10. CSATLAKOZAS oldal stílusok (előző verzió folytatása)
   ═══════════════════════════════════════════════════════════════════════ */
.csatlakozas-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    .csatlakozas-grid { grid-template-columns: 1fr; gap: 32px; }
}
.csatlakozas-benefits { position: sticky; top: 100px; }
@media (max-width: 1024px) {
    .csatlakozas-benefits { position: static; }
}
.csatlakozas-benefits h3 {
    font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
    margin: 0 0 18px;
}
.csatlakozas-bullets {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 12px;
}
.csatlakozas-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--text-2); line-height: 1.5;
}
.csatlakozas-bullets li b { color: #fff; font-weight: 600; }
.csatlakozas-bullets .check {
    flex-shrink: 0; width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--provider-accent-bg);
    color: var(--provider-accent);
    display: grid; place-items: center;
    font-weight: 700; font-size: 12px;
    margin-top: 1px;
}
.csatlakozas-stat-box {
    padding: 20px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 14px;
    text-align: center;
}
.csatlakozas-stat-num {
    font-size: 36px; font-weight: 800; letter-spacing: -0.025em;
    color: var(--provider-accent); line-height: 1;
}
.csatlakozas-stat-label {
    font-size: 12px; color: var(--text-2); margin-top: 8px; line-height: 1.4;
}
.csatlakozas-existing { margin-top: 20px; font-size: 13px; color: var(--text-3); text-align: center; }
.csatlakozas-existing a { color: var(--provider-accent); font-weight: 600; }
.csatlakozas-existing a:hover { text-decoration: underline; }
.csatlakozas-form-wrap {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
}
@media (max-width: 640px) { .csatlakozas-form-wrap { padding: 24px 20px; } }
.csatlakozas-form-wrap h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 6px; }
.csatlakozas-form-sub { color: var(--text-3); font-size: 14px; margin: 0 0 24px; }
.csatlakozas-form .field input,
.csatlakozas-form .field select,
.csatlakozas-form .field textarea { border-radius: 12px; }
.csatlakozas-form .btn-primary {
    background: var(--provider-accent);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.csatlakozas-form .btn-primary:hover { background: var(--provider-accent-2); }
.csatlakozas-success { text-align: center; padding: 30px 20px; }
.csatlakozas-success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--provider-accent-bg); color: var(--provider-accent);
    display: grid; place-items: center;
    font-size: 38px; font-weight: 700; margin: 0 auto 20px;
    border: 2px solid rgba(16, 185, 129, 0.4);
    animation: pop-in 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop-in { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.csatlakozas-success h2 {
    font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px;
}
.csatlakozas-success p {
    color: var(--text-2); font-size: 15px; line-height: 1.6;
    max-width: 460px; margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════════
   11. HEADER CTA POLISH
   ═══════════════════════════════════════════════════════════════════════ */
.header-actions {
    align-items: center;
    gap: 12px;
}
.header-actions .login-link {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 10px;
    transition: color 180ms ease, background 180ms ease;
}
.header-actions .login-link:hover {
    color: var(--accent);
    background: var(--glass);
}


/* ═══════════════════════════════════════════════════════════════════════
   hero.css
   ═══════════════════════════════════════════════════════════════════════ */
/* ═════════════════════════════════════════════════════════════════════════
   ÜresÓra · HERO v2 (referencia kép szerint)
   - Bal oldal: eyebrow + counter + title + lede + search + trust badges
   - Jobb oldal: hero_img.webp (telefon mockup + props)
   - Premium entrance animációk
   - Mobile-first reszponzív
   ═════════════════════════════════════════════════════════════════════════ */

/* Reset older hero pseudo-elements that styles.css may have applied */
.hero.hero-v2::before,
.hero.hero-v2::after {
    display: none !important;
}
.hero.hero-v2 .hero-bg,
.hero.hero-v2 .hero-grad,
.hero.hero-v2 .hero-content,
.hero.hero-v2 .hero-stats,
.hero.hero-v2 .display,
.hero.hero-v2 .lede,
.hero.hero-v2 .search-card {
    /* Old structure won't be present, but defensively reset */
    all: revert;
}
/* Restore body bg to dark for hero — let styles.css handle global, just override what we need */

/* Override the old .hero so v2 takes precedence */
.hero.hero-v2 {
    position: relative;
    overflow: hidden;
    padding: 88px 0 80px;
    background: radial-gradient(ellipse 80% 60% at 70% 50%,
                rgba(255, 106, 0, 0.06) 0%,
                rgba(255, 106, 0, 0.02) 35%,
                transparent 70%),
                #0c0e13;
    isolation: isolate;
}

/* ─── Háttér dekoráció: koncentrikus narancs körök jobbra ──────────────── */
.hero-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 106, 0, 0.18);
    opacity: 0;
    animation: hero-ring-in 1400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-ring-1 {
    width: 720px; height: 720px;
    right: -180px; top: 50%;
    transform: translateY(-50%) scale(0.8);
    animation-delay: 200ms;
}
.hero-ring-2 {
    width: 540px; height: 540px;
    right: -90px; top: 50%;
    transform: translateY(-50%) scale(0.8);
    border-color: rgba(255, 106, 0, 0.28);
    animation-delay: 350ms;
}
.hero-ring-3 {
    width: 380px; height: 380px;
    right: -10px; top: 50%;
    transform: translateY(-50%) scale(0.8);
    border-color: rgba(255, 106, 0, 0.4);
    animation-delay: 500ms;
}
@keyframes hero-ring-in {
    from { opacity: 0; transform: translateY(-50%) scale(0.7); }
    to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    right: -200px; top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(255, 106, 0, 0.22) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0;
    animation: hero-glow-in 1800ms ease forwards;
    animation-delay: 100ms;
}
@keyframes hero-glow-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* ─── Layout: 2 oszlop ─────────────────────────────────────────────────── */
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    min-height: 660px;
}

/* ─── BAL OLDAL ────────────────────────────────────────────────────────── */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 820px;
    position: relative;
    z-index: 10; /* a tartalom MINDIG fölötte van a kép z-indexének */
    min-width: 0; /* allow grid to shrink properly */
}

/* Entrance — staggered fade+slide */
[data-anim] {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-fade-up 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-anim="1"] { animation-delay: 200ms; }
[data-anim="2"] { animation-delay: 350ms; }
[data-anim="3"] { animation-delay: 500ms; }
[data-anim="4"] { animation-delay: 650ms; }
[data-anim="5"] { animation-delay: 850ms; }
[data-anim="6"] { animation-delay: 300ms; }
@keyframes hero-fade-up {
    to { opacity: 1; transform: translateY(0); }
}


/* ─── Eyebrow row (lightning pill + real-time counter) ─────────────────── */
.hero-eyebrow-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255, 106, 0, 0.14);
    border: 1px solid rgba(255, 106, 0, 0.4);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent, #ff6a00);
    text-transform: uppercase;
}
.hero-eyebrow-icon {
    flex-shrink: 0;
    color: var(--accent, #ff6a00);
}

.hero-eyebrow-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-2, #aab1bb);
}
.hero-eyebrow-counter b {
    color: #fff;
    font-weight: 800;
    margin-right: 2px;
}
.hero-counter-dot {
    width: 7px; height: 7px;
    background: #2bd4a4;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(43, 212, 164, 0.2);
    animation: hero-pulse 1800ms ease-in-out infinite;
}
@keyframes hero-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(43, 212, 164, 0.2); }
    50%      { box-shadow: 0 0 0 7px rgba(43, 212, 164, 0.05); }
}


/* ─── Display headline ─────────────────────────────────────────────────── */
.hero-display {
    font-size: clamp(40px, 5.6vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0;
}
.hero-display .accent {
    color: var(--accent, #ff6a00);
    background: linear-gradient(135deg, #ff6a00 0%, #ff8a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ─── Lede ─────────────────────────────────────────────────────────────── */
.hero-lede {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.55;
    color: var(--text-2, #aab1bb);
    max-width: 520px;
    margin: 0;
}
.hero-lede .accent-soft {
    color: var(--accent, #ff6a00);
    font-weight: 700;
}


/* ─── Search card (horizontális) ───────────────────────────────────────── */
.hero-search-card {
    background: rgba(20, 23, 31, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
    /* Ensure search card is always clickable above hero image */
    position: relative;
    z-index: 20;
    pointer-events: auto;
    /* Prevent button overflow - keep everything inside */
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}
.hero-search-grid {
    display: grid;
    grid-template-columns: minmax(160px, 1.3fr) minmax(150px, 1.2fr) minmax(130px, 1fr) minmax(140px, auto);
    gap: 4px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.hero-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 200ms ease;
    position: relative;
    min-width: 0; /* allow text to truncate properly */
}
.hero-search-field:hover {
    background: rgba(255, 255, 255, 0.04);
}
.hero-search-field + .hero-search-field {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-search-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-2, #aab1bb);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.hero-search-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0; /* critical for text truncation */
}
.hero-search-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3, #6a7180);
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-search-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.hero-search-field select option {
    background: #14171f;
    color: #fff;
}
.hero-search-caret {
    flex-shrink: 0;
    color: var(--text-3, #6a7180);
    display: grid;
    place-items: center;
    width: 20px; height: 20px;
}

/* Submit button */
.hero-search-submit {
    background: var(--accent, #ff6a00);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 0 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 60px;
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 100%;
}
.hero-search-submit:hover {
    background: #ff7e1f;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(255, 106, 0, 0.42),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.hero-search-submit:active {
    transform: translateY(0);
}


/* ─── Trust badges ─────────────────────────────────────────────────────── */
.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 4px;
}
.hero-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.hero-trust-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.25);
    color: var(--accent, #ff6a00);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.hero-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.hero-trust-text b {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.hero-trust-text span {
    font-size: 12px;
    color: var(--text-3, #6a7180);
    line-height: 1.3;
}


/* ─── JOBB OLDAL: hero kép ─────────────────────────────────────────────── */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Slight bleed to the right for dramatic effect */
    margin-right: -40px;
    z-index: 1; /* a tartalom z-indexe 10, így a kép sosem takarja a keresőt */
    pointer-events: none;
}
.hero-right .hero-img {
    /* A kép tisztán dekoratív — sosem fogadhat klikket, hogy ne blokkolja
       a kereső/trust badge interakciókat amikor scale() átfedi azokat */
    pointer-events: none !important;
}
.hero-img {
    width: 100%;
    max-width: 920px;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    /* Subtle floating animation after entry */
    will-change: transform;
}
[data-anim="6"].hero-right {
    animation: hero-img-in 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 300ms;
    opacity: 0;
}
@keyframes hero-img-in {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1100px)
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: auto;
    }
    .hero-left {
        max-width: 100%;
    }
    .hero-right {
        order: -1; /* image FIRST on tablet/mobile */
        max-width: 460px;
        margin: 0 auto;
    }
    .hero-img {
        max-width: 460px;
    }
    .hero.hero-v2 {
        padding: 64px 0 56px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   SEARCH CARD — közepes nézet (max 900px) - vertikális stack
   Ha kevés a hely, már stack-elünk hogy a szöveg ne csonkolódjon
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }
    .hero-search-field + .hero-search-field {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
    .hero-search-field:nth-child(3) {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        grid-column: 1 / 2;
    }
    .hero-search-submit {
        grid-column: 2 / 3;
        grid-row: 2;
        min-height: 100%;
        align-self: stretch;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px) — full-width vertikális stack
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero.hero-v2 {
        padding: 32px 0 48px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-left {
        gap: 22px;
        text-align: center;
        align-items: center;
    }

    /* Smaller orange rings on mobile */
    .hero-ring-1 { width: 480px; height: 480px; right: -200px; }
    .hero-ring-2 { width: 360px; height: 360px; right: -150px; }
    .hero-ring-3 { width: 240px; height: 240px; right: -100px; }
    .hero-glow  { width: 460px; height: 460px; right: -180px; }

    .hero-eyebrow-row {
        justify-content: center;
        gap: 8px;
    }
    .hero-eyebrow-pill {
        font-size: 10.5px;
        padding: 7px 13px;
    }
    .hero-eyebrow-counter {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .hero-display {
        font-size: clamp(34px, 9vw, 44px);
        line-height: 1.05;
    }
    .hero-lede {
        font-size: 14.5px;
        max-width: 100%;
    }

    /* SEARCH CARD — mobil: minden full-width vertikális stack */
    .hero-search-card {
        padding: 8px;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
    }
    .hero-search-grid {
        grid-template-columns: 1fr !important;
        gap: 4px;
    }
    .hero-search-field {
        padding: 14px 14px;
        gap: 12px;
        width: 100%;
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    .hero-search-field + .hero-search-field {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .hero-search-icon {
        width: 38px; height: 38px;
    }
    .hero-search-icon svg { width: 18px; height: 18px; }
    .hero-search-label {
        font-size: 11px;
    }
    .hero-search-field select {
        font-size: 15px;
    }
    .hero-search-submit {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        margin-top: 6px;
        min-height: 56px;
        font-size: 15.5px;
        width: 100%;
        border-radius: 12px;
    }

    /* TRUST BADGES — mobil: full-width kártyák */
    .hero-trust {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    .hero-trust-item {
        gap: 14px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        align-items: center;
    }
    .hero-trust-icon {
        width: 40px; height: 40px;
        border-radius: 12px;
    }
    .hero-trust-text b { font-size: 14px; }
    .hero-trust-text span { font-size: 12px; }

    /* Hero image — smaller on phone */
    .hero-right {
        max-width: 340px;
    }
    .hero-img {
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .hero.hero-v2 { padding: 24px 0 40px; }
    .hero-display { font-size: 32px; }
    .hero-right { max-width: 280px; }
    .hero-img { max-width: 280px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   REDUCED MOTION — accessibility
   ═══════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    [data-anim],
    .hero-ring,
    .hero-glow,
    [data-anim="6"].hero-right {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-counter-dot { animation: none !important; }
}


/* ═════════════════════════════════════════════════════════════════════════
   LIGHT SECTION — Hero alatti fehér szekció (Hero_alatt.png referencia)
   - Scallop divider (lefelé hajló félkör)
   - Fehér háttér panel
   - Népszerű kategóriák (fehér kártyák narancs aktív "Összes")
   - Mai legjobb ajánlatok (4 kártya carousel narancs badge + szív)
   - Hogyan működik (sötét panel a fehér rész végén)
   ═════════════════════════════════════════════════════════════════════════ */

/* ─── Scallop divider — lefelé hajló félkör átmenet ──────────────────── */
.scallop-divider {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -1px; /* a hero alja és a fehér tetejének zár nélkül illeszkedjenek */
    background: #ffffff;
    overflow: hidden;
    line-height: 0;
}
.scallop-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ─── Light section — fehér háttér ──────────────────────────────────── */
.light-section {
    background: #ffffff;
    padding: 60px 0 80px;
    color: #14171f;
}
.light-block {
    margin-bottom: 72px;
}
.light-block:last-child { margin-bottom: 0; }

.light-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}
.light-h2 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #14171f;
}
.light-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #5a6370;
    text-decoration: none;
    transition: color 200ms ease;
    flex-shrink: 0;
}
.light-section-link:hover {
    color: var(--accent, #ff6a00);
}


/* ─── Népszerű kategóriák grid ─────────────────────────────────────── */
.light-cat-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
}

.light-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px 12px 22px;
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 18px;
    color: #14171f;
    text-decoration: none;
    text-align: center;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 130px;
    box-shadow: 0 1px 0 rgba(20, 23, 31, 0.02);
}
.light-cat-card:hover {
    border-color: rgba(255, 106, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 106, 0, 0.10);
}

/* Aktív "Összes" — narancs accent (a referencián) */
.light-cat-card-active {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.10), rgba(255, 106, 0, 0.04));
    border-color: rgba(255, 106, 0, 0.4);
}
.light-cat-card-active .light-cat-icon {
    background: var(--accent, #ff6a00);
    color: #fff;
}
.light-cat-card-active .light-cat-label {
    color: var(--accent, #ff6a00);
    font-weight: 700;
}

.light-cat-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #f5f6f8;
    color: #1a1d24;
    display: grid; place-items: center;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.light-cat-icon svg {
    width: 26px; height: 26px;
}
.light-cat-card:hover .light-cat-icon {
    background: rgba(255, 106, 0, 0.10);
    color: var(--accent, #ff6a00);
}
.light-cat-card-active:hover .light-cat-icon {
    background: var(--accent, #ff6a00);
    color: #fff;
}

.light-cat-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1d24;
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.light-cat-card-more .light-cat-icon {
    background: #f5f6f8;
}


/* ─── Mai legjobb ajánlatok carousel ─────────────────────────────── */
.light-offers-carousel {
    position: relative;
}
.light-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 18px;
}

.light-offer-card {
    display: block;
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 18px;
    overflow: hidden;
    color: #14171f;
    text-decoration: none;
    transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 0 rgba(20, 23, 31, 0.02);
}
.light-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(20, 23, 31, 0.10);
    border-color: #d8dce2;
}

.light-offer-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f6f8;
}
.light-offer-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.light-offer-card:hover .light-offer-img img {
    transform: scale(1.05);
}

.light-offer-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--accent, #ff6a00);
    color: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}

.light-offer-heart {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: #1a1d24;
    display: grid; place-items: center;
    cursor: pointer;
    transition: all 200ms ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.light-offer-heart:hover {
    background: var(--accent, #ff6a00);
    color: #fff;
    transform: scale(1.08);
}
.light-offer-heart.is-fav {
    background: var(--accent, #ff6a00);
    color: #fff;
}
.light-offer-heart.is-fav svg { fill: #fff; }

.light-offer-body {
    padding: 18px 18px 20px;
}
.light-offer-title {
    margin: 0 0 4px;
    font-size: 16.5px;
    font-weight: 700;
    color: #14171f;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.light-offer-meta {
    margin: 0 0 12px;
    font-size: 13px;
    color: #6a7180;
    line-height: 1.4;
}
.light-offer-time {
    display: inline-block;
    background: rgba(43, 212, 164, 0.12);
    color: #0c9b7a;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 14px;
}
.light-offer-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.light-offer-price-now {
    font-size: 18px;
    font-weight: 800;
    color: #14171f;
    letter-spacing: -0.02em;
}
.light-offer-price-old {
    font-size: 14px;
    color: #a0a7b3;
    text-decoration: line-through;
}

/* Right arrow button (referencia: dark circle jobb oldalon) */
.light-offers-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #1a1d24;
    color: #fff;
    border: none;
    display: grid; place-items: center;
    cursor: pointer;
    transition: all 200ms ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}
.light-offers-arrow:hover {
    background: var(--accent, #ff6a00);
    transform: translateY(-50%) scale(1.08);
}
.light-offers-arrow-next {
    right: -22px;
}


/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS — Sötét szekció a fehér rész alatt
   ═══════════════════════════════════════════════════════════════════════ */
.how-section-dark {
    background: #ffffff;
    padding: 0 0 100px;
}
.how-card-dark {
    background: #14171f;
    border-radius: 24px;
    padding: 44px 48px;
    color: #fff;
}
.how-card-title {
    margin: 0 0 36px;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.how-card-title .accent {
    color: var(--accent, #ff6a00);
}
.how-steps-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.how-step-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}
.how-step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent, #ff6a00);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}
.how-step-icon {
    flex-shrink: 0;
    color: var(--accent, #ff6a00);
}
.how-step-icon svg {
    width: 40px; height: 40px;
}
.how-step-text {
    flex: 1;
    min-width: 0;
}
.how-step-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.how-step-desc {
    margin: 0;
    font-size: 13.5px;
    color: #aab1bb;
    line-height: 1.45;
}
.how-step-arrow {
    flex-shrink: 0;
    color: #3a4150;
    display: grid; place-items: center;
    margin: 0 4px;
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Light section + How it works
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet — 1100px alatt 4-5 oszlopos kategóriák, ajánlatok carousel */
@media (max-width: 1100px) {
    .light-cat-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    /* Carousel — vízszintes scroll flex layout */
    .light-offers-carousel {
        margin-right: -16px; /* kilóg a container jobbra hogy folyamatos legyen a scroll */
    }
    .light-offers-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-right: 16px;
        padding-bottom: 8px;
    }
    .light-offers-grid::-webkit-scrollbar { display: none; }
    .light-offer-card {
        flex: 0 0 calc(50% - 7px);
        scroll-snap-align: start;
        min-width: 0;
    }
    .light-offers-arrow-next {
        right: 16px;
        background: rgba(20, 23, 31, 0.92);
        backdrop-filter: blur(6px);
    }

    .how-card-dark { padding: 36px 32px; }
    .how-steps-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .how-step-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
}

/* Mobil — max 768px */
@media (max-width: 768px) {
    .scallop-divider { height: 50px; }

    .light-section { padding: 0 0 56px; }
    .light-block { margin-bottom: 40px; }

    .light-section-head {
        margin-bottom: 18px;
    }
    .light-h2 { font-size: 22px; }
    .light-section-link { font-size: 13px; }

    /* Kategoriak: 4 oszlop mobilon, scroll-elheto */
    .light-cat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
    .light-cat-card {
        min-height: 100px;
        padding: 16px 8px 14px;
        gap: 10px;
        border-radius: 14px;
    }
    .light-cat-icon {
        width: 38px; height: 38px;
        border-radius: 11px;
    }
    .light-cat-icon svg { width: 22px; height: 22px; }
    .light-cat-label { font-size: 11.5px; }

    /* Ajanlatok: mobile carousel - 1 kartya peek effekt */
    .light-offers-grid {
        gap: 12px;
    }
    .light-offer-card {
        flex: 0 0 86%;
    }
    .light-offers-arrow { display: none; } /* mobile-on nincs nyilgomb, csak swipe */

    .light-offer-body { padding: 14px 14px 16px; }
    .light-offer-title { font-size: 15.5px; }

    /* How it works mobile */
    .how-section-dark { padding: 0 0 60px; }
    .how-card-dark {
        padding: 28px 22px;
        border-radius: 20px;
    }
    .how-card-title {
        font-size: 20px;
        margin-bottom: 24px;
        text-align: center;
    }
    .how-step-item {
        gap: 14px;
    }
    .how-step-num { width: 32px; height: 32px; font-size: 13.5px; }
    .how-step-icon svg { width: 32px; height: 32px; }
    .how-step-title { font-size: 14px; }
    .how-step-desc { font-size: 12.5px; }
}

@media (max-width: 480px) {
    /* Kategoriak: 3 oszlop max — tobb a felulet */
    .light-cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

/* Scallop visszafele — fehér tetejű, sötét aljú (Trust előtti átmenet) */
.scallop-divider-up {
    background: #ffffff;
    height: 80px;
}
@media (max-width: 768px) {
    .scallop-divider-up { height: 50px; }
}


/* ═════════════════════════════════════════════════════════════════════════
   LIGHT SECTION ENTRANCE ANIMÁCIÓK (prémium)
   ═════════════════════════════════════════════════════════════════════════ */

/* Light section head — fade-up címek */
.light-section-head .light-h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: light-head-up 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 100ms;
}
.light-section-head .light-section-link {
    opacity: 0;
    transform: translateX(-12px);
    animation: light-head-right 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 250ms;
}
@keyframes light-head-up {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes light-head-right {
    to { opacity: 1; transform: translateX(0); }
}

/* Kategória kártyák — staggered entrance */
.light-cat-card {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    animation: light-cat-in 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.light-cat-card:nth-child(1)  { animation-delay: 100ms; }
.light-cat-card:nth-child(2)  { animation-delay: 160ms; }
.light-cat-card:nth-child(3)  { animation-delay: 220ms; }
.light-cat-card:nth-child(4)  { animation-delay: 280ms; }
.light-cat-card:nth-child(5)  { animation-delay: 340ms; }
.light-cat-card:nth-child(6)  { animation-delay: 400ms; }
.light-cat-card:nth-child(7)  { animation-delay: 460ms; }
.light-cat-card:nth-child(8)  { animation-delay: 520ms; }
.light-cat-card:nth-child(9)  { animation-delay: 580ms; }
@keyframes light-cat-in {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Ajánlat kártyák — staggered fade-up */
.light-offer-card {
    opacity: 0;
    transform: translateY(28px);
    animation: light-offer-in 750ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.light-offer-card:nth-child(1) { animation-delay: 200ms; }
.light-offer-card:nth-child(2) { animation-delay: 280ms; }
.light-offer-card:nth-child(3) { animation-delay: 360ms; }
.light-offer-card:nth-child(4) { animation-delay: 440ms; }
.light-offer-card:nth-child(5) { animation-delay: 520ms; }
.light-offer-card:nth-child(6) { animation-delay: 600ms; }
.light-offer-card:nth-child(7) { animation-delay: 680ms; }
.light-offer-card:nth-child(8) { animation-delay: 760ms; }
@keyframes light-offer-in {
    to { opacity: 1; transform: translateY(0); }
}

/* "Így működik" sötét kártya — fade-up */
.how-card-dark {
    opacity: 0;
    transform: translateY(40px);
    animation: how-card-in 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 200ms;
}
@keyframes how-card-in {
    to { opacity: 1; transform: translateY(0); }
}

/* How steps — staggered children */
.how-step-item {
    opacity: 0;
    transform: translateY(16px);
    animation: how-step-in 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.how-step-item:nth-of-type(1) { animation-delay: 500ms; }
.how-step-item:nth-of-type(2) { animation-delay: 620ms; }
.how-step-item:nth-of-type(3) { animation-delay: 740ms; }
@keyframes how-step-in {
    to { opacity: 1; transform: translateY(0); }
}


/* ═════════════════════════════════════════════════════════════════════════
   3. SZEKCIÓ — VÉLEMÉNYEK (3_szekcio.png referencia)
   ═════════════════════════════════════════════════════════════════════════ */
.light-section-2 {
    padding: 80px 0 60px;
}

.reviews-block {
    margin-bottom: 60px;
}

.reviews-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.reviews-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 106, 0, 0.10);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ff6a00;
    margin-bottom: 22px;
}
.reviews-eyebrow b { font-weight: 800; color: #ff6a00; }

.reviews-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #14171f;
    line-height: 1.1;
}
.reviews-title .accent {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-sub {
    margin: 0;
    font-size: 16px;
    color: #5a6370;
    line-height: 1.55;
}
.reviews-sub .accent { color: #ff6a00; font-weight: 700; }

/* Reviews carousel */
.reviews-carousel {
    position: relative;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 18px;
    overflow: hidden;
    transition: all 320ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 0 rgba(20, 23, 31, 0.02);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(20, 23, 31, 0.10);
    border-color: #d8dce2;
}

.review-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.review-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover .review-img img {
    transform: scale(1.05);
}
.review-quote-badge {
    position: absolute;
    top: 14px; left: 14px;
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--accent, #ff6a00);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.4);
}

.review-body {
    padding: 18px 18px 18px;
}
.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.review-text {
    margin: 0 0 18px;
    font-size: 14px;
    color: #2a2f3a;
    line-height: 1.55;
    min-height: 64px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f1f4;
}
.review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a3d 0%, #ff6a00 100%);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.review-avatar-business {
    background: #14171f;
    font-size: 12px;
}
.review-author-text {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
}
.review-author-text b {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #14171f;
}
.review-author-text span {
    font-size: 12px;
    color: #6a7180;
}
.review-heart {
    background: #f8f9fb;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    color: #c9cdd4;
    display: grid; place-items: center;
    cursor: pointer;
    transition: all 200ms ease;
}
.review-heart:hover {
    background: rgba(255, 106, 0, 0.10);
    color: var(--accent, #ff6a00);
}
.review-heart.is-fav {
    background: var(--accent, #ff6a00);
    color: #fff;
}
.review-heart.is-fav svg { fill: #fff; }

/* Reviews arrows */
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e8eaee;
    color: #14171f;
    display: grid; place-items: center;
    cursor: pointer;
    transition: all 200ms ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 5;
}
.reviews-arrow:hover {
    background: var(--accent, #ff6a00);
    color: #fff;
    border-color: var(--accent, #ff6a00);
    transform: translateY(-50%) scale(1.08);
}
.reviews-arrow-prev { left: -22px; }
.reviews-arrow-next { right: -22px; }

/* Reviews footer (4.9/5 + 10 000+ trust line) */
.reviews-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.reviews-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #5a6370;
}
.reviews-footer-item b {
    color: #14171f;
    font-weight: 800;
    margin-right: 2px;
}
.reviews-footer-divider {
    width: 1px; height: 24px;
    background: #d8dce2;
}
.reviews-footer-avatars {
    display: flex;
    align-items: center;
    margin-right: 4px;
}
.reviews-footer-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 11px;
    margin-left: -8px;
    border: 2px solid #fff;
}
.reviews-footer-avatar:first-child { margin-left: 0; }
.reviews-footer-avatar-more {
    background: #f0f1f4;
    color: #6a7180;
    font-weight: 800;
}


/* ═════════════════════════════════════════════════════════════════════════
   BUSINESS PARTNER CTA (sötét kártya 3_szekcio.png alapján)
   ═════════════════════════════════════════════════════════════════════════ */
.biz-cta-section {
    background: #ffffff;
    padding: 20px 0 100px;
}
.biz-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #14171f;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 24px 60px rgba(20, 23, 31, 0.15);
}

.biz-cta-content {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.biz-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 106, 0, 0.14);
    border: 1px solid rgba(255, 106, 0, 0.35);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent, #ff6a00);
    align-self: flex-start;
    text-transform: uppercase;
}
.biz-cta-eyebrow svg {
    color: var(--accent, #ff6a00);
}

.biz-cta-title {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.15;
}
.biz-cta-title .accent {
    color: var(--accent, #ff6a00);
}

.biz-cta-lede {
    margin: 0;
    font-size: 14.5px;
    color: #aab1bb;
    line-height: 1.55;
}
.biz-cta-lede .accent-soft {
    color: var(--accent, #ff6a00);
    font-weight: 600;
}

.biz-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-top: 4px;
}
.biz-cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.biz-cta-feature-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.12);
    color: var(--accent, #ff6a00);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.biz-cta-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.biz-cta-feature-text b {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}
.biz-cta-feature-text span {
    font-size: 12px;
    color: #8a909b;
    line-height: 1.4;
}

.biz-cta-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.biz-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.biz-cta-btn-primary {
    background: var(--accent, #ff6a00);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.biz-cta-btn-primary:hover {
    background: #ff7e1f;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 106, 0, 0.45);
}
.biz-cta-btn-primary svg { transition: transform 220ms ease; }
.biz-cta-btn-primary:hover svg { transform: translateX(3px); }

.biz-cta-btn-ghost {
    background: transparent;
    color: var(--accent, #ff6a00);
    border: 1.5px solid var(--accent, #ff6a00);
}
.biz-cta-btn-ghost:hover {
    background: rgba(255, 106, 0, 0.10);
    transform: translateY(-2px);
}

/* Visual side */
.biz-cta-visual {
    position: relative;
    overflow: hidden;
}
.biz-cta-circle {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 92%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #4a3a2a 0%, #2a2018 100%);
    box-shadow: 0 0 80px rgba(255, 106, 0, 0.15);
}
.biz-cta-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Floating stat badges */
.biz-cta-stat {
    position: absolute;
    background: rgba(20, 23, 31, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    opacity: 0;
    animation: biz-stat-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--reveal-delay, 200ms);
}
@keyframes biz-stat-in {
    from { opacity: 0; transform: translateY(20px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.biz-cta-stat-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255, 106, 0, 0.14);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.biz-cta-stat b {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.biz-cta-stat b.accent { color: var(--accent, #ff6a00); }
.biz-cta-stat span {
    font-size: 11px;
    color: #8a909b;
    display: block;
}

.biz-cta-stat-1 { top: 14%; right: 6%; animation: biz-stat-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards, biz-stat-float 6s ease-in-out infinite 1s; }
.biz-cta-stat-2 { top: 42%; right: 4%; animation: biz-stat-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards, biz-stat-float 7s ease-in-out infinite 1.2s; }
.biz-cta-stat-3 { top: 64%; right: 8%; animation: biz-stat-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards, biz-stat-float 8s ease-in-out infinite 1.4s; }

@keyframes biz-stat-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Trust pill — bottom-left of visual */
.biz-cta-trust-pill {
    position: absolute;
    bottom: 22px; left: -20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    z-index: 4;
    max-width: 280px;
}
.biz-cta-trust-avatars {
    display: flex;
    flex-shrink: 0;
}
.biz-cta-trust-avatars span {
    width: 30px; height: 30px;
    border-radius: 50%;
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 11px;
    margin-left: -8px;
    border: 2px solid #fff;
}
.biz-cta-trust-avatars span:first-child { margin-left: 0; }
.biz-cta-trust-text {
    font-size: 12px;
    color: #2a2f3a;
    line-height: 1.4;
}
.biz-cta-trust-text b.accent { color: var(--accent, #ff6a00); font-weight: 800; }
.biz-cta-trust-text .accent { color: var(--accent, #ff6a00); }


/* ═════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Vélemények + Biz CTA
   ═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .reviews-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 8px 0;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card {
        flex: 0 0 calc(50% - 7px);
        scroll-snap-align: start;
        min-width: 0;
    }
    .reviews-arrow { display: none; } /* tablet/mobile: swipe */

    .biz-cta-card {
        grid-template-columns: 1fr;
    }
    .biz-cta-content {
        padding: 40px 32px;
    }
    .biz-cta-visual {
        aspect-ratio: 16 / 10;
        min-height: 400px;
    }
    .biz-cta-circle {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .biz-cta-stat-1 { top: 12%; right: 4%; }
    .biz-cta-stat-2 { top: auto; bottom: 30%; right: 4%; }
    .biz-cta-stat-3 { top: auto; bottom: 12%; right: 8%; }
    .biz-cta-trust-pill {
        left: 16px; bottom: 16px;
    }
}

@media (max-width: 768px) {
    .light-section-2 { padding: 56px 0 40px; }
    .reviews-block { margin-bottom: 40px; }
    .reviews-head { margin-bottom: 32px; }
    .reviews-title { font-size: clamp(24px, 7vw, 32px); }
    .reviews-sub { font-size: 14.5px; }

    .review-card { flex: 0 0 84%; }
    .review-text { min-height: auto; }

    .reviews-footer {
        gap: 16px;
        flex-direction: column;
    }
    .reviews-footer-divider { display: none; }

    .biz-cta-section { padding: 0 0 60px; }
    .biz-cta-card { border-radius: 22px; }
    .biz-cta-content { padding: 32px 24px; gap: 18px; }
    .biz-cta-title { font-size: clamp(22px, 6vw, 28px); }
    .biz-cta-lede { font-size: 14px; }
    .biz-cta-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .biz-cta-actions { flex-direction: column; }
    .biz-cta-btn {
        width: 100%;
        justify-content: center;
    }
    .biz-cta-visual {
        min-height: 320px;
        aspect-ratio: 4 / 3;
    }
    .biz-cta-circle { width: 70%; }
    .biz-cta-stat {
        padding: 8px 12px;
        border-radius: 12px;
    }
    .biz-cta-stat b { font-size: 14px; }
    .biz-cta-stat span { font-size: 10px; }
    .biz-cta-trust-pill {
        padding: 10px 14px;
        max-width: calc(100% - 32px);
    }
    .biz-cta-trust-text { font-size: 11px; }
}


/* ═════════════════════════════════════════════════════════════════════════
   FAQ SZEKCIÓ (Screenshot referencia)
   ═════════════════════════════════════════════════════════════════════════ */
.faq-section {
    background: #ffffff;
    padding: 80px 0 100px;
    color: #14171f;
}

.faq-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 106, 0, 0.10);
    border: 1px solid rgba(255, 106, 0, 0.30);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent, #ff6a00);
    margin-bottom: 22px;
}
.faq-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #14171f;
    line-height: 1.05;
}
.faq-title .accent {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-sub {
    margin: 0;
    font-size: 16px;
    color: #5a6370;
    line-height: 1.55;
}

/* Grid: bal kép, jobb accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: start;
}

/* Bal: vizuál ───────────────────────────────────────────────────────── */
.faq-visual {
    position: relative;
    min-height: 540px;
}

/* Decorative dots top-left */
.faq-visual::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, #ffb380 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 1;
    opacity: 0.4;
}

.faq-image {
    position: relative;
    width: 88%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f4e8d4 0%, #e8c8a0 50%, #d4a574 100%);
    box-shadow: 0 24px 60px rgba(20, 23, 31, 0.15);
    z-index: 2;
}
.faq-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.faq-image-fallback {
    /* Visible when img fails to load — already covered by background gradient */
}

/* Felső lebegő badge: Last minute ajánlat */
.faq-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(20, 23, 31, 0.12);
    z-index: 5;
    opacity: 0;
    animation: faq-badge-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--reveal-delay, 200ms);
    min-width: 240px;
}
@keyframes faq-badge-in {
    from { opacity: 0; transform: translateY(20px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.faq-badge-top {
    top: 6%; left: -8%;
    animation: faq-badge-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
               faq-float 7s ease-in-out infinite 1.2s;
}
.faq-badge-bottom {
    bottom: 16%; left: -4%;
    animation: faq-badge-in 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
               faq-float 8s ease-in-out infinite 1.6s;
}
@keyframes faq-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Dark variant (Foglalás sikeres) */
.faq-badge-dark {
    background: #14171f;
    color: #fff;
}
.faq-badge-dark .faq-badge-text b { color: #fff; }
.faq-badge-dark .faq-badge-text .faq-badge-line { color: #aab1bb; }

.faq-badge-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--accent, #ff6a00);
    color: #fff;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.faq-badge-icon-success {
    background: rgba(43, 212, 164, 0.20);
    color: #2bd4a4;
}

.faq-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    line-height: 1.3;
}
.faq-badge-text b {
    font-size: 13.5px;
    font-weight: 800;
    color: #14171f;
    letter-spacing: -0.01em;
}
.faq-badge-line {
    font-size: 12px;
    color: #5a6370;
    font-weight: 500;
}
.faq-badge-line-meta em {
    color: var(--accent, #ff6a00);
    font-style: normal;
    font-weight: 700;
}
.faq-badge-line-success {
    color: #2bd4a4 !important;
    font-weight: 700;
}

/* Jobb felső kör narancs ikon (a kép tetején) */
.faq-icon-circle {
    position: absolute;
    top: 6%; right: 6%;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent, #ff6a00);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
    z-index: 6;
    animation: faq-circle-spin 12s linear infinite;
}
@keyframes faq-circle-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.faq-icon-circle svg {
    /* Counter-spin the icon to keep it upright */
    animation: faq-circle-counterspin 12s linear infinite;
}
@keyframes faq-circle-counterspin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}


/* Jobb: accordion ───────────────────────────────────────────────────── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
    border-color: #d4d8df;
    box-shadow: 0 8px 24px rgba(20, 23, 31, 0.06);
}
.faq-item[open], .faq-item-active {
    border-color: rgba(255, 106, 0, 0.30);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.04), rgba(255, 106, 0, 0.01));
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.08);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: padding 220ms ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

.faq-q-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #f5f6f8;
    color: #5a6370;
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] .faq-q-icon,
.faq-item-active .faq-q-icon {
    background: var(--accent, #ff6a00);
    color: #fff;
}

.faq-q-text {
    flex: 1;
    font-size: 15.5px;
    font-weight: 700;
    color: #14171f;
    letter-spacing: -0.01em;
}
.faq-item[open] .faq-q-text,
.faq-item-active .faq-q-text {
    color: var(--accent, #ff6a00);
}

.faq-q-chevron {
    flex-shrink: 0;
    color: #aab1bb;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] .faq-q-chevron,
.faq-item-active .faq-q-chevron {
    transform: rotate(180deg);
    color: var(--accent, #ff6a00);
}

.faq-a {
    padding: 0 22px 20px 72px;
    animation: faq-a-in 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes faq-a-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.faq-a p {
    margin: 0;
    font-size: 14px;
    color: #5a6370;
    line-height: 1.6;
}


/* ═════════════════════════════════════════════════════════════════════════
   FOOTER CTA pad (light) — Üzleti partnereknek
   ═════════════════════════════════════════════════════════════════════════ */
.footer-cta-section {
    background: #ffffff;
    padding: 0 0 60px;
}

.footer-cta-pad {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe4cc 100%);
    border-radius: 24px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.7fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Decorative diagonal lines bottom-right */
.footer-cta-pad::after {
    content: '';
    position: absolute;
    right: -40px; bottom: -40px;
    width: 200px; height: 200px;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255, 106, 0, 0.10) 49%, rgba(255, 106, 0, 0.10) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgba(255, 106, 0, 0.10) 49%, rgba(255, 106, 0, 0.10) 51%, transparent 52%);
    background-size: 24px 24px, 16px 16px;
    background-position: 0 0, 8px 8px;
    pointer-events: none;
}

.footer-cta-text {
    min-width: 0;
}
.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent, #ff6a00);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-cta-title {
    margin: 0 0 8px;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #14171f;
    line-height: 1.15;
}
.footer-cta-title .accent {
    color: var(--accent, #ff6a00);
}
.footer-cta-sub {
    margin: 0;
    font-size: 14px;
    color: #5a6370;
    line-height: 1.5;
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.footer-cta-btn-primary {
    background: var(--accent, #ff6a00);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 106, 0, 0.32);
}
.footer-cta-btn-primary:hover {
    background: #ff7e1f;
    transform: translateY(-2px);
}
.footer-cta-btn-primary svg { transition: transform 220ms ease; }
.footer-cta-btn-primary:hover svg { transform: translateX(3px); }

.footer-cta-btn-ghost {
    background: #ffffff;
    color: #14171f;
    border: 1px solid #e8eaee;
}
.footer-cta-btn-ghost:hover {
    border-color: var(--accent, #ff6a00);
    color: var(--accent, #ff6a00);
}

.footer-cta-trust {
    text-align: center;
    z-index: 2;
}
.footer-cta-trust-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.footer-cta-trust-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 12px;
    margin-left: -10px;
    border: 2px solid #fff;
    flex-shrink: 0;
}
.footer-cta-trust-avatar:first-child { margin-left: 0; }
.footer-cta-trust-avatar-more {
    background: #14171f;
    font-size: 11px;
    letter-spacing: -0.02em;
}
.footer-cta-trust-label {
    font-size: 12px;
    color: #5a6370;
    font-weight: 500;
}


/* ═════════════════════════════════════════════════════════════════════════
   FOOTER (sötét) — footer.png referencia szerint
   ═════════════════════════════════════════════════════════════════════════ */
.footer-dark {
    background: #0c0e13;
    color: #aab1bb;
    padding: 64px 0 32px;
    overflow: hidden;
}

.footer-dark[data-footer-reveal] {
    opacity: 0;
    transform: translate3d(0, 44px, 0);
    transition:
        opacity 900ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 900ms cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
}

.footer-dark[data-footer-reveal].is-footer-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.footer-dark[data-footer-reveal] .footer-dark-brand,
.footer-dark[data-footer-reveal] .footer-dark-col,
.footer-dark[data-footer-reveal] .footer-dark-trust-item,
.footer-dark[data-footer-reveal] .footer-dark-bottom {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 760ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 760ms cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-brand,
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-col,
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-trust-item,
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-bottom {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-brand { transition-delay: 80ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-col:nth-child(2) { transition-delay: 150ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-col:nth-child(3) { transition-delay: 210ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-col:nth-child(4) { transition-delay: 270ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-col:nth-child(5) { transition-delay: 330ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-trust-item:nth-child(1) { transition-delay: 260ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-trust-item:nth-child(2) { transition-delay: 320ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-trust-item:nth-child(3) { transition-delay: 380ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-trust-item:nth-child(4) { transition-delay: 440ms; }
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-bottom { transition-delay: 500ms; }

/* 5 oszlopos grid: brand + 4 col */
.footer-dark-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand oszlop */
.footer-dark-brand {
    min-width: 0;
}
.footer-dark-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    text-decoration: none;
}
.footer-dark-logo-word {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.footer-dark-tagline {
    margin: 0 0 22px;
    font-size: 13.5px;
    color: #8a909b;
    line-height: 1.6;
    max-width: 320px;
}

.footer-dark-social {
    display: flex;
    gap: 10px;
}
.footer-dark-social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: grid; place-items: center;
    transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-dark-social-link:hover {
    background: var(--accent, #ff6a00);
    transform: translateY(-2px);
}

/* Link oszlopok */
.footer-dark-col {
    min-width: 0;
}
.footer-dark-h {
    margin: 0 0 18px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    text-transform: uppercase;
}
.footer-dark-link {
    display: block;
    padding: 6px 0;
    font-size: 13.5px;
    color: #aab1bb;
    text-decoration: none;
    transition: color 200ms ease;
}
.footer-dark-link:hover {
    color: var(--accent, #ff6a00);
}

/* Trust sor */
.footer-dark-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-dark-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.footer-dark-trust-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    color: var(--accent, #ff6a00);
    display: grid; place-items: center;
}
.footer-dark-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.footer-dark-trust-text b {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.footer-dark-trust-text span {
    font-size: 12.5px;
    color: #8a909b;
    line-height: 1.4;
}

/* Bottom — copyright + nyelv */
.footer-dark-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-dark-copy {
    font-size: 13px;
    color: #6a7180;
}
.footer-dark-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #fff;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 220ms ease;
}
.footer-dark-lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent, #ff6a00);
}
.footer-dark-lang-flag {
    font-size: 16px;
}

.page-provider .footer-dark {
    --accent: #10b981;
    --accent-2: #2bd4a4;
}

.page-provider .footer-dark-logo-word span[style*="#ff6a00"] {
    color: #10b981 !important;
}

.page-provider .footer-dark-logo svg [fill="#ff6a00"] {
    fill: #10b981 !important;
}

.page-provider .footer-dark-logo svg [stroke="#ff6a00"] {
    stroke: #10b981 !important;
}

.page-provider .footer-dark-social-link:hover,
.page-provider .footer-dark-trust-icon {
    color: #fff;
}

.page-provider .footer-dark-social-link:hover {
    background: #10b981;
    box-shadow: 0 16px 34px rgba(16, 185, 129, 0.24);
}

.page-provider .footer-dark-link:hover,
.page-provider .footer-dark-lang-btn:hover {
    color: #10b981;
}

.page-provider .footer-dark-lang-btn:hover {
    border-color: rgba(16, 185, 129, 0.55);
}

.page-provider .footer-dark-trust-icon {
    color: #10b981;
}


/* ═════════════════════════════════════════════════════════════════════════
   RESPONSIVE — FAQ + Footer
   ═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .faq-visual { min-height: 480px; max-width: 480px; margin: 0 auto; }

    /* Footer CTA pad: brand grid */
    .footer-cta-pad {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .footer-cta-eyebrow,
    .footer-cta-actions { justify-content: center; }
    .footer-cta-eyebrow { display: inline-flex; }
    .footer-cta-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-cta-btn { flex: 1; max-width: 280px; }

    /* Footer dark: 2x2 oszlop link csoport + brand teljes szélességű */
    .footer-dark-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-dark-brand {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }
    .footer-dark-trust-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .faq-section { padding: 60px 0 70px; }
    .faq-head { margin-bottom: 40px; }
    .faq-title { font-size: clamp(26px, 7vw, 36px); }
    .faq-sub { font-size: 14.5px; }

    .faq-grid { gap: 48px; }
    .faq-visual { min-height: 420px; }
    .faq-image { width: 75%; }
    .faq-badge {
        min-width: 200px;
        padding: 10px 12px;
        border-radius: 12px;
    }
    .faq-badge-top { top: 4%; left: 0; }
    .faq-badge-bottom { bottom: 10%; left: 0; }
    .faq-badge-icon { width: 32px; height: 32px; }
    .faq-badge-text b { font-size: 12.5px; }
    .faq-badge-line { font-size: 11.5px; }
    .faq-icon-circle {
        width: 44px; height: 44px;
        top: 4%; right: 4%;
    }
    .faq-icon-circle svg { width: 20px; height: 20px; }

    .faq-q {
        padding: 16px 18px;
        gap: 12px;
    }
    .faq-q-icon { width: 32px; height: 32px; }
    .faq-q-text { font-size: 14.5px; }
    .faq-a { padding: 0 18px 18px 62px; }
    .faq-a p { font-size: 13.5px; }

    /* Footer CTA */
    .footer-cta-section { padding: 0 0 40px; }
    .footer-cta-pad {
        padding: 28px 22px;
        border-radius: 20px;
    }
    .footer-cta-title { font-size: 18px; }
    .footer-cta-sub { font-size: 13px; }
    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-cta-btn { max-width: 100%; }

    /* Footer dark */
    .footer-dark { padding: 48px 0 24px; }
    .footer-dark-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }
    .footer-dark-tagline { max-width: 100%; }
    .footer-dark-trust-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0;
    }
    .footer-dark-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .faq-badge-top { left: -4%; }
    .faq-badge-bottom { left: -4%; }
}
