/* ÜresÓra CSS split: Provider/business pages. Source: app.css lines 13465-15791. */
/* ═════════════════════════════════════════════════════════════════════════
   HERO EXTRA — Live badge, glow, floating cards, ring (premium)
   ═════════════════════════════════════════════════════════════════════════ */

.ab-hero {
    position: relative;
    isolation: isolate;
}

/* ─── Animált háttér narancs glow blobok ──────────────────── */
.ab-hero-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ab-hero-glow-1,
.ab-hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
}
.ab-hero-glow-1 {
    top: 20%; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, #ff6a00 0%, transparent 70%);
    animation: ab-hero-glow-drift-1 18s ease-in-out infinite;
}
.ab-hero-glow-2 {
    bottom: 10%; right: 15%;
    width: 350px; height: 350px;
    background: radial-gradient(circle, #ff8a3d 0%, transparent 70%);
    animation: ab-hero-glow-drift-2 22s ease-in-out infinite;
}
@keyframes ab-hero-glow-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, -60px) scale(1.1); }
    66%      { transform: translate(-50px, 40px) scale(0.95); }
}
@keyframes ab-hero-glow-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-70px, 50px) scale(1.12); }
}

/* Hero contents fent legyenek a glow felett */
.ab-hero .container {
    position: relative;
    z-index: 1;
}

/* ─── LIVE badge (pulzáló) ──────────────────────────────────── */
.ab-hero-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    background: rgba(255, 106, 0, 0.10);
    border: 1px solid rgba(255, 106, 0, 0.30);
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 11.5px;
    color: #fff;
    backdrop-filter: blur(8px);
}
.ab-hero-live-pulse {
    position: relative;
    width: 8px; height: 8px;
    background: #ff6a00;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.20);
    animation: ab-hero-live-pulse 1.4s ease-in-out infinite;
}
@keyframes ab-hero-live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.40); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 106, 0, 0); }
}
.ab-hero-live-text {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #d0d5dd;
}
.ab-hero-live-text b {
    color: var(--accent, #ff6a00);
    font-weight: 800;
    margin: 0 2px;
}

/* ─── Hero visual: glow ring körül a képen ─────────────── */
.ab-hero-visual {
    position: relative;
    isolation: isolate;
}
.ab-hero-ring {
    position: absolute;
    inset: -12px;
    border-radius: 32px;
    border: 1px solid rgba(255, 106, 0, 0.20);
    pointer-events: none;
    z-index: 0;
}
.ab-hero-ring::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 36px;
    background: radial-gradient(circle at 20% 30%, rgba(255, 106, 0, 0.25), transparent 60%);
    opacity: 0.6;
    z-index: -1;
}
.ab-hero-bg-img { z-index: 1; }

/* ─── Floating cards a kép tetején ─────────────────────── */
.ab-hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #14171f;
    z-index: 3;
    animation: ab-hero-float 4s ease-in-out infinite;
}
.ab-hero-float-card-1 {
    top: 20px; left: 20px;
    animation-delay: 0s;
}
.ab-hero-float-card-2 {
    bottom: 20px; right: 20px;
    animation-delay: 1s;
}
.ab-hero-float-card-dot {
    width: 8px; height: 8px;
    background: #2bd4a4;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(43, 212, 164, 0.20);
    animation: ab-hero-live-pulse 1.6s ease-in-out infinite;
}
.ab-hero-float-card b {
    font-weight: 800;
    color: #14171f;
}
@keyframes ab-hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}


/* ─── Mobil: Hero visual ALWAYS visible ───────────────────── */
@media (max-width: 1100px) {
    .ab-hero-visual {
        min-height: 320px;
        max-width: 480px;
        margin: 0 auto;
        order: 2; /* a szöveg után */
    }
    .ab-hero-left { order: 1; }
    .ab-hero-glow-1 { width: 280px; height: 280px; opacity: 0.3; }
    .ab-hero-glow-2 { width: 240px; height: 240px; opacity: 0.3; }
}

@media (max-width: 768px) {
    .ab-hero-visual {
        min-height: 260px;
        max-width: 100%;
    }
    .ab-hero-float-card { font-size: 11px; padding: 6px 10px; }
    .ab-hero-float-card-1 { top: 12px; left: 8px; }
    .ab-hero-float-card-2 { bottom: 12px; right: 8px; }
    .ab-hero-live { font-size: 10.5px; padding: 5px 10px 5px 8px; }
    .ab-hero-ring { inset: -6px; }
}

@media (max-width: 480px) {
    .ab-hero-visual { min-height: 220px; }
    .ab-hero-glow-1, .ab-hero-glow-2 { display: none; }
}


/* ═════════════════════════════════════════════════════════════════════════
   ÜZLETI PARTNEREKNEK OLDAL — Zöld téma (#10b981)
   Felépítés: Hero + Benefits + Steps + Admin + Numbers + Loyalty + Final
   ═════════════════════════════════════════════════════════════════════════ */

