/* ══════════════════════════════════════════
   FOGLALAS.HU – Frontend CSS
   Bexon stílusban
══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:       #1e8a8a;
    --gold-2:     #0c1e21;
    --gold-light: #1e8a8a;
    --gold-glow: #1e8a8a;
    --dark:       #080808;
    --dark-2:     #111111;
    --dark-3:     #181818;
    --dark-4:     #222222;
    --dark-5:     #2a2a2a;
    --border:     rgba(255,255,255,.07);
    --border-2:   rgba(200,169,110,.2);
    --text:       #e0e0e0;
    --text-muted: #777;
    --text-light: #aaa;
    --white:      #ffffff;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --shadow:     0 4px 24px #1e8a8a;
    --shadow-lg:  0 16px 64px #1e8a8a;
    --shadow-gold:0 8px 32px rgba(200,169,110,.2);
    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --font:       'Inter', sans-serif;
    --nav-h:      80px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: #1e8a8a;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background: var(--gold); color: var(--dark); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }
ul { list-style: none; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── Section ── */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    border: 1px solid var(--border-2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.section-tag i { font-size: 10px; }

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title span { color: var(--gold); }

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.08);
    opacity: 0;
    transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,169,110,.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--gold-light);
    color: #ffffff;
    border: 1px solid var(--border-2);
}
.btn-ghost:hover {
    background: rgba(200,169,110,.2);
    transform: translateY(-2px);
}

.btn-lg { padding: 17px 36px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Noise overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: .4;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(8,8,8,.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 32px rgba(0,0,0,.3);
    height: 64px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .5px;
}
.nav-logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 16px;
}
.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,.05); }

.nav-cta { margin-left: 12px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: var(--dark-3);
    border: 1px solid var(--border);
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

/* Animált háttér */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200,169,110,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(200,169,110,.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at -10% 60%, rgba(200,169,110,.05) 0%, transparent 50%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(200,169,110,.08);
    top: -100px; right: -100px;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 300px; height: 300px;
    background: rgba(200,169,110,.05);
    bottom: 10%; left: -50px;
    animation-delay: -4s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -30px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(.95); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0c1e21;
    border: 1px solid #1e8a8a;
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: var(--dark);
}
.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    color: rgb(206 198 184 / 95%);
    letter-spacing: .5px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-title .line { display: block; }
.hero-title .accent {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat-val {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: block;
}
.hero-stat-val span { color: var(--gold); }
.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* Hero visual */
.hero-visual {
    position: relative;
}
.hero-card-main {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.hero-card-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.hero-card-dots span:nth-child(1) { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #febc2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }
.hero-card-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 6px;
}

.system-list { display: flex; flex-direction: column; gap: 12px; }
.system-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}
.system-item:hover {
    border-color: var(--border-2);
    background: var(--dark-5);
    transform: translateX(4px);
}
.system-item-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.system-item-info { flex: 1; }
.system-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}
.system-item-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}
.system-item-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

/* Floating kártyák */
.hero-float-card {
    position: absolute;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-1 {
    top: -20px; left: -40px;
    animation-delay: 0s;
}
.hero-float-2 {
    bottom: 30px; right: -30px;
    animation-delay: -2s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.hero-float-icon {
    width: 32px; height: 32px;
    background: var(--gold-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 14px;
}
.hero-float-text { font-size: 12px; font-weight: 600; color: var(--white); }
.hero-float-sub  { font-size: 11px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   MARQUEE / SCROLL SÁTOR
══════════════════════════════════════════ */
.marquee-section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark-2);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.marquee-item i { color: var(--gold); font-size: 14px; }
.marquee-sep { color: var(--dark-5); font-size: 20px; }

/* ══════════════════════════════════════════
   STATS SÁV
══════════════════════════════════════════ */
.stats-section {
    padding: 80px 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    transition: var(--transition);
}
.stat-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
}
.stat-item:last-child::after { display: none; }
.stat-item:hover .stat-num { color: var(--gold); }
.stat-num {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    transition: var(--transition);
    display: block;
}
.stat-num span { color: var(--gold); }
.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

/* ══════════════════════════════════════════
   SYSTEMS / RENDSZEREK
══════════════════════════════════════════ */
.systems-section { background: var(--dark); }

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}
.cat-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.cat-tab i { font-size: 12px; }
.cat-tab:hover,
.cat-tab.active {
    background: var(--gold-light);
    border-color: var(--border-2);
    color: #f5f6f6;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sys-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.sys-card:hover {
    border-color: var(--border-2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.sys-card.featured {
    border-color: var(--border-2);
}
.sys-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sys-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--dark-4);
}
.sys-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.sys-card:hover .sys-card-img img { transform: scale(1.05); }
.sys-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
}
.sys-card-badge {
    position: absolute;
    top: 14px; right: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.sys-card-body {padding: 24px;flex: 1;display: flex;flex-direction: column;background: #0c1e21;}
.sys-card-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sys-card-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.sys-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}
.sys-card-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.sys-card-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}
.sys-card-feature i {
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
}

