:root {
    --bg: #f0f0f0;
    --surface: #ffffff;
    --text: #1d1d1f;
    --text-soft: #1d1d1f;
    --accent: #0135ac;
    --accent-end: #7409d7;
    --border: #d2d2d7;
    --nav-bg: rgba(11, 11, 11, 0.82);
    --radius: 18px;
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto', Arial, sans-serif;
    --nav-height: 48px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-weight: 400;
    margin: 0; padding: 0;
    width: 100%; max-width: 100%;
    overflow-x: hidden;
    position: relative;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

img { pointer-events: none; -webkit-user-drag: none; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.01em; margin: 0; }

.section-title { font-family: var(--font-heading); }
.cta-button { font-family: var(--font-heading); }
.btn-ghost { font-family: var(--font-heading); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

.section-title {
    color: var(--text);
    font-size: 2.4rem;
    font-weight: 500;
    margin: 0 0 18px;
    display: block;
    width: 100%;
    letter-spacing: -0.02em;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0;
    width: 100%; height: var(--nav-height);
    background-color: var(--nav-bg);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: box-shadow 0.35s ease;
}
.navbar.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.18); }
.nav-container {
    max-width: 1100px; height: 100%;
    margin: 0 auto; padding: 0 25px;
    display: flex; align-items: center; justify-content: flex-start;
    position: relative;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
    color: #d8d8db;
    text-decoration: none;
    font-weight: 400; font-size: 0.74rem;
    text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #ffffff; }
.nav-logo { display: flex; align-items: center; margin-right: 50px; flex-shrink: 0; }
.nav-logo img { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); }
@media (max-width: 900px) {
    .nav-logo { position: absolute; left: 25px; top: 50%; transform: translateY(-50%); margin-right: 0; }
    .navbar .nav-toggle { display: block; position: absolute; right: 25px; top: 50%; transform: translateY(-50%); }
    .nav-links {
        position: fixed; top: var(--nav-height); left: 0;
        width: 100%; flex-direction: column; gap: 0;
        background: rgba(11,11,11,0.96);
        -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
        max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    }
    .nav-links.open { max-height: 400px; }
    .nav-links a { width: 100%; padding: 15px 25px; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; padding: 0; }
.nav-toggle span { display: block; position: absolute; left: 0; width: 100%; height: 1.5px; background: #d8d8db; transition: all 0.3s ease; }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ── BUTTONS ── */
.cta-button {
    display: inline-block;
    background: linear-gradient(30deg, var(--accent), var(--accent-end));
    color: #ffffff !important;
    padding: 14px 34px;
    text-decoration: none !important;
    border-radius: 980px;
    font-family: var(--font);
    font-size: 0.95rem; font-weight: 400;
    border: none; cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.35s ease;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(116, 9, 215, 0.35);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--accent) !important;
    padding: 13px 32px;
    text-decoration: none !important;
    border: 1.5px solid var(--accent);
    border-radius: 980px;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: transform 0.25s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover {
    transform: scale(1.05);
    background: linear-gradient(30deg, var(--accent), var(--accent-end));
    border-color: transparent;
    color: #fff !important;
}

/* ── SECTIONS ── */
section { padding: 0; transition: var(--transition); }
.js section { opacity: 0; transform: translateY(20px); }
.js section.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: stretch; justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: var(--bg);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(60% 70% at 20% 24%, rgba(1, 53, 172, 0.08), transparent 60%),
        radial-gradient(65% 75% at 82% 78%, rgba(1, 53, 172, 0.08), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; display: flex; align-items: stretch; gap: 50px; max-width: 1100px; width: 100%; margin: 0 auto; padding: 0 25px; box-sizing: border-box; }
.hero-photo { flex: 0 0 54%; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo img { max-width: 100%; max-height: 94vh; width: auto; height: auto; object-fit: contain; display: block; }
.hero-content { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.hero-content .cta-button { align-self: flex-start; }
.hero-title { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--text); margin: 0 0 16px; }
.hero-lead { font-size: 1.15rem; font-weight: 300; line-height: 1.6; color: var(--text-soft); margin: 0 0 28px; max-width: 540px; }

/* ── FEATURES (SZOLGÁLTATÁSAIM) ── */
#features { padding: 70px 0 0; }
.features-header { margin-bottom: 32px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    width: 100%;
    max-width: 100%;
}

.feature-tile {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    aspect-ratio: 16 / 9;
    background-color: #1a1a1a;
    border-radius: 10px;
    cursor: pointer;
}

.ft-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: filter 0.35s ease, transform 0.45s ease;
}

.feature-tile:hover .ft-img {
    filter: blur(4px) brightness(0.55);
    transform: scale(1.03);
}

.ft-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-tile:hover .ft-overlay { opacity: 1; }

.ft-overlay h3 {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

.ft-overlay .ft-sub {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    max-width: 340px;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ── MUNKÁIM SLIDESHOW ── */
#works { padding: 50px 0 60px; }
#works .container { margin-bottom: 28px; }

/* Parallax két-soros wrapper */
.pt-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    width: 100%;
}

.pt-track {
    display: flex;
    gap: 6px;
    will-change: transform;
    /* Nincs CSS transition – JS kezeli az easing-et rAF-fal */
}

.pt-track-large .portfolio-item-large,
.pt-track-small .portfolio-item-small {
    flex: 0 0 auto;
}

.portfolio-showcase {
    width: 100%;
    position: relative;
}

/* A két sor együtt egy scrollozható wrapper-ben */
.portfolio-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: 0;
}
.portfolio-scroller::-webkit-scrollbar { display: none; }

/* Egy "oldal" = a képernyő teljes szélessége, mindkét sorral */
.portfolio-slide {
    flex: 0 0 100vw;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 6px;
    box-sizing: border-box;
}

.portfolio-slide:first-child { padding-left: 0; }
.portfolio-slide:last-child { padding-right: 0; }

/* Felső sor: 2 nagy kép egymás mellett */
.slide-row-large {
    display: flex;
    gap: 6px;
    width: 100%;
}

/* Alsó sor: 3-4 kisebb kép egymás mellett */
.slide-row-small {
    display: flex;
    gap: 6px;
    width: 100%;
}

.portfolio-item-large {
    flex: 0 0 calc(50vw - 3px);
    width: calc(50vw - 3px);
    aspect-ratio: 1250 / 668;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a1a1a;
    position: relative;
}

.portfolio-item-small {
    flex: 0 0 calc(33.333vw - 4px);
    width: calc(33.333vw - 4px);
    aspect-ratio: 470 / 264;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a1a1a;
    position: relative;
}

.portfolio-item-large img,
.portfolio-item-small img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.portfolio-item-large:hover img,
.portfolio-item-small:hover img { transform: scale(1.04); }

/* Dot navigátor */
.portfolio-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.portfolio-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.portfolio-dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 4px;
    transform: none;
}

.portfolio-dot:hover:not(.active) { background: rgba(1,53,172,0.4); }

/* ── MUNKÁIM: mobil egy-képes négyzetes carousel ── */
.pt-mobile { display: none; }

@media (max-width: 760px) {
    .portfolio-showcase .pt-wrapper { display: none; }
    .portfolio-showcase .portfolio-dots { display: none; }
    .pt-mobile {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 7.5vw;
        box-sizing: border-box;
    }
    .pt-mobile::-webkit-scrollbar { display: none; }
    .pt-m-slide {
        flex: 0 0 85vw;
        aspect-ratio: 1 / 1;
        scroll-snap-align: center;
        border-radius: 12px;
        overflow: hidden;
        background-color: #1a1a1a;
    }
    .pt-m-slide img {
        width: 100%; height: 100%;
        object-fit: cover; display: block;
    }
}

/*CLIENTS*/
#clients { padding: 70px 0 40px; }
#clients .container { margin-bottom: 20px; }

.marquee {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
	padding-top: 70px;
}
.marquee-track {
    display: inline-flex; align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo-wrap { display: inline-flex; align-items: center; margin-right: 60px; }
.client-logo {
    height: 75px; width: auto; max-width: 270px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.7;
    transition: filter 0.4s ease, opacity 0.4s ease;
}
.client-logo-wrap:hover .client-logo { filter: grayscale(0%); opacity: 1; }

/*ABOUT*/
#about { padding: 70px 0; }
.about-content { max-width: 760px; margin: 0 auto; }
.about-content p { font-size: 1.2rem; color: var(--text-soft); font-weight: 300; line-height: 1.7; margin: 0; }

/*CONTACT*/
#contact { padding: 70px 0 90px; }
#contact p { color: var(--text-soft); font-weight: 300; font-size: 1.1rem; margin-bottom: 32px; }
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/*FOOTER*/
footer { padding: 40px 25px 50px; border-top: 1px solid var(--border); }
.footer-social { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 18px; }
.footer-social a, .footer-social a:visited {
    color: var(--text); text-decoration: none;
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--accent); }
.footer-legal { margin: 0; color: var(--text-soft); font-size: 0.78rem; font-weight: 300; }
.footer-links a, .footer-links a:visited {
    color: var(--text-soft); text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-links .sep { margin: 0 6px; }

/*BACK TO TOP*/
#backToTop {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(30deg, var(--accent), var(--accent-end));
    border: none; border-radius: 50%;
    width: 46px; height: 46px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, transform 0.3s ease;
    box-shadow: 0 6px 18px rgba(1,53,172,0.3);
    opacity: 0; pointer-events: none; transform: translateY(20px);
}
#backToTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#backToTop:hover { transform: scale(1.1); }

/*MOBILE*/
@media (max-width: 768px) {
    html, body { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .section-title { font-size: 1.8rem; }
    .hero { min-height: auto; padding-bottom: 40px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 16px; align-items: center; }
    .hero-photo { flex: none; }
    .hero-photo img { max-height: 38vh; }
    .hero-content { flex: 0 0 auto; justify-content: flex-start; text-align: center; }
    .hero-content .cta-button { align-self: center; }
    .hero-title { font-size: 1.9rem; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .feature-grid { grid-template-columns: 1fr; gap: 0; }
    .feature-tile { aspect-ratio: 16/9; border-radius: 0; }
    #features .feature-tile:first-child { border-radius: 10px 10px 0 0; }
    #features .feature-tile:last-child { border-radius: 0 0 10px 10px; }
    .ft-overlay { opacity: 1; background: rgba(0,0,0,0.45); }
    .ft-img { filter: brightness(0.7); }
    /* Portfólió csempék mobilon: alapból éles kép, koppintásra jön a felirat */
    #bento .ft-overlay { opacity: 0; }
    #bento .ft-img { filter: none; }
    #bento .feature-tile.revealed .ft-overlay { opacity: 1; }
    #bento .feature-tile.revealed .ft-img { filter: blur(4px) brightness(0.55); }
    .portfolio-row { flex-direction: column; }
    .row-large .portfolio-item, .row-small .portfolio-item { height: 240px; flex: none; width: 100%; }
    .client-logo { height: 57px; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    section { transition: none; }
    .js section { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ── ALOLDALAK (szolgáltatások, portfólió) ── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

.subpage { padding-top: 110px; padding-bottom: 70px; }

/* ── Jogi szöveg (adatkezelési tájékoztató) ── */
.legal-page { max-width: 820px; margin: 0 auto; padding-left: 25px; padding-right: 25px; }
.legal-page .section-title { text-align: center; }
.legal-meta { color: var(--text-soft); opacity: 0.6; font-size: 0.9rem; margin: -6px 0 30px; }
.legal-page h2 { font-size: 1.35rem; margin: 36px 0 12px; }
.legal-page h3 { font-size: 1.08rem; font-weight: 500; letter-spacing: 0; margin: 22px 0 8px; }
.legal-page p { font-size: 1rem; line-height: 1.7; color: var(--text-soft); margin: 0 0 14px; }
.legal-page ul { list-style: none; margin: 0 0 16px; padding-left: 0; }
.email-protected a { color: var(--accent); text-decoration: none; }
.email-protected a:hover { text-decoration: underline; }
.legal-page li { font-size: 1rem; line-height: 1.7; color: var(--text-soft); margin-bottom: 6px; }
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page strong { font-weight: 500; }

/* ── GY.I.K. (accordion) ── */
.faq-page { max-width: 1040px; margin: 0 auto; padding-left: 25px; padding-right: 25px; text-align: left; }
.faq-page .yt-kicker { text-align: center; }
.faq-page .section-title { text-align: center; }
.faq-intro { text-align: center; color: var(--text-soft); opacity: 0.7; font-size: 1rem; margin: -4px 0 34px; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; align-items: start; }
.faq-col { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--font-heading); font-weight: 500; font-size: 1.08rem; color: var(--text); text-align: left; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-icon { position: relative; width: 13px; height: 13px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--accent); transition: transform 0.3s ease; }
.faq-icon::before { top: 5.5px; left: 0; width: 13px; height: 2px; }
.faq-icon::after { left: 5.5px; top: 0; width: 2px; height: 13px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-a p { overflow: hidden; min-height: 0; margin: 0; padding: 0 0 22px; font-size: 1rem; line-height: 1.7; color: var(--text-soft); }

@media (max-width: 768px) {
    .faq-list { grid-template-columns: 1fr; gap: 0; }
    .faq-col + .faq-col { border-top: none; }
}

.js .reveal { opacity:0; transform:translateX(-60px); transition:opacity .6s ease, transform .6s ease; }
.js .reveal.from-right { transform:translateX(60px); }
.js .reveal.visible { opacity:1; transform:none; }
.js .reveal.from-right.visible { transform:none; }
.js .reveal-up { opacity:0; transform:translateY(40px); transition:opacity .6s ease, transform .6s ease; }
.js .reveal-up.visible { opacity:1; transform:none; }

.service-block { display:flex; align-items:center; gap:50px; max-width:1000px; margin:0 auto 80px; text-align:left; scroll-margin-top:70px; }
.service-block.reverse { flex-direction:row-reverse; }
.service-img { flex:0 0 42%; aspect-ratio:4/3; border-radius:var(--radius); background-color:#e3e3e6; background-size:cover; background-position:center; }
.service-text { flex:1; }
.service-text h3 { color:var(--text); font-size:1.6rem; font-weight:500; margin:0 0 14px; }
.service-text p { color:var(--text-soft); line-height:1.7; margin:0 0 16px; font-size:1rem; font-weight:300; }
.service-text ul { margin:0; padding-left:20px; list-style:disc; }
.service-text li { color:var(--text-soft); line-height:1.9; font-size:.95rem; font-weight:300; }

@media (max-width:768px) {
    .subpage { padding-top:90px; }
    .service-block, .service-block.reverse { flex-direction:column; gap:22px; margin-bottom:50px; }
    .service-img { flex:none; width:100%; }
    .js .reveal, .js .reveal.from-right { transform:translateY(30px); }
}
@media (prefers-reduced-motion: reduce) {
    .js .reveal, .js .reveal-up { opacity:1; transform:none; }
}

/* ── KAPCSOLAT OLDAL ── */
.contact-page { max-width: 720px; }

/* ── Sticky footer rövid oldalakhoz ── */
.sticky-page { display: flex; flex-direction: column; min-height: 100vh; }
.sticky-page > main { flex: 1 0 auto; }
.sticky-page > footer { flex-shrink: 0; }
.sticky-page .contact-page, .sticky-page .legal-page { display: flex; flex-direction: column; justify-content: center; }
.contact-lead { font-size: 1.5rem; font-weight: 300; color: var(--text); margin: 0 0 10px; }
.contact-focus { font-size: 1rem; font-weight: 300; color: var(--text-soft); margin: 0 0 38px; }
.contact-meta { display: flex; flex-direction: column; align-items: center; gap: 22px; margin: 48px 0 36px; }
.contact-meta-item { display: flex; flex-direction: column; gap: 5px; }
.cm-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); }
.cm-value { font-size: 0.98rem; font-weight: 300; color: var(--text-soft); }
@media (max-width: 768px) {
    .contact-lead { font-size: 1.2rem; }
    .contact-meta { gap: 18px; margin: 36px 0 30px; }
}

/* ── RÓLAM OLDAL ── */
.rolam-main { padding-top: var(--nav-height); }
.page-rolam { display: flex; flex-direction: column; min-height: 100vh; }
.page-rolam .rolam-main { flex: 1 0 auto; display: flex; flex-direction: column; }
.page-rolam .about-hero { flex: 1 1 auto; }
.page-rolam footer { flex-shrink: 0; }
.about-hero { display: flex; align-items: stretch; padding: 20px 0 0; box-sizing: border-box; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: stretch; max-width: 1300px; width: 100%; margin: 0 auto; padding: 0 30px; box-sizing: border-box; }
.about-photo { display: flex; align-items: flex-end; justify-content: center; }
.about-photo img { max-height: 78vh; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.about-text { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.about-text .hello { font-size: 3.4rem; font-weight: 700; line-height: 1.06; margin: 0 0 24px; color: var(--text); letter-spacing: -0.02em; }
.about-text p { font-size: 1.05rem; font-weight: 300; line-height: 1.7; color: var(--text-soft); margin: 0 0 14px; }

@media (max-width: 768px) {
    .about-hero { min-height: 0; padding: 24px 0 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-photo img { max-height: 44vh; }
    .about-text { text-align: center; }
    .about-text .hello { font-size: 2.5rem; }
}

/* ── YOUTUBE OLDAL ── */
.yt-hero { padding: 130px 0 50px; }
.yt-kicker { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 14px; }
.yt-hero h1 { font-size: 2.6rem; font-weight: 700; margin: 0 0 16px; color: var(--text); letter-spacing: -0.02em; }
.yt-hero p { max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; font-weight: 300; color: var(--text-soft); line-height: 1.7; }

.btn-youtube { display: inline-flex; align-items: center; gap: 10px; background: #ff0000; color: #fff !important; padding: 14px 30px; border-radius: 980px; font-family: var(--font); font-size: 0.95rem; font-weight: 500; text-decoration: none !important; border: none; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.35s ease, background 0.3s ease; }
.btn-youtube:hover { transform: scale(1.05); background: #e60000; box-shadow: 0 10px 28px rgba(255, 0, 0, 0.3); }
.btn-youtube svg { width: 22px; height: 22px; fill: #fff; }

.yt-section { padding: 55px 0; }
.video-container { position: relative; width: 100%; padding-top: 56.25%; border-radius: 14px; overflow: hidden; background: #000; }
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-featured { max-width: 900px; margin: 0 auto; }
#video-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.video-card { width: 100%; }

.yt-pillars-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 720px; margin: 0 auto; }
.yt-pill { padding: 10px 20px; border: 1px solid var(--border); border-radius: 980px; font-size: 0.9rem; color: var(--text); background: var(--surface); }

.yt-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.yt-channel-card { background: var(--surface); border-radius: 16px; padding: 38px 30px; display: flex; flex-direction: column; align-items: center; gap: 14px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); }
.yt-channel-card h3 { font-size: 1.4rem; font-weight: 500; margin: 0; color: var(--text); }
.yt-channel-card p { font-size: 0.95rem; font-weight: 300; color: var(--text-soft); line-height: 1.6; margin: 0; }

.yt-cta { padding: 60px 0 80px; }
.yt-cta p { max-width: 560px; margin: 0 auto 28px; font-size: 1.1rem; font-weight: 300; color: var(--text-soft); }

/* ── VIDEO THUMBNAIL LINK ── */
.video-thumb-link { display: block; text-decoration: none; }
.video-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.4s ease; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease; }
.video-play-btn svg { width: 68px; height: 48px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: transform 0.3s ease; }
.video-thumb-link:hover .video-thumb-img { transform: scale(1.03); filter: brightness(0.85); }
.video-thumb-link:hover .video-play-btn svg { transform: scale(1.12); }

/* Nézettség overlay */
.video-views {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 4px 9px 4px 7px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.video-views svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    flex-shrink: 0;
}

/* Videó cím a kép alatt */
.video-title {
    margin: 8px 2px 0;
    font-size: 0.88rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #777;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.46em;
}

@media (max-width: 900px) { #video-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { #video-list { grid-template-columns: 1fr; } .yt-channels { grid-template-columns: 1fr; } .yt-hero h1 { font-size: 2rem; } }

/* ── PORTFÓLIÓ KATEGÓRIA-LINKEK ── */
.portfolio-cats { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; margin: 0 auto 40px; }
.portfolio-cats a { color: var(--text-soft); text-decoration: none; font-size: 0.98rem; font-weight: 400; transition: color 0.3s ease; cursor: pointer; }
.portfolio-cats a:hover { color: var(--accent); }
.portfolio-cats a:not(:last-child)::after { content: '/'; margin-left: 14px; color: var(--border); }
#bento .feature-tile { cursor: default; scroll-margin-top: 70px; }

/* ── SÜTI BANNER ── */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 150%);
    width: calc(100% - 40px);
    max-width: 460px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
    padding: 22px 24px;
    z-index: 1200;
    text-align: left;
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease;
}
.cookie-banner.show { transform: translate(-50%, 0); opacity: 1; }
.cookie-text { margin: 0 0 16px; font-size: 0.92rem; font-weight: 300; color: var(--text-soft); line-height: 1.55; }
.cookie-text a { color: var(--accent); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button { cursor: pointer; }
.cookie-banner .cta-button, .cookie-banner .btn-ghost { padding: 10px 22px; font-size: 0.88rem; }
@media (max-width: 480px) {
    .cookie-banner { bottom: 12px; padding: 18px; }
    .cookie-actions { width: 100%; }
    .cookie-banner .cta-button, .cookie-banner .btn-ghost { flex: 1; text-align: center; }
}

/* ── YOUTUBE: nézettség számláló (piros szám, nincs piros sáv) ── */
#stats-bar { padding: 60px 0; }
#stats-bar .section-sub { margin-bottom: 44px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-size: 3rem; font-weight: 700; color: #ff0000; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.9rem; color: var(--text-soft); margin-top: 10px; font-weight: 300; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } .stat-number { font-size: 2.4rem; } }

/* ── YOUTUBE: együttműködés CTA ── */
.yt-partner p { max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; font-weight: 300; color: var(--text-soft); line-height: 1.7; }



/* ── SZOLGÁLTATÁS ALOLDALAK ── */

/* Hero */
.ap-hero {
    padding: 140px 25px 70px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.ap-hero .yt-kicker { margin-bottom: 20px; }
.ap-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0 0 24px;
}
.ap-hero .ap-lead, .svc-intro .ap-lead {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 580px;
    margin: 0 auto;
    opacity: 0.75;
}

/* Vizuális blokk-fal */
.ap-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
    padding: 0 8px 8px;
}

/* Generikus blokk alap */
.ap-block {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    scroll-margin-top: 90px;
}
.ap-block--wide  { grid-column: 1 / -1; min-height: 480px; }
.ap-block--tall  { min-height: 520px; }

/* Színváltozatok */
.ap-block--dark {
    background: #1a1a1a;
    color: #fff;
}
.ap-block--light {
    background: #fff;
    color: var(--text);
}
.ap-block--mid {
    background: #e8e8ed;
    color: var(--text);
}
.ap-block--accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    color: #fff;
}

/* Szöveg a blokkban */
.ap-block-text {
    padding: 36px 38px 28px;
    position: relative;
    z-index: 2;
}
.ap-block-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.55;
}
.ap-block--dark  .ap-block-label { color: #fff; }
.ap-block--light .ap-block-label { color: var(--text); }
.ap-block--mid   .ap-block-label { color: var(--text); }
.ap-block--accent .ap-block-label { color: #fff; }

.ap-block-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
}
.ap-block--wide .ap-block-text h2 { font-size: 2.6rem; }
.ap-block--dark  .ap-block-text h2 { color: #fff; }
.ap-block--light .ap-block-text h2 { color: var(--text); }
.ap-block--mid   .ap-block-text h2 { color: var(--text); }
.ap-block--accent .ap-block-text h2 { color: #fff; }

.ap-block-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
    max-width: 400px;
    opacity: 0.8;
    text-align: left;
}
.ap-block--dark  .ap-block-text p { color: #fff; }
.ap-block--accent .ap-block-text p { color: rgba(255,255,255,0.85); }

/* Képterület a blokkban */
.ap-block-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.3;
    padding: 20px;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ap-block-img[style*="background-image"] {
    opacity: 1;
    padding: 0;
    font-size: 0;
}
.ap-block--dark .ap-block-img { color: #fff; }
.ap-block--light .ap-block-img { color: var(--text); }
.ap-block--mid .ap-block-img { color: var(--text); }
.ap-block--accent .ap-block-img { color: #fff; }

/* Nagy statement sor */
.ap-statement {
    padding: 90px 25px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.ap-statement h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 0;
}

/* Chipek / lista szekció */
.ap-list-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 25px 90px;
}
.ap-list-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}
.ap-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ap-chips span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 980px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-soft);
    background: #fff;
    line-height: 1.4;
}

/* CTA záró */
.ap-cta {
    text-align: center;
    padding: 90px 25px 110px;
    max-width: 620px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.ap-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 16px;
}
.ap-cta p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0 0 32px;
    opacity: 0.75;
}
.ap-cta .contact-actions { justify-content: center; }

/* Színes / sötét statement banner (aloldalakon, pl. Brand & Visual Design) */
.ap-banner {
    margin: 0 8px 90px;
    padding: 80px 30px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
}
.ap-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 18px;
}
.ap-banner p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto;
}

/* Hogyan dolgozom / folyamat blokk */
.ap-process {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px 90px;
}
.ap-process h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 30px;
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-align: center;
}
.ap-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.ap-process-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.ap-process-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 18px;
}
.ap-process-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0 0 10px;
}
.ap-process-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-soft);
    opacity: 0.75;
    margin: 0;
}