/* ─── Közös: zöld accent, eyebrow, címek ─────────────────────── */
.sz-accent { color: #10b981; }

.sz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.30);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #10b981;
    margin-bottom: 18px;
}
.sz-eyebrow-dark { color: #10b981; }
.sz-eyebrow-light {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.sz-section-title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: #fff;
}
.sz-section-title-light {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: #14171f;
}
.sz-section-lede-dark {
    margin: 0 0 32px;
    font-size: 14.5px;
    color: #aab1bb;
    line-height: 1.7;
}
.sz-section-lede-dark b { color: #fff; }
.sz-section-sub-light {
    margin: 0 0 18px;
    font-size: 14.5px;
    color: #5a6370;
    line-height: 1.65;
}

/* Pozitív értékek (zöld trendek) */
.sz-pos {
    color: #10b981;
    font-style: normal;
    font-weight: 700;
    font-size: 11.5px;
}
.sz-pos-light {
    color: #5a6370;
    font-style: normal;
    font-weight: 500;
    font-size: 10.5px;
}

/* Közös gomb */
.sz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}
.sz-btn-primary {
    background: #10b981;
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}
.sz-btn-primary:hover {
    background: #0fa372;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
}
.sz-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.sz-btn-ghost:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.40);
}


/* ═════════════════════════════════════════════════════════════════════════
   HERO — Üzleti partnereknek
   ═════════════════════════════════════════════════════════════════════════ */
.sz-hero {
    background: #0c0e13;
    color: #fff;
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.sz-hero-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.sz-hero-glow-1,
.sz-hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
}
.sz-hero-glow-1 {
    top: 20%; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    animation: sz-hero-glow-1 18s ease-in-out infinite;
}
.sz-hero-glow-2 {
    bottom: 10%; right: 15%;
    width: 350px; height: 350px;
    background: radial-gradient(circle, #2bd4a4 0%, transparent 70%);
    animation: sz-hero-glow-2 22s ease-in-out infinite;
}
@keyframes sz-hero-glow-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, -60px) scale(1.1); }
    66%      { transform: translate(-50px, 40px) scale(0.95); }
}
@keyframes sz-hero-glow-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-70px, 50px) scale(1.12); }
}

.sz-hero .container { position: relative; z-index: 1; }

.sz-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.sz-hero-left { min-width: 0; }

.sz-hero-title {
    margin: 0 0 22px;
    font-size: clamp(36px, 4.2vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
}

.sz-hero-lede {
    margin: 0 0 32px;
    font-size: 16.5px;
    color: #aab1bb;
    line-height: 1.6;
    max-width: 480px;
}

.sz-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.sz-hero-mini-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.sz-hero-mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sz-hero-mini-icon {
    width: 38px; height: 38px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    display: grid; place-items: center;
}
.sz-hero-mini-stat b {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px;
}
.sz-hero-mini-stat span {
    font-size: 11.5px;
    color: #aab1bb;
}

/* Hero visual */
.sz-hero-visual {
    position: relative;
    min-height: 540px;
    aspect-ratio: 1 / 0.95;
    border-radius: 24px;
    overflow: hidden;
    background-color: #1a1d24;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.30) 0%, transparent 50%),
        linear-gradient(135deg, #1a2d24 0%, #0c1410 60%, #0a0805 100%);
}
.sz-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    z-index: 0;
}
.sz-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(12, 14, 19, 0.3) 0%, transparent 40%),
        linear-gradient(to bottom, transparent 50%, rgba(12, 14, 19, 0.6) 100%);
}