.sys-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;      /* ← ár felül, gombok alul */
    gap: 12px;
    background: #102d32;
}
.sys-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.sys-card-price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    line-height: 1;
}
.sys-card-price-val span { color: var(--gold); }
.sys-card-price-label {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}
.sys-card-btns { display: flex; gap: 8px; }

/* ══════════════════════════════════════════
   HOW IT WORKS
═══════════��══════════════════════════════ */
.how-section { background: var(--dark-2); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .4;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}
.step-card:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
}
.step-num {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    border: 3px solid var(--dark-2);
}
.step-icon {
    width: 72px;
    height: 72px;
    background: var(--gold-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4e7e7;
    margin: 0 auto 24px;
}
.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.step-desc {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.8;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-section { background: var(--dark); overflow: hidden; }

.testi-slider-wrap { position: relative; }
.testi-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: var(--transition);
}

.testi-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}
.testi-card:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 24px;
    font-size: 80px;
    color: var(--gold);
    opacity: .15;
    line-height: 1;
    font-family: serif;
}
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.testi-stars i { color: var(--gold); font-size: 13px; }
.testi-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.testi-author-img {
    width: 44px; height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.testi-author-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.testi-author-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}
.testi-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}
.testi-author-pos {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.testi-system-tag {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    background: var(--gold-light);
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: var(--dark-2); }
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.open { border-color: var(--border-2); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--dark-3);
    gap: 16px;
    transition: background .2s;
    user-select: none;
}
.faq-question:hover { background: var(--dark-4); }
.faq-item.open .faq-question { background: var(--dark-4); }

.faq-icon {
    width: 28px; height: 28px;
    background: var(--dark-5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    background: var(--dark-3);
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ══════════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════════ */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,169,110,.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    background: var(--dark-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-title span { color: var(--gold); }
.cta-sub {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact form */
.contact-form {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    font-family: var(--font);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
}
.form-group select option { background: var(--dark-3); }
.form-submit { text-align: center; margin-top: 8px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 14px;
}
.footer-desc {
    font-size: 14px;
    color: #fdfcfc;
    line-height: 1.8;
    margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 36px; height: 36px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}
.footer-social:hover {
    background: var(--gold-light);
    border-color: var(--border-2);
    color: var(--gold);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
    font-size: 14px;
    color: #ffffff;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-link i { font-size: 11px; color: var(--gold); opacity: .6; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {font-size: 13px;color: #ffffff;}
.footer-copy a { color: var(--gold); }
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
    border: none;
    box-shadow: var(--shadow-gold);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════════
   TOAST ÉRTESÍTŐ
══════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast.success { border-color: rgba(34,197,94,.3); }
.toast.success i { color: #4ade80; }
.toast.error { border-color: rgba(239,68,68,.3); }
.toast.error i { color: #f87171; }

/* ══════════════════════════════════════════
   ANIMÁCIÓK
══════════════════════════════���═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner        { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual       { display: none; }
    .systems-grid      { grid-template-columns: repeat(2, 1fr); }
    .steps-grid        { grid-template-columns: 1fr; }
    .steps-grid::before{ display: none; }
    .testi-slider      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); }
    .cta-inner         { padding: 40px 28px; }
}

@media (max-width: 768px) {
    .section           { padding: 72px 0; }
    .nav-links         { display: none; }
    .nav-cta           { display: none; }
    .nav-toggle        { display: flex; }
    .systems-grid      { grid-template-columns: 1fr; }
    .testi-slider      { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid        { grid-template-columns: 1fr 1fr; }
    .form-row-2        { grid-template-columns: 1fr; }
    .hero-stats        { gap: 20px; flex-wrap: wrap; }
    .footer-bottom     { flex-direction: column; text-align: center; }
    .category-tabs     { gap: 6px; }
    .cat-tab           { font-size: 12px; padding: 8px 14px; }
}

@media (max-width: 480px) {
    .container         { padding: 0 16px; }
    .hero-title        { font-size: 36px; }
    .hero-btns         { flex-direction: column; }
    .hero-btns .btn    { width: 100%; justify-content: center; }
    .stats-grid        { grid-template-columns: 1fr; }
    .stat-item::after  { display: none; }
}