:root {
    --primary: #2DD4BF;
    --primary-dark: #1CA1AD;
    --bg-dark: #05070a;
    --card-bg: #0f172a;
    --text-main: #E7ECF7;
    --text-dim: #9fb3d9;
    --transition-slow: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s ease;
    --nav-height: 80px; 
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

.anchor {
    position: absolute;
    margin-top: calc(var(--nav-height) * -1.5);
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.15rem;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.nowrap-title {
    white-space: nowrap;
    max-width: 100%;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.6rem; margin-bottom: 15px; }
p { font-size: 1.25rem; color: var(--text-dim); }

.section-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem) !important;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-main);
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 30px; 
    box-sizing: border-box;
}
.text-green { color: var(--primary); }
.text-center { text-align: center; }

/* NAVIGÁCIÓ */
.nav {
    height: var(--nav-height);
    background: rgba(5, 7, 10, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 40px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-btn { background: var(--primary); color: #000 !important; padding: 10px 20px; border-radius: 8px; font-weight: 700; transition: 0.3s; }

/* HERO */
.hero { padding: 160px 0 80px; text-align: center; position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.hero .container { width: 100%; }

.hero-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100vw; height: 100%;
    background: radial-gradient(circle at center, rgba(45, 212, 191, 0.18) 0%, transparent 75%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-btns { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.hero-btns .btn {
    min-width: 220px;
    text-align: center;
    padding: 18px 25px;
}

.btn { border-radius: 12px; font-weight: 700; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-primary { background: var(--primary); color: #000; border: none; }
.btn-glow:hover { box-shadow: 0 0 30px rgba(45, 212, 191, 0.5); transform: translateY(-3px); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.2); color: #fff; }

.hero-bullets {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    color: var(--text-main);
    font-weight: 500;
}
.check { color: var(--primary); font-weight: 800; margin-right: 8px; }

/* SZEKCIÓK */
.section { padding: 120px 0; overflow-x: hidden; }
.alt { background: rgba(255,255,255,0.015); }

/* ELŐNYÖK */
.benefit-row { display: flex; flex-direction: column; gap: 30px; margin-top: 50px; }
.benefit-item { 
    padding: 40px; border-radius: 20px; 
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

/* MEGOLDÁSOK PIRAMIS */
.solutions-pyramid { display: flex; flex-direction: column; gap: 30px; margin-top: 60px; }
.solutions-row { display: flex; gap: 30px; justify-content: center; }
.card {
    background: var(--card-bg); padding: 45px; border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.05); flex: 1; max-width: 360px;
    transition: 0.4s ease;
}
.card:hover { border-color: var(--primary); transform: translateY(-12px); }
.card-icon { font-size: 2.5rem; margin-bottom: 25px; display: block; }

/* FOLYAMAT */
.process-flow { display: flex; gap: 30px; margin-top: 80px; justify-content: center; }
.process-step { background: rgba(255,255,255,0.03); padding: 50px 30px; border-radius: 24px; flex: 1; text-align: center; }
.step-badge { width: 45px; height: 45px; background: var(--primary); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 25px; }

/* KONTAKT */
.contact-card { background: rgba(255,255,255,0.02); padding: 70px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.05); text-align: center; max-width: 850px; margin: 0 auto; }
.contact-info-grid { display: flex; justify-content: center; gap: 60px; margin-top: 40px; }

.contact-item { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s;
    cursor: pointer;
}
.contact-item:hover { transform: translateY(-5px); color: var(--primary); }
.contact-item .icon { font-size: 2.2rem; display: block; margin-bottom: 15px; }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: var(--text-dim); }

/* ANIMÁCIÓK */
.reveal { opacity: 0; transform: translateY(60px); transition: var(--transition-slow); }
.reveal-left { opacity: 0; transform: translateX(-100px); transition: var(--transition-slow); }
.reveal-right { opacity: 0; transform: translateX(100px); transition: var(--transition-slow); }
.reveal-zoom { opacity: 0; transform: scale(0.85); transition: var(--transition-slow); }
.box-reveal { opacity: 0; transform: translateY(40px); transition: var(--transition-slow); }

.active { opacity: 1 !important; transform: translate(0) scale(1) !important; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .solutions-row { flex-wrap: wrap; }
    .card { min-width: 280px; }
}

@media (max-width: 768px) {
    .nowrap-title { white-space: normal !important; }
    .nav-links { display: none; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-btns { flex-direction: column; align-items: center; gap: 15px; }
    .hero-btns .btn { width: 100%; max-width: 320px; }
    .hero-bullets { flex-direction: column; gap: 15px; }
    .process-flow { flex-direction: column; }
    .contact-info-grid { flex-direction: column; gap: 30px; }
    .contact-card { padding: 40px 20px; }
    .section { padding: 80px 0; }
    .container { padding: 0 20px; }
}