/* Mobil */
@media (max-width: 768px) {
    .ap-hero { padding: 100px 20px 50px; }
    .ap-hero h1 { font-size: 2.1rem; }
    .ap-wall { grid-template-columns: 1fr; padding: 0 12px 12px; gap: 6px; }
    .ap-block { min-height: 300px; }
    .ap-block--wide { grid-column: auto; min-height: 340px; }
    .ap-block--tall { min-height: 340px; }
    .ap-block-text { padding: 26px 24px 18px; }
    .ap-block-text h2 { font-size: 1.5rem; }
    .ap-block--wide .ap-block-text h2 { font-size: 1.65rem; }
    .ap-block-text p { text-align: center; max-width: none; }
    .ap-statement { padding: 60px 20px; }
    .ap-statement h2 { font-size: 1.75rem; }
    .ap-list-section { padding: 0 20px 60px; }
    .ap-chips { flex-direction: column; align-items: center; }
    .ap-cta { padding: 60px 20px 80px; }
    .ap-cta h2 { font-size: 1.5rem; }
    .ap-banner { margin: 0 12px 60px; padding: 50px 22px; border-radius: 20px; }
    .ap-banner h2 { font-size: 1.6rem; }
    .ap-process { padding: 0 20px 60px; }
    .ap-process-grid { grid-template-columns: 1fr; }
}