/* Dashboard mockup in hero */
.sz-hero-dashboard {
    position: absolute;
    bottom: 80px;
    left: 32px;
    width: 320px;
    background: rgba(20, 23, 31, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px;
    z-index: 2;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.sz-hero-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.sz-hero-dashboard-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 11.5px;
    font-weight: 800;
}
.sz-hero-dashboard-title {
    font-size: 11px;
    color: #aab1bb;
    font-weight: 600;
}
.sz-hero-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}
.sz-hero-dashboard-stat {
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}
.sz-hero-dashboard-stat-label {
    display: block;
    font-size: 9px;
    color: #6a7180;
    margin-bottom: 4px;
}
.sz-hero-dashboard-stat b {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.sz-hero-dashboard-chart {
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 6px;
}

/* Floating cards on hero */
.sz-hero-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: sz-hero-float 4s ease-in-out infinite;
}
.sz-hero-float-1 {
    top: 24px; right: 24px;
    animation-delay: 0s;
}
.sz-hero-float-2 {
    top: 110px; right: 24px;
    animation-delay: 1s;
}
.sz-hero-float-icon {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-hero-float span {
    display: block;
    font-size: 10.5px;
    color: #5a6370;
    margin-bottom: 2px;
}
.sz-hero-float b {
    display: block;
    font-size: 13px;
    color: #14171f;
    font-weight: 800;
    line-height: 1;
}
.sz-hero-float b i { font-size: 10px; margin-left: 4px; color: #10b981; }
@keyframes sz-hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Hero toast — alul */
.sz-hero-toast {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: rgba(20, 23, 31, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.20);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    animation: sz-hero-toast-in 600ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 1.2s;
}
@keyframes sz-hero-toast-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sz-hero-toast-icon {
    width: 32px; height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-hero-toast b {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2px;
}
.sz-hero-toast span {
    font-size: 11px;
    color: #aab1bb;
}


/* ═════════════════════════════════════════════════════════════════════════
   BENEFITS — világos, rounded top
   ═════════════════════════════════════════════════════════════════════════ */
.sz-benefits {
    background: #fdfaf6;
    padding: 80px 0;
}
.sz-benefits-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}
.sz-benefits-text { min-width: 0; }

.sz-benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.sz-benefit-card {
    padding: 18px;
    background: #ffffff;
    border: 1px solid #f0e8df;
    border-radius: 14px;
    transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sz-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.30);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.10);
}
.sz-benefit-card-icon {
    width: 42px; height: 42px;
    background: rgba(16, 185, 129, 0.10);
    color: #10b981;
    border-radius: 12px;
    display: grid; place-items: center;
    margin-bottom: 12px;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sz-benefit-card:hover .sz-benefit-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: #10b981;
    color: #fff;
}
.sz-benefit-card b {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #14171f;
    margin-bottom: 4px;
}
.sz-benefit-card span {
    font-size: 12px;
    color: #5a6370;
    line-height: 1.45;
}

.sz-benefits-visual {
    position: relative;
    min-height: 420px;
}

