:root {
    --bg: #0b0d12;
    --card: rgba(255, 255, 255, 0.06);
    --card2: rgba(255, 255, 255, 0.04);
    --stroke: rgba(255, 255, 255, 0.1);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.65);
    --muted2: rgba(255, 255, 255, 0.5);
    --accent: #3b82f6;
    --accent2: #22c55e;
    --warn: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: radial-gradient( 1200px 600px at 10% -10%, rgba(59, 130, 246, 0.35), transparent 60%), radial-gradient( 900px 500px at 90% 10%, rgba(34, 197, 94, 0.22), transparent 60%), radial-gradient( 900px 600px at 40% 120%, rgba(245, 158, 11, 0.18), transparent 65%), var(--bg);
    color: var(--text);
}

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

a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.skip {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    background: #111827;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    z-index: 9999;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(10, 12, 18, 0.72);
    border-bottom: 1px solid var(--stroke);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: linear-gradient( 135deg, rgba(59, 130, 246, 0.95), rgba(34, 197, 94, 0.75));
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.18);
    font-weight: 800;
}

.brand__name {
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand__sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.topnav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topnav a {
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: var(--muted);
}

.topnav a:hover {
    border-color: var(--stroke);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
}

.hero {
    padding: 44px 0 26px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.hero__content h1 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.6px;
}

.lead {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn:hover {
    text-decoration: none;
}

.btn--primary {
    border-color: rgba(59, 130, 246, 0.45);
    background: linear-gradient( 135deg, rgba(59, 130, 246, 0.95), rgba(59, 130, 246, 0.55));
}

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

.hero__search {
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.03);
}

.hero__search input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    color: var(--text);
    outline: none;
}

.hero__search input:focus {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.hint {
    margin-top: 8px;
    color: var(--muted2);
    font-size: 12px;
}

.card {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
    padding: 16px;
}

.visual {
    padding: 16px;
}

.visual__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.iconchip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: var(--muted);
}

.iconchip .icon {
    font-size: 16px;
}


/* Updated .visual__shot block */

.visual__shot {
    position: relative;
    /* App Store screenshot container: taller so images fit */
    height: clamp(420px, 48vh, 620px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}


/* If the HTML uses a wrapper (recommended) */

.visual__shot .shots {
    position: absolute;
    inset: 0;
}


/* Slideshow frames (works for <img class="shot"> or any element with .shot) */

.visual__shot .shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* keep full screenshot visible */
    display: block;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 700ms ease, transform 700ms ease;
    will-change: opacity, transform;
}

.visual__shot .shot.is-active {
    opacity: 1;
    transform: scale(1);
}


/* Updated .visual__shot img block */

.visual__shot img {
    width: 100%;
    height: 100%;
    /* For a single static hero image use contain so it doesn't crop */
    object-fit: contain;
    display: block;
}


/* Updated .visual__shot.is-missing img block */

.visual__shot.is-missing img,
.visual__shot.is-missing .shot {
    display: none;
}

.placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    pointer-events: none;
}


/* Hide placeholder when we have real images */

.visual__shot:not(.is-missing) .placeholder {
    display: none;
}

.placeholder__title {
    font-weight: 700;
    margin-bottom: 6px;
}

.placeholder__text {
    color: var(--muted);
    font-size: 13px;
}

.placeholder code {
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

.note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

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

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
}

.chip:hover {
    text-decoration: none;
    color: var(--text);
    border-color: rgba(59, 130, 246, 0.45);
}

.content {
    padding: 18px 0 56px;
}

.grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: start;
}

.sidenav {
    position: sticky;
    top: 86px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidenav__box {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
}

.sidenav__box--soft {
    background: rgba(255, 255, 255, 0.02);
}

.sidenav__title {
    font-weight: 800;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.sidenav a {
    display: block;
    padding: 10px 10px;
    margin: 2px 0;
    border-radius: 12px;
    color: var(--muted);
    border: 1px solid transparent;
}

.sidenav a:hover {
    text-decoration: none;
    border-color: var(--stroke);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.mini {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.mini li {
    margin: 8px 0;
}

.section {
    padding: 18px 0 6px;
}

.section__head h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.section__head p {
    margin: 0 0 12px;
    color: var(--muted);
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.faq__item summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 14px;
    font-weight: 700;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__body {
    padding: 0 14px 14px;
    color: var(--muted);
    line-height: 1.55;
}

.muted {
    color: var(--muted2);
}

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

.cards .card {
    background: rgba(255, 255, 255, 0.03);
}

.cards h3 {
    margin-top: 0;
}

.cards ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.steps {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55;
}

.steps li {
    margin: 10px 0;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.contact__item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
}

.contact__label {
    font-size: 12px;
    color: var(--muted2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact__value {
    font-weight: 700;
}

.footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.footer__links a {
    color: var(--muted);
}

.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq__item.is-hidden {
    display: none;
}

.faq__empty {
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .sidenav {
        position: relative;
        top: 0;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .contact {
        grid-template-columns: 1fr;
    }
}


/* =========================
   MOBILE NAVIGATION
========================= */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 20px;
    background: var(--text);
    margin: 0 auto;
    transition: 0.3s ease;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 100;
}

.mobile-menu__inner {
    width: min(280px, 80%);
    height: 100%;
    background: rgba(15, 18, 26, 0.95);
    border-left: 1px solid var(--stroke);
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__inner {
    transform: translateX(0);
}


/* Hide desktop nav on mobile */

@media (max-width: 980px) {
    .topnav--desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}


/* =============================
   Privacy Policy readability
   ============================= */


/* Szélesebb, kényelmesebb 2 oszlopos layout desktopon */


/* adjunk több helyet a fő szövegnek */

.grid.grid--2 {
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
    gap: 28px;
}


/* Ne legyen keskeny csík a szöveg */


/* szélesebb olvasófelület desktopon */

.card.card--content {
    max-width: 1120px;
    width: 100%;
}


/* Lista (pontok) olvashatóság */

.card.card--content ul,
.card.card--content ol {
    padding-left: 1.25rem;
    margin: 0.75rem 0 1.25rem;
}

.card.card--content li {
    margin: 0.35rem 0;
    line-height: 1.55;
}


/* Bekezdés ritmus */

.card.card--content p {
    line-height: 1.65;
}


/* Mobil/tablet: oszlopok egymás alá */

@media (max-width: 960px) {
    .grid.grid--2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .card.card--content {
        max-width: 100%;
    }
}