/* ── SZOLGÁLTATÁSOK HUB OLDAL ── */
.svc-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.svc-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

/* Rács: két magas kártya egymás mellett */
.svc-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 0 40px;
}

/* Maga a kártya: magas, portré arányú, a kép tölti ki, az egész kattintható */
.svc-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    background: #1a1a1a;
    scroll-margin-top: 90px;
    isolation: isolate;
}

/* A kép mögé, teljes kitöltés (1px túllógatás a lekerekített szél hajszálkerete ellen) */
.svc-card-img {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-card:hover .svc-card-img { transform: scale(1.045); }

/* Sötét fátyol: fent a szöveg mögé, lent enyhén a gomb mögé */
.svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.60) 0%,
        rgba(0, 0, 0, 0.18) 34%,
        rgba(0, 0, 0, 0) 58%,
        rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
}

/* Szöveg felül, a kép fölött */
.svc-card-body {
    position: relative;
    z-index: 2;
    padding: 30px 30px 0;
    text-align: left;
}
.svc-card-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}
.svc-card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    max-width: 16ch;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

/* "Részletek" pilula a jobb alsó sarokban (lilás átmenet) */
.svc-card-cta {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 980px;
    background: linear-gradient(30deg, var(--accent), var(--accent-end));
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.35s ease;
}
.svc-card-cta::after {
    content: '→';
    font-size: 0.95rem;
    transform: translateX(0);
    transition: transform 0.25s ease;
}
.svc-card:hover .svc-card-cta {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(116, 9, 215, 0.45);
}
.svc-card:hover .svc-card-cta::after { transform: translateX(3px); }

