﻿/* ===== VÁLTOZÓK (Színek és betűtípusok) ===== */
:root {
    --bg-dark: #050810;
    --bg-card: #0b1120;
    --bg-card-hover: #111a2e;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent-cyan: #00f0ff;
    --accent-orange: #ff6b00;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===== ALAP BEÁLLÍTÁSOK ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== GOMBOK ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #00a8ff);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
}
/* ===== HERO SZEKCIÓ ===== */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SLIDER ===== */
.slider-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: var(--bg-card);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide svg {
    width: 100%;
    height: 100%;
}

.slide-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-main);
    white-space: nowrap;
}

.slide-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 240, 255, 0.9);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 5;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 240, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 5px;
}
/* ===== FEATURES (3 KÁRTYÁS) ===== */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    color: var(--text-muted);
}

/* ===== HIGHLIGHT BANNER ===== */
.highlight-banner {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(255, 107, 0, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    margin: 40px 0;
    text-align: center;
}

.highlight-banner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.highlight-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== FEATURES SHOWCASE (TABS) ===== */
.features-showcase {
    padding: 80px 0;
}

.showcase-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tabs-scroll {
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1 1 calc(100% / 6);
    padding: 16px 10px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(0, 240, 255, 0.05);
    color: var(--text-main);
}

.tab-btn.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
}

.showcase-content {
    padding: 40px;
    min-height: 600px;
}

.tab-panel {
    display: none;
    width: 100%;
    animation: fadeInUp 0.5s ease;
}

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

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

.tab-header {
    text-align: center;
    margin-bottom: 30px;
}

.tab-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.15);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tab-header h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.tab-hook {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tab-image-wrapper {
    width: 100%;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    aspect-ratio: 16 / 9;
    max-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tab-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    color: var(--text-muted);
    font-size: 1.5rem;
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.tab-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tab-features {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tab-features li {
    padding: 12px 15px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tab-features li:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}
/* ===== ÁRAZÁS ===== */
.pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-cyan);
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: bold;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: var(--accent-cyan);
}

/* ===== FELIRATKOZÁS ===== */
.subscribe-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03), rgba(255, 107, 0, 0.03));
}

.subscribe-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.subscribe-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.subscribe-form input::placeholder {
    color: var(--text-muted);
}

.subscribe-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.response-message {
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    min-height: 24px;
}

/* ===== HOGYAN MŰKÖDIK ===== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.02), rgba(59, 130, 246, 0.02));
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hiw-step {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.hiw-step:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.08);
}

.hiw-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent-cyan);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hiw-icon {
    font-size: 3rem;
    margin: 15px 0;
}

.hiw-step h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.hiw-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== VÉLEMÉNYEK ===== */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.08);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), #3b82f6);
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== AFFILIATE SZEKCIÓ ===== */
.affiliate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(0, 240, 255, 0.05));
}

.affiliate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.affiliate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.affiliate-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.affiliate-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.affiliate-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.affiliate-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.affiliate-cta {
    text-align: center;
    margin-top: 40px;
}

.affiliate-cta .btn {
    font-size: 1.2rem;
    padding: 16px 40px;
}

/* ===== RESZPONZÍV ===== */
@media (max-width: 1024px) {
    .tab-btn {
        flex: 1 1 calc(100% / 4);
    }
    .hiw-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; text-align: center; }
    .slider { height: 300px; }
    .slider-btn { width: 35px; height: 35px; font-size: 1.2rem; }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    .slide-caption { font-size: 0.8rem; padding: 8px 15px; bottom: 40px; }
    .showcase-content { padding: 25px; min-height: auto; }
    .tab-header h3 { font-size: 1.5rem; }
    .tab-hook { font-size: 1rem; }
    .tab-image-wrapper { max-height: 250px; }
    .tab-features { grid-template-columns: 1fr; }
    .tab-btn {
        flex: 1 1 calc(100% / 3);
        font-size: 0.85rem;
    }
    .subscribe-box { padding: 25px; }
    .form-row { flex-direction: column; }
    .subscribe-form input { min-width: 100%; }
    .pricing-card { padding: 40px 20px; }
    .hiw-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .affiliate-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        flex: 1 1 calc(100% / 2);
        font-size: 0.8rem;
        padding: 14px 5px;
    }
    .tab-header h3 { font-size: 1.3rem; }
    .tab-hook { font-size: 0.9rem; }
    .tab-image-wrapper { max-height: 200px; }
}