.sz-benefits-dashboard {
    background: #14171f;
    border-radius: 18px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 24px 60px rgba(20, 23, 31, 0.18);
}
.sz-benefits-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.sz-benefits-dashboard-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.sz-benefits-dashboard-date {
    font-size: 11.5px;
    color: #aab1bb;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}
.sz-benefits-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.sz-bd-stat {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.sz-bd-stat > span {
    display: block;
    font-size: 10px;
    color: #6a7180;
    margin-bottom: 6px;
}
.sz-bd-stat b {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.sz-bd-stat-ring { padding: 8px; text-align: center; }
.sz-bd-ring {
    position: relative;
    width: 56px; height: 56px;
    margin: 0 auto;
}
.sz-bd-ring-text {
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    font-size: 13px;
    font-weight: 800;
    color: #10b981;
}
.sz-benefits-dashboard-chart {
    height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px;
}

/* Floating cards a benefits-visual körül */
.sz-benefits-float {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 12px 32px rgba(20, 23, 31, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: sz-hero-float 4s ease-in-out infinite;
}
.sz-benefits-float-1 {
    top: -16px; right: -16px;
    animation-delay: 0s;
}
.sz-benefits-float-2 {
    top: 50%; left: -24px;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}
.sz-benefits-float-3 {
    bottom: -16px; right: -16px;
    animation-delay: 1.6s;
}
.sz-benefits-float-icon {
    width: 32px; height: 32px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-benefits-float img {
    width: 32px; height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sz-benefits-float span {
    display: block;
    font-size: 10.5px;
    color: #5a6370;
    margin-bottom: 2px;
}
.sz-benefits-float b {
    display: block;
    font-size: 12.5px;
    color: #14171f;
    font-weight: 800;
    line-height: 1.1;
}
.sz-bd-ring-mini { width: 34px; height: 34px; }
.sz-bd-ring-text-mini {
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    font-size: 10px;
    font-weight: 800;
    color: #10b981;
}

/* Stats bar */
.sz-benefits-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid #f0e8df;
    border-radius: 18px;
    text-align: center;
}
.sz-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.sz-stats-item-icon {
    width: 48px; height: 48px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 50%;
    display: grid; place-items: center;
    margin-bottom: 6px;
}
.sz-stats-item b {
    font-size: 22px;
    font-weight: 800;
    color: #14171f;
    line-height: 1;
}
.sz-stats-item span {
    font-size: 11.5px;
    color: #5a6370;
    line-height: 1.45;
}


/* ═════════════════════════════════════════════════════════════════════════
   STEPS — sötét, rounded top
   ═════════════════════════════════════════════════════════════════════════ */
.sz-steps {
    background: #0c0e13;
    color: #fff;
    padding: 80px 0;
}
.sz-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}
.sz-steps-text { min-width: 0; }

.sz-steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    position: relative;
}
.sz-steps-list::before {
    content: "";
    position: absolute;
    left: 22px; top: 22px; bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.40), rgba(16, 185, 129, 0.08));
}
.sz-step-item {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.sz-step-num {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: #14171f;
    border: 2px solid #10b981;
    border-radius: 50%;
    display: grid; place-items: center;
    color: #10b981;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08),
                0 0 24px rgba(16, 185, 129, 0.20);
}
.sz-step-body { padding-top: 4px; min-width: 0; }
.sz-step-icon {
    width: 38px; height: 38px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 10px;
    display: grid; place-items: center;
    margin-bottom: 10px;
}
.sz-step-body h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.sz-step-body p {
    margin: 0 0 6px;
    font-size: 13.5px;
    color: #aab1bb;
    line-height: 1.5;
}
.sz-step-hl {
    display: inline-block;
    font-size: 12px;
    color: #10b981;
    font-weight: 700;
}

/* Steps visual = telefon mockup + orbit cards */
.sz-steps-visual {
    position: relative;
    min-height: 600px;
}
.sz-steps-phone {
    position: relative;
    width: 280px;
    margin: 0 auto;
    z-index: 2;
}
.sz-steps-phone-frame {
    background: #1a1d24;
    border: 2px solid rgba(16, 185, 129, 0.20);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(16, 185, 129, 0.15);
}
.sz-steps-phone-notch {
    width: 80px; height: 14px;
    background: #14171f;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 6px;
}
.sz-steps-phone-screen {
    background: #0c0e13;
    border-radius: 24px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sz-spi-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sz-spi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sz-spi-header > div { flex: 1; min-width: 0; }
.sz-spi-header b {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 800;
}
.sz-spi-header span {
    font-size: 10.5px;
    color: #aab1bb;
}
.sz-spi-bell {
    position: relative;
    width: 32px; height: 32px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 10px;
    display: grid; place-items: center;
}
.sz-spi-bell-dot {
    position: absolute;
    top: 6px; right: 6px;
    width: 8px; height: 8px;
    background: #ff5a4d;
    border-radius: 50%;
    border: 2px solid #0c0e13;
}

.sz-spi-card {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}
.sz-spi-card > span {
    display: block;
    font-size: 10px;
    color: #6a7180;
    margin-bottom: 4px;
}
.sz-spi-card-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.sz-spi-card-row b {
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}
.sz-spi-mini-chart {
    height: 30px;
    margin-top: 6px;
    background:
        linear-gradient(90deg, rgba(16, 185, 129, 0.3) 0%, transparent 30%, rgba(16, 185, 129, 0.5) 60%, rgba(16, 185, 129, 0.8) 100%);
    border-radius: 4px;
    opacity: 0.4;
}
.sz-spi-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.sz-spi-card-head i {
    font-size: 10px;
    color: #10b981;
    font-weight: 700;
    font-style: normal;
}
.sz-spi-booking {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sz-spi-booking img {
    width: 28px; height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sz-spi-booking > div { flex: 1; min-width: 0; }
.sz-spi-booking b {
    display: block;
    font-size: 11.5px;
    color: #fff;
    font-weight: 700;
}
.sz-spi-booking span {
    font-size: 10px;
    color: #aab1bb;
}
.sz-spi-badge {
    font-size: 9px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.10);
    padding: 3px 8px;
    border-radius: 999px;
    font-style: normal;
    font-weight: 700;
}
.sz-spi-card-revenue {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.03));
    border: 1px solid rgba(16, 185, 129, 0.20);
}

/* Orbit floating cards körök */
.sz-steps-orbit {
    position: absolute;
    background: rgba(20, 23, 31, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.20);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 200px;
    z-index: 3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4),
                0 0 24px rgba(16, 185, 129, 0.10);
}
.sz-steps-orbit-1 { top: 30px; left: -10px; animation: sz-hero-float 4s ease-in-out infinite; animation-delay: 0s; }
.sz-steps-orbit-2 { top: 45%; right: -10px; animation: sz-hero-float 4s ease-in-out infinite; animation-delay: 1s; }
.sz-steps-orbit-3 { bottom: 30px; left: -10px; animation: sz-hero-float 4s ease-in-out infinite; animation-delay: 2s; }

.sz-steps-orbit-num {
    width: 24px; height: 24px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}
.sz-steps-orbit-body { flex: 1; min-width: 0; }
.sz-steps-orbit-icon {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 8px;
    display: grid; place-items: center;
    margin-bottom: 6px;
}
.sz-steps-orbit b {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2px;
}
.sz-steps-orbit span {
    font-size: 11px;
    color: #aab1bb;
    line-height: 1.35;
}

.sz-steps-orbit-path {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Trust bar */
.sz-steps-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}
.sz-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.sz-trust-icon {
    width: 40px; height: 40px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-trust-item b {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.sz-trust-item span {
    font-size: 12px;
    color: #aab1bb;
    line-height: 1.4;
}


/* ═════════════════════════════════════════════════════════════════════════
   ADMIN — világos, rounded top (modern dashboard mockup)
   ═════════════════════════════════════════════════════════════════════════ */
.sz-admin {
    background: #fdfaf6;
    padding: 80px 0;
}
.sz-admin-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
}
.sz-admin-text { min-width: 0; }

.sz-admin-visual {
    position: relative;
    min-height: 440px;
}

/* Big admin dashboard mockup */
.sz-admin-dashboard {
    background: #14171f;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 130px 1fr;
    color: #fff;
    box-shadow: 0 30px 70px rgba(20, 23, 31, 0.25);
    min-height: 380px;
}
.sz-admin-dashboard-side {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sz-admin-dashboard-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    margin-bottom: 12px;
    color: #10b981;
    font-size: 13px;
    font-weight: 800;
}
.sz-admin-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #aab1bb;
    text-decoration: none;
    transition: all 200ms;
    cursor: pointer;
}
.sz-admin-nav-item:hover { background: rgba(255, 255, 255, 0.03); color: #fff; }
.sz-admin-nav-active {
    background: rgba(16, 185, 129, 0.10) !important;
    color: #10b981 !important;
    font-weight: 700;
}

.sz-admin-dashboard-main { padding: 18px; }
.sz-admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.sz-admin-dashboard-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}
.sz-admin-dashboard-header span {
    font-size: 11.5px;
    color: #aab1bb;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}
.sz-admin-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.sz-ad-stat {
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.sz-ad-stat > span {
    display: block;
    font-size: 9.5px;
    color: #6a7180;
    margin-bottom: 4px;
}
.sz-ad-stat b {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.sz-ad-stat-ring { padding: 8px; text-align: center; }

.sz-admin-dashboard-chart {
    height: 110px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px;
}

/* Floating cards körül az admin mockup */
.sz-admin-float {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 16px 36px rgba(20, 23, 31, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: sz-hero-float 4s ease-in-out infinite;
}
.sz-admin-float-1 { top: -16px; left: -20px; animation-delay: 0s; }
.sz-admin-float-2 { bottom: 80px; right: -28px; animation-delay: 0.8s; }
.sz-admin-float-3 { bottom: -16px; left: 60px; animation-delay: 1.6s; }
.sz-admin-float-icon {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-admin-float span {
    display: block;
    font-size: 10.5px;
    color: #5a6370;
    margin-bottom: 2px;
}
.sz-admin-float b {
    display: block;
    font-size: 12.5px;
    color: #14171f;
    font-weight: 800;
    line-height: 1.1;
}

/* Admin features */
.sz-admin-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}
.sz-admin-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    transition: all 240ms;
}
.sz-admin-feature:hover {
    background: rgba(16, 185, 129, 0.04);
}
.sz-admin-feature-icon {
    width: 36px; height: 36px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-admin-feature b {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: #14171f;
    margin-bottom: 2px;
}
.sz-admin-feature span {
    font-size: 11.5px;
    color: #5a6370;
    line-height: 1.4;
}

/* ─── Valódi partnerek testimonial szekció ────────────────────── */
.sz-partners { margin-top: 24px; }
.sz-partners-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.sz-partners-text { padding-top: 20px; }
.sz-partners-line {
    width: 64px;
    height: 3px;
    background: #10b981;
    border-radius: 999px;
    margin-top: 16px;
}

.sz-partners-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.sz-partner-card {
    background: #14171f;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 18px 40px rgba(20, 23, 31, 0.15);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sz-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(16, 185, 129, 0.18);
}
.sz-partner-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.sz-partner-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(20, 23, 31, 0.85) 100%);
}
.sz-partner-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    width: 36px; height: 36px;
    background: rgba(16, 185, 129, 0.20);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: grid; place-items: center;
    z-index: 1;
}
.sz-partner-card-name {
    position: absolute;
    bottom: 14px; left: 14px;
    z-index: 1;
}
.sz-partner-card-name b {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
}
.sz-partner-card-name span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.sz-partner-card p {
    margin: 0;
    padding: 16px 16px 12px;
    font-size: 13px;
    color: #d0d5dd;
    line-height: 1.55;
    font-style: italic;
}
.sz-partner-card-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 16px 16px;
    padding: 10px 12px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.20);
    border-radius: 10px;
}
.sz-partner-card-stat b {
    font-size: 17px;
    font-weight: 800;
    color: #10b981;
}
.sz-partner-card-stat span {
    font-size: 11.5px;
    color: #aab1bb;
}

