/* Csak ez a három maradjon! */
html.sr-accessibility-fontscale-1 {
    font-size: 100% !important;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.hero h1 {
    /* Tiltunk minden automatikus tördelést és kötőjelezést */
    hyphens: none !important;
    -webkit-hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;

    /* Mobilon dinamikusan skálázódó, de kontrollált méret */
    font-size: clamp(2rem, 8vw, 5.5rem);
    line-height: 1.1;
    width: 100%;
    margin: 0 auto 24px;
}

@media (max-width: 480px) {
    .hero h1 {
        /* Ha itt is törik, akkor ez a biztos méret, ami nem randa */
        font-size: 2.1rem !important;
        letter-spacing: -1px;
    }
}

@media (max-width: 968px) {
    .business-card {
        /* Középre húzzuk az egész kártyát */
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .info-group {
        /* Megtartjuk a belső elrendezést, de középre rendezzük a csoportot */
        display: inline-flex;
        text-align: left; /* A szöveg belül maradjon balra zárt, úgy szebb */
        width: fit-content; /* Ne nyúljon el telibe */
        justify-content: flex-start;
        margin-bottom: 1.2rem;
    }

    .info-group .icon {
        /* Ikon és a szöveg közötti távolság mobilon is fix maradjon */
        flex-shrink: 0;
    }
}

/* 400 - Folyószöveg */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* 600 - Feliratok, gombok */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* 800 - Brutál címsorok */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/inter-v20-latin-800.woff2') format('woff2');
}

:root {
    --bg: #0b0e14;
    /* Kicsit világosabb, kékesszürke sötét mód */
    --bg-card: #151921;
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.2);
    --text-main: #f1f5f9;
    --text-dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.06);
    --glass: blur(15px);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);

    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: var(--glass);
    background: rgba(11, 14, 20, 0.8);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--accent);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.07;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 40%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 45px;
    max-width: 650px;
    margin-inline: auto;
}

/* BUTTONS */
.btn-main {
    padding: 18px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

/* SECTIONS */
.section-padding {
    padding: 140px 0;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

/* PROJECTS */
.top-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.project-card {
    border-radius: 35px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    transition: var(--transition);
}

.project-image-container {
    width: 100%;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #000;
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.8s;
}

.project-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.project-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.project-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

/* LOGO SLIDER */
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: transparent;
    position: relative;
}

/* Ez a rész felel a szélek elmosásáért (opcionális, de profi) */
.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100px;
    height: 100%;
}
.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #0b0e14, transparent);
}
.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #0b0e14, transparent);
}

.logo-track {
    display: inline-flex; /* Nagyon fontos: ne block, hanem inline-flex */
    width: max-content;
    animation: scroll-logos 30s linear infinite; /* A linear maradjon! */
    will-change: transform;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px; /* FIX szélesség, hogy a matek kijöjjön */
    flex-shrink: 0;
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.7);
}

@keyframes scroll-logos {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Mivel a logók sorát megdupláztuk, pontosan a FELÉIG menjen el */
        transform: translate3d(calc(-1 * (200px * 5)), 0, 0);
        /* MEGJEGYZÉS: A fenti 5-ös szám helyére írd be, HÁNY darab egyedi logód van összesen! */
    }
}
/* CONTACT FORM */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.contact-method:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.contact-form-card {
    background: rgba(21, 25, 33, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 35px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(11, 14, 20, 0.5);
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.05);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    transform: translateY(-2px);
}

/* Checkbox szépítése */
.checkbox-group {
    display: flex;
    align-items: flex-start; /* A szöveg elejéhez igazítjuk */
    gap: 12px;
    margin-bottom: 30px;
    cursor: pointer;
    text-align: left;
}

.checkbox-group input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin-top: 3px; /* Ez a "finomhangolás", hogy a szöveg első sorának közepén legyen */
    flex-shrink: 0; /* Ne nyomódjon össze, ha hosszú a szöveg */
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

/* Küldés gomb egyedivé tétele az űrlapon belül */
.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: #0b0e14;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
    filter: brightness(1.1);
}

/* Mobil igazítások */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 20px;
        border-radius: 25px;
    }
}

.contact-form-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--border);
}

input,
textarea {
    width: 100%;
    background: #0b0e14;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 15px;
    color: #fff;
    font-family: inherit;
    margin-top: 8px;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Animált fénygömbök a háttérben */
.hero-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    z-index: 0;
    filter: blur(80px);
    animation: drift 20s infinite alternate ease-in-out;
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(20%, 10%) scale(1.2);
    }
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(6, 182, 212, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

#cursor-follower {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s;
}