/* Mobil: egy oszlop, a kártyák maradnak magasak */
@media (max-width: 768px) {
    .svc-wall { grid-template-columns: 1fr; gap: 14px; padding: 0 0 24px; }
    .svc-card { aspect-ratio: 4 / 5; }
    .svc-card-title { font-size: 1.7rem; }
    .svc-subtitle { font-size: 1.1rem; }
}

/* ── SZOLGÁLTATÁS ALOLDAL – blokkok belső elrendezése (körbevágott képek) ── */
/* Csak a .ap-detail main-en él, a többi aloldal érintetlen, amíg rá nem másolod */

.ap-detail .ap-block-text { text-align: left; }
.ap-detail .ap-block-text p { text-align: left; }

/* Képdoboz: teljes láthatóság, a kép alja a blokk aljához kötve */
.ap-detail .ap-block-img {
    opacity: 1;
    padding: 0;
    min-height: 0;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.ap-detail .ap-block-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

/* Széles blokk: szöveg balra, kép jobbra */
.ap-detail .ap-block--wide {
    flex-direction: row;
    align-items: stretch;
}
.ap-detail .ap-block--wide .ap-block-text {
    flex: 0 0 46%;
    align-self: center;
    padding: 44px 24px 44px 44px;
}
.ap-detail .ap-block--wide .ap-block-img {
    flex: 1;
    padding: 0 30px;
}

/* Magas fél-blokk: szöveg fent, kép lent */
.ap-detail .ap-block--tall .ap-block-img {
    padding: 0 24px;
}

/* Accent, szöveg-only blokk: alacsonyabb, középre zárt */
.ap-detail .ap-block--text-only {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}
.ap-detail .ap-block--text-only .ap-block-text {
    text-align: center;
    max-width: 720px;
    padding: 40px 30px;
}
.ap-detail .ap-block--text-only .ap-block-text p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Mobil: minden blokk egymás alá, szöveg fent / kép lent */
@media (max-width: 768px) {
    .ap-detail .ap-block--wide { flex-direction: column; align-items: stretch; }
    .ap-detail .ap-block--wide .ap-block-text { flex: none; align-self: stretch; padding: 26px 24px 18px; }
    .ap-detail .ap-block--wide .ap-block-img,
    .ap-detail .ap-block--tall .ap-block-img { padding: 0 20px; }
    .ap-detail .ap-block--text-only { min-height: 240px; }
}

/* ── Thumbnail-blokk: teli kép jobbra, bal széle a sötétbe olvad ── */
.ap-detail #szolg-thumbnail { background: #000; }
.ap-detail #szolg-thumbnail .ap-block-img { padding: 0; }
.ap-detail #szolg-thumbnail .ap-block-img img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    /* Mobilon is egymás mellett: keskeny szöveg balra, teli kép jobbra a tetejéig */
    .ap-detail #szolg-thumbnail { flex-direction: row; align-items: stretch; }
    .ap-detail #szolg-thumbnail .ap-block-text {
        flex: 0 0 46%;
        align-self: center;
        padding: 16px 10px 16px 20px;
        text-align: left;
    }
    .ap-detail #szolg-thumbnail .ap-block-text h2 { font-size: 1.3rem; }
    .ap-detail #szolg-thumbnail .ap-block-text p { font-size: 0.8rem; line-height: 1.5; text-align: left; }
    .ap-detail #szolg-thumbnail .ap-block-img { flex: 1; padding: 0; }
    .ap-detail #szolg-thumbnail .ap-block-img img {
        object-position: 70% center;
    }
}