/* Partners stats bar */
.sz-partners-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid #f0e8df;
    border-radius: 18px;
    text-align: center;
}
.sz-stats-item-light {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sz-stats-item-icon-light {
    width: 44px; height: 44px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 50%;
    display: grid; place-items: center;
    margin-bottom: 6px;
}
.sz-stats-item-light b {
    font-size: 22px;
    font-weight: 800;
    color: #14171f;
    line-height: 1;
}
.sz-stats-item-light span {
    font-size: 11.5px;
    color: #5a6370;
}


/* ═════════════════════════════════════════════════════════════════════════
   NUMBERS — világos
   ═════════════════════════════════════════════════════════════════════════ */
.sz-numbers {
    background: #fdfaf6;
    padding: 80px 0;
}
.sz-numbers-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 40px;
}
.sz-numbers-text { padding-top: 16px; }

.sz-numbers-map {
    position: relative;
    aspect-ratio: 8 / 5;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #f0e8df;
    border-radius: 18px;
    padding: 20px;
}
.sz-map-avatar {
    position: absolute;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px rgba(20, 23, 31, 0.15);
    z-index: 2;
}
.sz-map-avatar-1 { top: 20%; left: 20%; }
.sz-map-avatar-2 { top: 50%; left: 50%; }
.sz-map-avatar-3 { top: 18%; right: 22%; }