/* Finomított pricing grid az SRWebdesign stílushoz */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
    /* Minden kártya egyforma magas lesz */
    margin-top: 50px;
}

.price-card {
    background: #11141b;
    /* Mélyebb sötétkék-szürke */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    /* Tartalom függőleges elrendezése */
    transition: all 0.4s ease;
    height: 100%; /* Hogy minden kártya egyforma magas legyen a sorban */
    position: relative;
}

/* Kiemelt kártya (Custom Portal) extra effektje */
.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.1);
    transform: translateY(-5px);
}

.price-card h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.price-amount {
    font-size: 4rem;
    /* Brutális méret az áraknak */
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 5px;
}

.price-suffix {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 35px;
}

.price-features {
    flex-grow: 1; /* Ez a bűvös sor: kitolja a listát, amíg el nem éri a gombot */
    margin-bottom: 25px; /* Kell egy kis távolság a gomb előtt */
}

.price-features li {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.price-features li::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

/* Gombok fixálása a kártya alján */
.price-card .btn-main {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 16px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Szekció variációk a tagoláshoz */
.bg-darker {
    background-color: #080a0f;
}

.bg-subtle {
    background-color: #0b0e14;
}

/* Elválasztó vonal, ami nem "vágja el" az oldalt brutálisan */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--bg-card), rgba(6, 182, 212, 0.05));
    box-shadow: 0 0 30px var(--accent-glow);
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hero h1 {
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

/* Minden, ami animálható, alapból kicsit lejjebb van és átlátszó */
.auto-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ez az osztály fog rákerülni JS-ből */
.auto-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(6, 182, 212, 0.05), transparent 80%);
    z-index: -1;
    pointer-events: none;
}

@keyframes border-beam {
    100% {
        offset-distance: 100%;
    }
}

.price-card.featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    animation: border-beam 4s linear infinite;
}

.btn-cta-main {
    background: var(--accent) !important;
    color: #0b0e14 !important;
    /* Sötét szöveg a világos kéken */
    box-shadow: 0 0 20px var(--accent-glow);
    animation: pulse-cyan 2s infinite;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    display: inline-block;
    transition: var(--transition);
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px var(--accent);
    filter: brightness(1.1);
}

@keyframes pulse-cyan {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(6, 182, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
    }
}

.trust-bar-wrapper {
    margin-top: -45px;
    position: relative;
    z-index: 20;
}

.trust-bar {
    background: rgba(21, 25, 33, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid var(--accent);
    /* Neon aljzat */
    padding: 25px 40px;
    border-radius: 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(6, 182, 212, 0.1);
    animation: float 6s ease-in-out infinite;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.trust-desc {
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Lebegő animáció */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        margin-top: -20px;
    }

    .trust-divider {
        width: 80%;
        height: 1px;
    }
}

.footer-section {
    padding: 100px 0 40px;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-tagline {
    color: var(--text-dim);
    margin-top: 20px;
    max-width: 300px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    transition: var(--transition);
}

.social-icons a:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: var(--text-dim);
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Hamburger Ikon Stílusa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

/* Mobil Navigáció Panel */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-left: 1px solid var(--border);
    }

    nav.active {
        right: 0;
    }

    nav a {
        margin: 20px 0 !important;
        font-size: 1.2rem !important;
    }

    /* Hamburger animáció nyitott állapotban */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Szekciók fixálása mobilon */
    .section-padding {
        padding: 80px 0;
    }

    .trust-bar-wrapper {
        margin-top: -20px;
    }

    .trust-bar {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    /* Footer Grid átalakítása egy oszloppá */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand .footer-tagline {
        margin-inline: auto;
        /* Középre igazítja a tagline-t */
    }

    .social-icons {
        justify-content: center;
        /* Ikonok középre */
    }

    .footer-links ul li a {
        padding: 10px 0;
        /* Nagyobb kattintási felület (fat finger friendly) */
        display: block;
        font-size: 1.1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        width: 100%;
    }
}

.workflow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.workflow-step {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
}

.workflow-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.02);
}

/* A nagy háttérszám stílusa */
.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid var(--accent-glow);
}

.workflow-step h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.workflow-step p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Összekötő vonal trükk asztali gépen */
@media (min-width: 969px) {
    .workflow-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--border);
        font-size: 1.5rem;
    }
}

@media (max-width: 968px) {
    .workflow-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.usp-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg), #0d1117);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: 0.3s;
}

.usp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.usp-card:hover::before {
    opacity: 1;
}

.usp-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid var(--accent-glow);
}

.usp-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.usp-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 30px;
}

