/* ===== ALAP ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #7c3aed;
    --gold-light: #9333ea;
    --dark: transparent;
    --darker: transparent;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 10%, rgba(80, 50, 180, 0.55) 0%, transparent 45%),
        radial-gradient(ellipse at 100% 85%, rgba(90, 50, 200, 0.45) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(20, 15, 50, 0.3) 0%, transparent 70%),
        #0c0c1c;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
    z-index: -1;
}

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

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed, #a78bfa, #d4a017);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ===== FEJLÉC ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1100;
    border-bottom: 1px solid rgba(212, 160, 23, 0.25);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 24px;
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.8));
}

.logo span {
    color: var(--gold);
    position: relative;
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 40%, #7c3aed 60%, #7c3aed 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}


/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 100px;
}

.hero-content {
    max-width: 820px;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.6rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Kiemelt szó a heading-ben */
.hero-hl {
    display: inline-block;
    position: relative;
    color: var(--gold-light);
}

.hero-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 22px;
    pointer-events: none;
}

/* Kiemelt szavak az alcímben */
.hero-accent {
    color: var(--gold-light);
    font-weight: 600;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* ===== MEGBÍZNAK (TRUST BAR) ===== */
.trust-bar {
    padding: 5rem 0 0;
    text-align: center;
    background: transparent;
    border-top: none;
}

.trust-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.trust-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.trust-marquee {
    overflow: hidden;
    padding-bottom: 3.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.trust-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marqueeScroll 80s linear infinite;
}

.trust-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 240px;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.trust-card:hover {
    border-color: rgba(124, 58, 237, 0.45);
}

.trust-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.trust-info strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.trust-info span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== SZEKCIÓ KÖZÖS ===== */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-align: center;
}

.products h2, .why h2, .contact h2 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.section-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3.5rem;
    font-size: 1.05rem;
}


/* ===== STATISZTIKA SÁV ===== */
.stats-bar {
    background: rgba(0, 0, 0, 0.65);
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 0.5rem;
}

.stats-item div {
    display: flex;
    flex-direction: column;
}

.stats-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.stats-item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ===== FOLYAMAT ===== */
.process-section {
    padding: 7rem 0;
    text-align: center;
}

.process-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.process-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover .process-icon {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.7);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.process-step p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.process-connector {
    flex-shrink: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(124,58,237,0.5), rgba(124,58,237,0.2));
    margin-top: 36px;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .process-connector {
        width: 1px;
        height: 40px;
        background: linear-gradient(180deg, rgba(124,58,237,0.5), rgba(124,58,237,0.2));
        margin-top: 0;
    }
    .process-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 1.5rem;
    }
}

/* ===== VIZUÁLIS SZEKCIÓ ===== */

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.visual-left {
    display: flex;
    justify-content: center;
}

.phone-svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(124,58,237,0.25));
}

.visual-right h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.visual-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.visual-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visual-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    min-width: 90px;
    line-height: 1;
}

.visual-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .visual-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .visual-right h2 {
        font-size: 1.8rem;
    }
    .mockup-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .visual-right h2 {
        font-size: 1.5rem;
    }
    .mockup-title {
        font-size: 1.5rem;
    }
    .visual-num {
        font-size: 1.6rem;
        min-width: 75px;
    }
}

/* ===== TERMÉKEK ===== */
.products {
    padding: 8rem 0;
    background: var(--dark);
}

/* Tab gombok */
.tabs {
    display: flex;
    gap: 0;
    margin: 0 auto 2.5rem;
    max-width: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    flex: 1;
    padding: 0.85rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--gold);
    color: #ffffff;
}

.tab-btn:hover:not(.active) {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/* Tab tartalom */
.tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tab-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.8rem 2rem;
}

.tab-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tab-card .product-desc {
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}

.tab-card .product-features li {
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    font-size: 0.88rem;
}

.tab-card .product-features {
    margin-bottom: 1.2rem;
}