.sz-map-live {
    position: absolute;
    bottom: 16px; right: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 12px 28px rgba(20, 23, 31, 0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.sz-map-live span {
    display: block;
    font-size: 10.5px;
    color: #5a6370;
    margin-bottom: 2px;
}
.sz-map-live b {
    display: block;
    font-size: 18px;
    color: #14171f;
    font-weight: 800;
    line-height: 1;
}
.sz-map-live b i { font-size: 11px; color: #10b981; margin-left: 6px; }
.sz-map-live-icon {
    width: 36px; height: 36px;
    background: #10b981;
    border-radius: 10px;
    display: grid; place-items: center;
    animation: sz-pulse-bg 1.6s ease-in-out infinite;
}
@keyframes sz-pulse-bg {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
    50%      { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.sz-numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.sz-number-stat {
    padding: 22px 18px;
    background: #ffffff;
    border: 1px solid #f0e8df;
    border-radius: 16px;
    text-align: left;
    transition: all 280ms;
    position: relative;
    overflow: hidden;
}
.sz-number-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.30);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.12);
}
.sz-number-stat-icon {
    width: 40px; height: 40px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 10px;
    display: grid; place-items: center;
    margin-bottom: 12px;
}
.sz-number-stat b {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #14171f;
    line-height: 1;
    margin-bottom: 4px;
}
.sz-number-stat > span {
    display: block;
    font-size: 12px;
    color: #5a6370;
    line-height: 1.4;
    margin-bottom: 12px;
}
.sz-number-stat-trend {
    width: 100%;
    height: 30px;
}
.sz-number-stat-stars {
    display: flex;
    gap: 2px;
}


/* ═════════════════════════════════════════════════════════════════════════
   LOYALTY — sötét, rounded top
   ═════════════════════════════════════════════════════════════════════════ */
.sz-loyalty {
    background: #0c0e13;
    color: #fff;
    padding: 80px 0;
}
.sz-loyalty-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.9fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 56px;
}
.sz-loyalty-phone {
    position: relative;
    width: 280px;
    margin: 0 auto;
}
.sz-loyalty-text { min-width: 0; padding-top: 12px; }

.sz-loyalty-phone-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sz-loyalty-phone-head b {
    font-size: 14px;
    color: #fff;
    font-weight: 800;
}

.sz-loyalty-phone-hero {
    position: relative;
    padding: 18px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.20), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.20);
    border-radius: 14px;
    overflow: hidden;
}
.sz-loyalty-phone-hero-label {
    display: block;
    font-size: 10.5px;
    color: #10b981;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sz-loyalty-phone-hero-sub {
    display: block;
    font-size: 11px;
    color: #aab1bb;
    margin-bottom: 10px;
}
.sz-loyalty-phone-hero b {
    display: block;
    font-size: 28px;
    color: #10b981;
    font-weight: 800;
    line-height: 1;
}
.sz-loyalty-phone-hero-foot {
    display: block;
    font-size: 10.5px;
    color: #aab1bb;
    margin-top: 6px;
}
.sz-loyalty-phone-hero-gift {
    position: absolute;
    bottom: -6px; right: -6px;
    opacity: 0.7;
}

.sz-loyalty-phone-code {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(16, 185, 129, 0.30);
    border-radius: 12px;
}
.sz-loyalty-phone-code span {
    display: block;
    font-size: 10px;
    color: #6a7180;
    margin-bottom: 6px;
}
.sz-loyalty-phone-code > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sz-loyalty-phone-code b {
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.sz-loyalty-phone-code button {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.10);
    color: #10b981;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: grid; place-items: center;
}