.usp-stat {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(6, 182, 212, 0.05);
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

@media (max-width: 768px) {
    .usp-card {
        padding: 40px 25px;
    }
}

#loader {
    position: fixed;
    inset: 0;
    background: #0b0e14;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition:
        opacity 0.5s ease,
        visibility 0.5s;
}

.loader-content {
    text-align: center;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(6, 182, 212, 0.1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    100% {
        left: 100%;
    }
}

body.loaded #loader {
    opacity: 0;
    visibility: hidden;
}

#cookie-banner {
    position: fixed;
    bottom: 20px;

    right: 20px;
    max-width: 400px;
    background: rgba(21, 25, 33, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 20px;
    z-index: 9998;
    display: none;
    /* Alapból rejtve, JS fedi fel */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cookie-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-accept {
    background: var(--accent);
    color: #000;
}

.btn-decline {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.btn-cookie:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #05070a;
    /* Mélyebb fekete a kontraszt miatt */
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.cta-content p {
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 45px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-subtext {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.6;
}

/* Extra effekt: Egy futó fénycsík az alján */
.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Modern, vékony görgetősáv */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.business-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-group .icon {
    font-family: 'Fira Code', monospace;
    color: #61afef;
    /* A kódos kéked */
    font-weight: bold;
    font-size: 0.9rem;
    width: 15px;
}

.info-group small {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5c6370;
    /* Sötétebb szürke, hogy ne vonja el a figyelmet */
}

.info-group p {
    margin: 0;
    font-size: 0.85rem;
    color: #abb2bf;
    font-family: 'Fira Code', monospace;
    /* Hogy az adószám/számlaszám jól olvasható legyen */
}

@media (max-width: 768px) {
    /* Kikapcsoljuk az elmozdulást, csak az opacity maradjon, ha nagyon kell */
    .auto-reveal {
        transform: none !important;
        opacity: 1 !important;
        /* Azonnal látszódjon */
        transition: none !important;
    }

    /* A H1-nél a betűméret ugrálását is megfogjuk */
    .hero h1 {
        animation: none !important;
        letter-spacing: -1px !important;
        /* Fixáljuk, ne táguljon */
        background-clip: text;
        -webkit-background-clip: text;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Konténer a gomboknak */
.project-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Finom elválasztó */
}

/* A link stílusa */
.live-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff; /* Vagy a te akciós színed */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Ikon méretezés */
.live-link svg {
    transition: transform 0.3s ease;
}

/* Hover effekt */
.live-link:hover {
    opacity: 1;
    color: #3498db; /* Ide jöhet egy MSI-kék vagy egy élénkebb szín */
}

.live-link:hover svg {
    transform: translate(2px, -2px); /* Kicsit "kiugrik" a sarokba */
}

/* Ha mobilon nézik, legyen kicsit nagyobb a kattintási felület */
@media (max-width: 480px) {
    .live-link {
        padding: 10px 0;
        width: 100%;
        justify-content: flex-start;
    }
}

.preview-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2vh 5vw;
}

.preview-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #252525;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.browser-dots {
    display: flex;
    gap: 8px;
}
.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close-modal {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-weight: 600;
}

.close-modal:hover {
    color: #fff;
}

.iframe-wrapper {
    flex: 1;
    position: relative;
    background: #fff;
}
iframe {
    width: 100%;
    height: 100%;
}

.system-status-bar {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.status-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-label {
    opacity: 0.6;
    text-transform: uppercase;
}

.status-value {
    color: var(--accent);
    font-weight: bold;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 10px #27c93f;
}

.pulse {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.status-divider {
    width: 1px;
    height: 15px;
    background: #333;
}

.system-status-bar .badge {
    text-align: center;
    display: block;
    /* Vagy inline-block */
    margin: 0 auto;
    /* Ez csak akkor működik, ha nem flex-itemként viselkedik */
    width: fit-content;
    margin-top: 25px !important;
    /* Csak akkora legyen, amekkora a szöveg */
}

/* Testimonials Speciális Konténer */
.testimonials-wrapper {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Áttetsző elmosás a széleken */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-marquee {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0;
    /* A gap-et az itemek paddingje adja meg */
    animation: marquee-scroll 160s linear infinite;
}

.testimonial-item {
    background: rgba(21, 25, 33, 0.4);
    /* Kicsit áttetszőbb, mint a fő sáv */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    margin: 0 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    /* Hogy ne törjön meg a szöveg */
}

/* Ha ráviszed az egeret, megáll az animáció */
.testimonials-wrapper:hover .testimonials-marquee {
    animation-play-state: paused;
}

/* Görgetés animáció */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 10px 20px;
        margin: 0 10px;
    }

    .testimonials-marquee {
        animation: marquee-scroll 200s linear infinite;
    }
}