.tab-card .product-price {
    margin-bottom: 1rem;
}

.tab-card .price {
    font-size: 1.6rem;
}

.tab-card .service-item {
    padding: 0.7rem 0;
}

.tab-card .service-name {
    font-size: 0.9rem;
}

.tab-card .service-desc {
    font-size: 0.75rem;
}

.tab-card .service-price {
    font-size: 0.95rem;
}

.tab-card .product-icon {
    margin-bottom: 1.2rem;
}

.featured .product-icon {
    background: rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.product-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.7);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
}

.product-card.featured {
    border-color: var(--gold);
    border-width: 2px;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 0 32px rgba(212,160,23,0.45);
}

.card-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.product-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.product-desc {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.55rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.92rem;
    padding-left: 1.4rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Vállalati szolgáltatás lista */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.service-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.service-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
    white-space: nowrap;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-left: 4px;
}

.price-annual-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.price-annual-badge {
    background: rgba(124,58,237,0.25);
    color: #a78bfa;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 100px;
    border: 1px solid rgba(124,58,237,0.3);
}

.price-annual-note strong {
    color: rgba(255,255,255,0.7);
}

.btn-card {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-card:hover {
    background: var(--gold);
    color: #ffffff;
}

/* ===== MIÉRT MI ===== */
.why {
    padding: 8rem 0;
    background: var(--darker);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-item:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.18);
    background: rgba(124, 58, 237, 0.06);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.why-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ===== REFERENCIÁK ===== */
.reviews {
    padding: 7rem 0;
    background: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}

.review-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===== FAQ ===== */
.faq {
    padding: 8rem 0;
    background: transparent;
}

.faq-list {
    max-width: 750px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(124, 58, 237, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== RÓLUNK ===== */
/* ── Vizuális szekció ── */
.visual-section {
    padding: 0;
    overflow: hidden;
}

.visual-scene {
    position: relative;
    height: 440px;
    max-width: 860px;
    margin: 0 auto;
}

/* Háttér orbok */
.vis-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.vis-orb--1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(124,58,237,0.13), transparent 65%);
}

.vis-orb--2 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(212,160,23,0.07), transparent 65%);
}

/* Középső elem */
.vis-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vis-center-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124,58,237,0.15);
    animation: ring-spin 20s linear infinite;
}

.vis-ring--1 {
    width: 200px;
    height: 200px;
    animation-duration: 18s;
}

.vis-ring--2 {
    width: 290px;
    height: 290px;
    animation-direction: reverse;
    animation-duration: 26s;
    border-color: rgba(124,58,237,0.08);
}

.vis-ring--3 {
    width: 380px;
    height: 380px;
    animation-duration: 34s;
    border-color: rgba(124,58,237,0.05);
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.vis-center-core {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 40% 35%, rgba(124,58,237,0.35), rgba(124,58,237,0.1));
    border: 1px solid rgba(124,58,237,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(124,58,237,0.25), inset 0 0 30px rgba(124,58,237,0.1);
}

.vis-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

.vis-logo-text em {
    font-style: normal;
    display: block;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Lebegő kártyák */
.vis-card {
    position: absolute;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}

.vis-card--1 {
    top: 6%;
    left: 2%;
    animation: vis-float-a 7s ease-in-out infinite;
}

.vis-card--2 {
    top: 8%;
    right: 2%;
    animation: vis-float-b 8s ease-in-out infinite 0.6s;
}

.vis-card--3 {
    bottom: 12%;
    left: 4%;
    animation: vis-float-a 6s ease-in-out infinite 1.2s;
}

.vis-card--4 {
    bottom: 10%;
    right: 4%;
    animation: vis-float-b 7.5s ease-in-out infinite 0.3s;
}

@keyframes vis-float-a {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes vis-float-b {
    0%, 100% { transform: translateY(-6px); }
    50%       { transform: translateY(8px); }
}

.vis-card-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: #a78bfa;
}

.vis-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vis-card-body strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.vis-card-body span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
}

.vis-palette {
    display: flex;
    gap: 4px;
    align-items: center;
}

.vis-palette span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .visual-section { display: none; }
}