.sz-loyalty-phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 200ms;
}
.sz-loyalty-phone-cta:hover { background: #0fa372; }

.sz-loyalty-phone-progress {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}
.sz-loyalty-phone-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 10.5px;
    color: #aab1bb;
}
.sz-loyalty-phone-progress-head i {
    color: #10b981;
    font-weight: 700;
    font-style: normal;
}
.sz-loyalty-phone-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}
.sz-loyalty-phone-progress-bar > div {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #2bd4a4);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.40);
    transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sz-loyalty-phone-progress-foot {
    display: block;
    font-size: 10px;
    color: #6a7180;
    margin-top: 6px;
}

/* Loyalty floating cards */
.sz-loyalty-float {
    position: absolute;
    background: rgba(20, 23, 31, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.20);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 200px;
    z-index: 3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: sz-hero-float 4s ease-in-out infinite;
}
.sz-loyalty-float-1 {
    top: 40px; left: -120px;
    animation-delay: 0s;
}
.sz-loyalty-float-2 {
    bottom: 80px; right: -120px;
    animation-delay: 1s;
}
.sz-loyalty-float-icon {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-loyalty-float b {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2px;
}
.sz-loyalty-float span {
    font-size: 10.5px;
    color: #aab1bb;
    line-height: 1.35;
}

.sz-loyalty-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.sz-loyalty-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 240ms;
}
.sz-loyalty-feature:hover {
    border-color: rgba(16, 185, 129, 0.30);
    background: rgba(16, 185, 129, 0.04);
}
.sz-loyalty-feature-icon {
    width: 38px; height: 38px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-loyalty-feature b {
    display: block;
    font-size: 13.5px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2px;
}
.sz-loyalty-feature span {
    font-size: 11.5px;
    color: #aab1bb;
    line-height: 1.4;
}

/* Loyalty ranking — Top ajánlók */
.sz-loyalty-ranking {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sz-loyalty-ranking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sz-loyalty-ranking-head b {
    font-size: 14px;
    color: #fff;
    font-weight: 800;
}
.sz-loyalty-ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
}
.sz-loyalty-ranking-rank {
    font-size: 13px;
    color: #10b981;
    font-weight: 800;
    width: 18px;
}
.sz-loyalty-ranking-item img {
    width: 30px; height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sz-loyalty-ranking-item > div { flex: 1; min-width: 0; }
.sz-loyalty-ranking-item b {
    display: block;
    font-size: 12.5px;
    color: #fff;
    font-weight: 700;
}
.sz-loyalty-ranking-item span {
    font-size: 10.5px;
    color: #aab1bb;
}
.sz-loyalty-ranking-item i {
    font-size: 12px;
    color: #10b981;
    font-style: normal;
    font-weight: 700;
}
.sz-loyalty-ranking-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 4px;
    color: #10b981;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sz-loyalty-ranking-link:hover { color: #2bd4a4; }

.sz-loyalty-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}


/* ═════════════════════════════════════════════════════════════════════════
   FINAL CTA — sötét
   ═════════════════════════════════════════════════════════════════════════ */
.sz-final {
    background: #0c0e13;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.sz-final .container { position: relative; z-index: 1; }

.sz-final-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}
.sz-final-text { min-width: 0; }
.sz-final-eyebrow {
    background: rgba(16, 185, 129, 0.15);
}
.sz-final-title {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
}

.sz-final-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 28px;
}
.sz-final-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.20);
    border-radius: 999px;
    font-size: 11.5px;
    color: #d0d5dd;
    font-weight: 600;
}