/* ── HAMAROSAN / COMING SOON LANDING ── */
body.coming-soon { min-height: 100vh; }
.cs-main .ap-hero { padding-top: 64px; }   /* nincs navbar, kevesebb felső hely */

/* Sáv: fekete alap + teli kép jobbra (a thumbnail-blokk mintájára, a szövegstílus a .ap-block* -ból jön, nem változik) */
.ap-detail #cs-band { background: #000; }
.ap-detail #cs-band .ap-block-text {
    flex: 0 0 56%;
    align-self: center;
    padding: 50px 30px 50px calc((100vw - 900px) / 2 + 17px);
}
.ap-detail #cs-band .ap-block-img { padding: 0; }
.ap-detail #cs-band .ap-block-img img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

/* Szolgáltatáslista a sávban */
.cs-services { list-style: none; margin: 6px 0 4px; padding: 0; max-width: 440px; }
.cs-services li {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.cs-services li:first-child { padding-top: 4px; }

/* Gombok a szövegoszlopban, a cím alatt */
#cs-band .cs-band-actions {
    justify-content: flex-start;
    margin: 22px 0 28px;
}
#cs-band .btn-ghost { color: #fff !important; border-color: rgba(255, 255, 255, 0.55); }
#cs-band .btn-ghost:hover { border-color: transparent; }

/* Fade-be úszás betöltéskor */
@keyframes csFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
.coming-soon .ap-hero { animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.05s; }
.coming-soon #cs-band { animation: csFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
    .coming-soon .ap-hero, .coming-soon #cs-band { animation: none; }
}

/* Mobil: kép fent, szöveg + gombok lent teljes szélességben */
@media (max-width: 768px) {
    .cs-main .ap-hero { padding-top: 40px; }
    .ap-detail #cs-band { flex-direction: column; }
    .ap-detail #cs-band .ap-block-text { flex: none; align-self: stretch; padding: 30px 24px 24px; }
    .ap-detail #cs-band .ap-block-img { order: -1; height: 40vh; flex: none; padding: 0; }
}