.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,0.07), transparent 65%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.about-identity {
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(0,0,0,0.2));
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-identity::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
}

.about-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.about-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 40px rgba(124,58,237,0.5);
    position: relative;
    z-index: 1;
}

.about-avatar-ring {
    position: absolute;
    top: -7px; left: -7px; right: -7px; bottom: -7px;
    border-radius: 50%;
    border: 1px solid rgba(124,58,237,0.35);
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.08); opacity: 1; }
}

.about-identity-info {
    flex: 0 0 auto;
}

.about-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.about-role {
    font-size: 0.75rem;
    color: rgba(167,139,250,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.about-tags span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.25rem 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-quote {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.about-lead {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 3.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.07), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-value-card:hover {
    border-color: rgba(124,58,237,0.35);
    transform: translateY(-5px);
}

.about-value-card:hover::before { opacity: 1; }

.about-value-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(124,58,237,0.2);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.about-value-card strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.about-value-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
}

.about-cta {
    text-align: center;
}

@media (max-width: 900px) {
    .about-identity {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .about-tags {
        justify-content: center;
    }
    .about-quote {
        border-left: none;
        border-top: 1px solid rgba(124,58,237,0.3);
        padding-left: 0;
        padding-top: 1.2rem;
        text-align: center;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-value-num {
        font-size: 2rem;
    }
    .about-lead {
        font-size: 1rem;
        max-width: 100%;
    }
    .about-quote {
        font-size: 0.88rem;
        max-width: 100%;
    }
    .about-value-card {
        padding: 1.4rem 1.2rem;
    }
    .trust-card {
        min-width: 200px;
        padding: 0.8rem 1rem;
    }
}

/* ===== KAPCSOLAT ===== */
.contact {
    padding: 8rem 0;
    background: var(--dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-details h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.contact-details .section-label {
    text-align: left;
}

.contact-lead {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    transition: opacity 0.2s;
}

a.contact-detail-item:hover {
    opacity: 0.8;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-form-wrap {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 2rem;
}

.contact-form {
    max-width: 780px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Szolgáltatás kártyák */
.service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.service-pick {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    user-select: none;
    position: relative;
    background: rgba(255,255,255,0.02);
}

.service-pick:hover {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.05);
}

.service-pick.active {
    border-color: #7c3aed;
    background: rgba(124,58,237,0.1);
}

.service-pick-icon {
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    transition: color 0.25s;
}

.service-pick.active .service-pick-icon {
    color: #a78bfa;
}

.service-pick-text {
    flex: 1;
}

.service-pick-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2px;
}

.service-pick-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.service-pick.active .service-pick-text strong {
    color: #fff;
}

.service-pick.active .service-pick-text span {
    color: rgba(167,139,250,0.7);
}

.service-pick-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.service-pick.active .service-pick-check {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}

.pricing-selector {
    grid-template-columns: 1fr 1fr !important;
}

.service-pick-pro {
    border-color: #d4a017 !important;
    box-shadow: 0 0 16px rgba(212,160,23,0.2);
}

.service-pick-pro.active {
    border-color: #d4a017 !important;
    background: rgba(212,160,23,0.08) !important;
    box-shadow: 0 0 24px rgba(212,160,23,0.35);
}

.picker-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: -0.3rem;
}

/* Form mezők animálva */
.form-fields {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.35s ease;
    pointer-events: none;
}

.form-fields.visible {
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
}

.form-fields-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 0.1px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-details h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-details h2 {
        font-size: 1.5rem;
    }
    .contact-form-wrap {
        padding: 1.2rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.textarea-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    padding: 0.85rem 0;
    border-radius: 0;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #0c0c1c inset;
    -webkit-text-fill-color: #ffffff;
    border-bottom: 1.5px solid rgba(255,255,255,0.15);
    transition: background-color 5000s ease-in-out 0s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    cursor: pointer;
}

.contact-form select option {
    background: #1a1a2e;
    color: #ffffff;
}

.contact-form select:invalid {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #7c3aed;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* GDPR checkbox */
.gdpr-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.gdpr-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.gdpr-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.gdpr-check.error .gdpr-box {
    border-color: #ef4444;
    background: rgba(239,68,68,0.1);
    animation: shake 0.4s ease;
}

.gdpr-check.error .gdpr-text {
    color: rgba(255,180,180,0.8);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    40%       { transform: translateX(5px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
.gdpr-check input:checked + .gdpr-box {
    background: #7c3aed;
    border-color: #7c3aed;
}
.gdpr-check input:checked + .gdpr-box::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}
.gdpr-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.gdpr-text a {
    color: #a78bfa;
    text-decoration: underline;
}
.gdpr-text a:hover {
    color: #c4b5fd;
}

.btn-submit {
    background: var(--gold);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.ci-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.contact-item span:last-child,
.contact-item a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--gold-light);
}

/* ===== LÁBLÉC ===== */
footer {
    background: transparent;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo span {
    color: var(--gold);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ===== KURZOR IZZÁS ===== */
#cursor-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    will-change: left, top;
}

/* ===== RÉSZECSKÉK ===== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.8);
}

.particles span:nth-child(1)  { left: 10%; animation-duration: 12s; animation-delay: 0s;   width: 3px; height: 3px; }
.particles span:nth-child(2)  { left: 25%; animation-duration: 16s; animation-delay: 2s;   width: 5px; height: 5px; }
.particles span:nth-child(3)  { left: 40%; animation-duration: 10s; animation-delay: 1s;   width: 2px; height: 2px; }
.particles span:nth-child(4)  { left: 55%; animation-duration: 14s; animation-delay: 3s;   width: 4px; height: 4px; }
.particles span:nth-child(5)  { left: 68%; animation-duration: 11s; animation-delay: 0.5s; width: 3px; height: 3px; }
.particles span:nth-child(6)  { left: 78%; animation-duration: 18s; animation-delay: 4s;   width: 5px; height: 5px; }
.particles span:nth-child(7)  { left: 88%; animation-duration: 13s; animation-delay: 1.5s; width: 2px; height: 2px; }
.particles span:nth-child(8)  { left: 5%;  animation-duration: 15s; animation-delay: 2.5s; width: 4px; height: 4px; }

@keyframes floatParticle {
    0%   { bottom: -10px; opacity: 0; transform: translateX(0); }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { bottom: 100%; opacity: 0; transform: translateX(40px); }
}

/* ===== STATISZTIKA SÁV ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
}

.stat-plus {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== ANIMÁCIÓK ===== */

/* Hero beúszás oldalbetöltéskor */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    animation: heroFadeUp 0.9s ease both;
    animation-delay: 0.1s;
}

.hero .hero-sub {
    animation: heroFadeUp 0.9s ease both;
    animation-delay: 0.3s;
}

.hero .hero-btns {
    animation: heroFadeUp 0.9s ease both;
    animation-delay: 0.5s;
}

/* Nav link aláhúzás hover animáció */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Featured kártya lüktető keret */
@keyframes borderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
    50%       { box-shadow: 0 0 18px 4px rgba(124, 58, 237, 0.3); }
}

.product-card.featured {
    animation: borderPulse 3s ease-in-out infinite;
}

/* Görgetésre beúszás */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gomb szikra effekt hover */
.btn-primary, .btn-card {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover::after, .btn-card:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* ===== MOBIL MENÜ ===== */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(124, 58, 237, 0.3);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.mobile-menu a:hover {
    color: var(--gold);
}


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ===== TABLET (max 768px) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Fejléc */
    header .container {
        padding: 0.9rem 16px;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
        text-align: center;
    }
    nav {
        display: none;
    }
    .menu-btn {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hero */
    .hero {
        padding: 100px 16px 50px;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .trust-title {
        font-size: 1.6rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Termékek */
    .products-grid {
        grid-template-columns: 1fr;
    }
    .tabs {
        max-width: 100%;
    }
    .tab-btn {
        font-size: 0.82rem;
        padding: 0.75rem 0.4rem;
    }
    .tab-card {
        padding: 1.5rem;
    }

    /* Miért mi */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Referenciák */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    /* Kapcsolat */
    .service-selector {
        grid-template-columns: 1fr;
    }
    .pricing-selector {
        grid-template-columns: 1fr !important;
    }
    .service-pick-text span {
        display: none;
    }
    .form-row,
    .textarea-row {
        grid-template-columns: 1fr;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    /* Szekciók padding és h2 */
    .products, .why, .reviews, .faq, .contact {
        padding: 4rem 0;
    }
    .products h2, .why h2, .reviews h2, .faq h2, .contact h2 {
        font-size: 1.8rem;
    }

    /* Footer */
    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* ===== TELEFON (max 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Fejléc */
    .logo {
        font-size: 1.2rem;
    }
    nav {
        gap: 0.8rem;
    }
    nav a {
        font-size: 0.78rem;
    }
    nav a::after {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 90px 12px 40px;
    }
    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.2;
    }
    .trust-title {
        font-size: 1.35rem;
    }

    /* Kurzor izzás elrejtése mobilon */
    #cursor-glow {
        display: none;
    }

    /* Részecskék kisebb méretre */
    .particles span {
        width: 2px;
        height: 2px;
    }

    /* Tab gombok */
    .tab-btn {
        font-size: 0.75rem;
        padding: 0.65rem 0.3rem;
    }
    .tab-card {
        padding: 1.2rem;
    }
    .tab-card h3 {
        font-size: 1.1rem;
    }
    .tab-card .price {
        font-size: 1.3rem;
    }

    /* Szolgáltatás lista */
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .service-price {
        font-size: 0.95rem;
    }

    /* Miért mi */
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-item {
        padding: 1.5rem 1rem;
    }

    /* Szekciók */
    .products, .why, .reviews, .faq, .contact {
        padding: 3rem 0;
    }
    .products h2, .why h2, .reviews h2, .faq h2, .contact h2 {
        font-size: 1.5rem;
    }
    .section-label {
        font-size: 0.72rem;
    }
    .section-sub {
        font-size: 0.9rem;
    }

    /* Vélemény kártyák */
    .review-card {
        padding: 1.5rem;
    }
    .review-text {
        font-size: 0.88rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.85rem;
        padding: 0.9rem;
    }

    /* Form */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    .btn-submit {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    /* Footer */
    .footer-logo {
        font-size: 1.1rem;
    }
    .footer-copy {
        font-size: 0.78rem;
    }
}

/* ===== REFERENCIÁK ===== */
.references {
    padding: 8rem 0;
    text-align: center;
}

.ref-marquee-wrap {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.ref-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: ref-scroll 70s linear infinite;
    text-align: left;
}

.ref-track:hover {
    animation-play-state: paused;
}

@keyframes ref-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ref-card {
    display: flex;
    flex-direction: column;
    width: 400px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ref-card:hover {
    border-color: rgba(124,58,237,0.5);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.ref-card-thumb {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    position: relative;
}

.ref-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.ref-card:hover .ref-card-thumb img {
    transform: scale(1.04);
}

.ref-card-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.ref-favicon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

.ref-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* legacy - nem használt, de megtartjuk */
.ref-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}

.ref-item:hover {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.08);
}

.ref-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 4px;
}

.ref-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .references {
        padding: 5rem 0;
    }
    .ref-card {
        width: 260px;
    }
    .ref-card-thumb {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .ref-card {
        width: 220px;
    }
    .ref-card-thumb {
        height: 130px;
    }
}