.sz-final-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 22px;
    margin-top: 12px;
}
.sz-final-form-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.sz-final-form-icon {
    width: 44px; height: 44px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 12px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-final-form-head b {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2px;
}
.sz-final-form-head span {
    font-size: 12px;
    color: #aab1bb;
}
.sz-final-form-row {
    display: flex;
    gap: 8px;
}
.sz-final-form-row input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 13.5px;
    outline: none;
}
.sz-final-form-row input::placeholder { color: #6a7180; }
.sz-final-form-row input:focus { border-color: #10b981; background: rgba(16, 185, 129, 0.05); }
.sz-final-form-row button {
    padding: 12px 22px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 200ms;
}
.sz-final-form-row button:hover { background: #0fa372; }
.sz-final-form-foot {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 11px;
    color: #6a7180;
}
.sz-final-form-foot a { color: #10b981; text-decoration: none; }

.sz-final-visual {
    position: relative;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #0a0805;
    background-image: linear-gradient(135deg, #1a2d24 0%, #0c0e13 100%);
}
.sz-final-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}
.sz-final-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(12, 14, 19, 0.7) 100%);
}
.sz-final-dashboard {
    position: absolute;
    bottom: 60px;
    left: 32px;
    width: 280px;
    background: rgba(20, 23, 31, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px;
    z-index: 2;
}
.sz-final-dashboard-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sz-final-dashboard-row:last-child { border-bottom: none; }
.sz-final-dashboard-row span {
    flex: 1;
    font-size: 11.5px;
    color: #aab1bb;
}
.sz-final-dashboard-row b {
    font-size: 13.5px;
    color: #fff;
    font-weight: 800;
}

.sz-final-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: sz-hero-float 4s ease-in-out infinite;
}
.sz-final-float-1 { top: 28px; right: 28px; animation-delay: 0s; }
.sz-final-float-2 { top: 110px; right: 28px; animation-delay: 1s; }
.sz-final-float-icon {
    width: 30px; height: 30px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.sz-final-float span {
    display: block;
    font-size: 10.5px;
    color: #5a6370;
    margin-bottom: 2px;
}
.sz-final-float b {
    display: block;
    font-size: 12.5px;
    color: #14171f;
    font-weight: 800;
    line-height: 1.1;
}
.sz-final-float b i { color: #10b981; font-style: normal; }

/* Final stats bar */
.sz-final-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-align: center;
}
.sz-final-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sz-final-stat-icon {
    width: 44px; height: 44px;
    background: rgba(16, 185, 129, 0.10);
    border-radius: 50%;
    display: grid; place-items: center;
    margin-bottom: 6px;
}
.sz-final-stat b {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.sz-final-stat span {
    font-size: 11.5px;
    color: #aab1bb;
}


/* ═════════════════════════════════════════════════════════════════════════
   MOBIL RESPONSIVE — Szolgáltatóknak oldal
   ═════════════════════════════════════════════════════════════════════════ */

/* Globális overflow lock */
.sz-hero, .sz-benefits, .sz-steps, .sz-admin, .sz-numbers, .sz-loyalty, .sz-final {
    overflow-x: hidden;
}

@media (max-width: 1100px) {
    .sz-hero-grid,
    .sz-benefits-grid,
    .sz-steps-grid,
    .sz-admin-grid,
    .sz-numbers-head,
    .sz-final-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sz-hero-visual,
    .sz-benefits-visual,
    .sz-steps-visual,
    .sz-admin-visual,
    .sz-numbers-map,
    .sz-final-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .sz-loyalty-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .sz-loyalty-phone {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .sz-loyalty-text {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .sz-loyalty-ranking {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
    }

    .sz-partners-head { grid-template-columns: 1fr; gap: 24px; }
    .sz-partners-cards { grid-template-columns: 1fr; }

    .sz-numbers-grid { grid-template-columns: repeat(3, 1fr); }
    .sz-benefits-stats,
    .sz-partners-stats,
    .sz-final-stats,
    .sz-steps-trust,
    .sz-loyalty-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sz-hero { padding: 48px 0 56px; }
    .sz-hero-visual { min-height: 360px; }
    .sz-hero-mini-stats { gap: 16px; }
    .sz-hero-dashboard { width: calc(100% - 64px); left: 32px; bottom: 60px; }
    .sz-hero-float-1 { top: 16px; right: 16px; }
    .sz-hero-float-2 { top: 90px; right: 16px; }
    .sz-hero-toast { left: 16px; right: 16px; bottom: 16px; }

    .sz-benefits-cards { grid-template-columns: 1fr; }
    .sz-benefits-dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .sz-benefits-float-1 { top: -10px; right: -8px; }
    .sz-benefits-float-2 { left: -12px; }
    .sz-benefits-float-3 { bottom: -10px; right: -8px; }

    .sz-admin-dashboard { grid-template-columns: 100px 1fr; min-height: 320px; }
    .sz-admin-dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .sz-admin-features { grid-template-columns: 1fr; }
    .sz-admin-float-1 { top: -10px; left: -10px; }
    .sz-admin-float-2 { right: -10px; bottom: 60px; }
    .sz-admin-float-3 { bottom: -10px; left: 24px; }

    .sz-steps-list::before { left: 22px; }
    .sz-steps-visual { min-height: 520px; }
    .sz-steps-orbit-1, .sz-steps-orbit-2, .sz-steps-orbit-3 {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        margin: 0 0 12px;
        animation: none;
    }
    .sz-steps-orbit-path { display: none; }

    .sz-loyalty-grid { grid-template-columns: 1fr; }
    .sz-loyalty-phone, .sz-loyalty-text, .sz-loyalty-ranking {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .sz-loyalty-float { display: none; }

    .sz-numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .sz-numbers-map { aspect-ratio: 4 / 3; }

    .sz-final-form-row { flex-direction: column; }
    .sz-final-form-row input { width: 100%; }
    .sz-final-form-row button { width: 100%; }
    .sz-final-dashboard { width: calc(100% - 32px); left: 16px; }
    .sz-final-float-1 { top: 12px; right: 12px; }
    .sz-final-float-2 { top: 80px; right: 12px; }

    .sz-benefits-stats,
    .sz-partners-stats,
    .sz-final-stats,
    .sz-steps-trust,
    .sz-loyalty-trust {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .sz-hero-title { font-size: 32px; }
    .sz-hero-cta { flex-direction: column; align-items: stretch; }
    .sz-hero-cta .sz-btn { justify-content: center; }
    .sz-hero-visual { min-height: 320px; aspect-ratio: 4 / 5; }
    .sz-hero-dashboard { width: calc(100% - 32px); left: 16px; padding: 12px; }
    .sz-hero-dashboard-stats { grid-template-columns: 1fr 1fr; }
    .sz-hero-dashboard-stats > :nth-child(3) { display: none; }
    .sz-hero-mini-stats { flex-direction: column; gap: 14px; align-items: flex-start; }

    .sz-numbers-grid { grid-template-columns: 1fr; }
    .sz-admin-dashboard { grid-template-columns: 1fr; min-height: auto; }
    .sz-admin-dashboard-side { flex-direction: row; flex-wrap: wrap; padding: 12px; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .sz-admin-dashboard-logo { margin-bottom: 0; }
    .sz-admin-dashboard-stats { grid-template-columns: 1fr 1fr; }
}
