/* --- 1. DESIGN SYSTEM VÁLTOZÓK --- */
:root {
    --bg: #000000;
    --bg-alt: #0a0a0a;
    --accent: #06b6d4;
    --accent-glow: rgba(139, 92, 246, 0.4);
    --text: #ffffff;
    --text-dim: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(90deg, #9333ea, #0891b2);
    --nav-h: 80px;
}

/* --- 2. ALAPOK --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none !important;
}

/* --- 3. NAVIGÁCIÓ --- */
/* --- NAVBAR MODERNIZÁLÁS --- */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* Kicsit vékonyabb, elegánsabb */
    z-index: 9999;
    background: #0a0a0a;
    /* Fix mélyfekete, nem lesz gond a fehér szekciónál */
    border-bottom: 1px solid #1f1f1f;
    /* Finom elválasztó */
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Ha görgetsz, kaphat egy kis extra árnyékot */
.navbar-modern.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* LOGO */
.nav-logo {
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    letter-spacing: -1px;
    z-index: 10001;
}

.nav-logo span {
    color: #06b6d4;
}

/* WRAPPER & LIST */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-main-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: #dfdfdfff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #fff;
}

/* Aktív csík hoverkor */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

/* CTA GOMB */
.btn-nav-primary {
    position: relative;
    background: #000;
    /* Fix fekete alap */
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: all 0.3s;
    z-index: 1;
}

/* Ez a réteg adja a színátmenetes keretet */
.btn-nav-primary::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* 1px-es keret vastagság */
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border-radius: 9px;
    /* 1-gyel több, mint a gombé, hogy kövesse az ívet */
    z-index: -1;
    transition: opacity 0.3s;
}

/* A ragyogás (shadow) külön rétegen, hogy ne mossa el a gomb szélét */
.btn-nav-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
}

.btn-nav-primary:hover::before {
    filter: brightness(1.3);
    /* Hoverre a keret is beizzik */
}

/* MOBIL TOGGLE JAVÍTÁSA */
/* MOBIL TOGGLE - MINIMALISTA */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
}

.mobile-toggle .bar {
    width: 30px;
    height: 2px;
    background: #06b6d4; /* A márkaszíned */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.mobile-toggle .bar:nth-child(2) {
    margin: 6px 0; /* Ez adja a távolságot a csíkok között */
}

/* MOBIL NÉZET - PRÉMIUM STÍLUS */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        /* Fekete alap, de egy kis átlátszósággal és blur effektel */
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 10000;
    }

    .nav-main-list {
        flex-direction: column;

        align-items: center;

        gap: 30px;
    }

    .nav-item {
        font-size: 24px;
    }

    .nav-wrapper.active {
        right: 0;
    }

    /* Animáció: Hamburger -> X */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: #fff;
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: #fff;
    }
}

/* --- 4. GOMBOK --- */
.btn-primary {
    background: var(--gradient);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent);
}

/* --- 5. HERO --- */
/* --- HERO MODERNIZÁLÁS --- */
.hero-modern {
    position: relative;
    padding: 200px 0 120px;
    background-color: #000;
    overflow: hidden;
    text-align: center;
}

/* A háttérben lévő fényeffekt */
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.2) 0%, rgba(8, 145, 178, 0.05) 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-main-title {
    /* A minimumot le kell vinni 30px-re, hogy a leghosszabb szó is elférjen */
    font-size: clamp(30px, 7vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;

    /* EZEK FOGJÁK MEGGÁTOLNI A KILÓGÁST: */
    inline-size: 100%; /* Biztosítja, hogy ne legyen szélesebb a szülőnél */
    overflow-wrap: anywhere; /* Ha nagyon muszáj, bárhol eltöri a szót (végső mentőöv) */
    letter-spacing: -0.02em; /* Kicsit összébb húzza a betűket, így több fér el egy sorban */
    hyphens: auto; /* Ha a böngésző támogatja, elválasztja a szót */
}

.text-gradient-gold {
    background: linear-gradient(to right, #a78bfa, #ec4899, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.highlight {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #8b5cf6;
}

/* AKCIÓ GOMBOK */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-hero-primary {
    background: linear-gradient(90deg, #9333ea, #0891b2);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* MODERNEBB ZÁSZLÓK */
.hero-lang-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lang-text {
    font-size: 12px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.zaszlok-modern {
    display: flex;
    gap: 20px;
}

.lang-btn-modern {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.lang-btn-modern img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /* Kör alakú zászlók */
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.lang-name {
    font-size: 10px;
    color: #64748b;
    font-weight: 700;
}

.lang-btn-modern:hover {
    transform: translateY(-5px);
}

/* ANIMÁCIÓ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBIL */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-modern {
        padding-top: 150px;
    }
}

/* --- 6. MIÉRT MI (FEATURES) --- */
/* --- MIÉRT MI MODERNIZÁLÁS --- */
.features-modern {
    padding: 120px 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.modern-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-title {
    font-size: 48px;
    font-weight: 900;
    margin: 20px 0;
    color: #eeeeee;
    letter-spacing: -1px;
}

.blue-grad {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-subtitle {
    color: #64748b;
    font-size: 18px;
}

/* KÁRTYA GRID */
.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-glass-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 40px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.feature-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* IKON STÍLUSOK */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
}

/* Színvariációk az ikonoknak */
.purple {
    background: #faf5ff;
    color: #a855f7;
}

.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.pink {
    background: #fff1f2;
    color: #f43f5e;
}

.feature-glass-card:hover .icon-wrapper.purple {
    background: #a855f7;
    color: #fff;
}

.feature-glass-card:hover .icon-wrapper.blue {
    background: #3b82f6;
    color: #fff;
}

.feature-glass-card:hover .icon-wrapper.pink {
    background: #f43f5e;
    color: #fff;
}

.card-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.card-text p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* MOBIL FIX */
@media (max-width: 768px) {
    .modern-title {
        font-size: 36px;
    }

    .feature-glass-card {
        padding: 30px;
    }
}

/* --- 7. PRICING --- */
/* PRICING PRÉMIUM STÍLUS */
.pricing-premium {
    padding: 120px 0;
    background: #000;
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-premium {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

.text-grad-purple {
    background: linear-gradient(90deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-sub {
    color: #64748b;
    margin-top: 15px;
}

/* GRID */
.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

/* KÁRTYA ALAP */
.p-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 50px 40px;
    border-radius: 35px;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.p-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

/* FEATURED KÁRTYA (KIEMELT) */
.p-featured {
    border: 2px solid #8b5cf6;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
    z-index: 10;
}

.p-featured:hover {
    transform: scale(1.07) translateY(-5px);
    border-color: #a78bfa;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SZÖVEGEK */
.p-card-header h3 {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.p-amount {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
}

.p-amount small {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.save-tag {
    display: inline-block;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* LISTA */
.p-features {
    list-style: none;
    margin: 40px 0;
    flex-grow: 1;
}

.p-features li {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-features li span {
    color: #8b5cf6;
    font-weight: 900;
}

/* GOMBOK */
.btn-p-primary {
    background: #8b5cf6;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-p-primary:hover {
    background: #a78bfa;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5);
}

.btn-p-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-p-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* MOBIL */
@media (max-width: 991px) {
    .p-featured {
        transform: scale(1);
    }

    .p-featured:hover {
        transform: translateY(-5px);
    }

    .pricing-grid-premium {
        gap: 50px;
    }
}

/* --- 8. USAGE (HASZNÁLAT) --- */
/* USAGE MODERNIZÁLÁS */
/* FEHÉR SZEKCIÓ SPECIFIKUS */
.usage-white {
    padding: 120px 0;
    background: #ffffff;
    color: #111;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-dark {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

.text-blue-accent {
    color: #2563eb;
    /* Professzionális kék */
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #2563eb;
    margin: 15px auto;
    border-radius: 10px;
}

/* KÁRTYA DESIGN */
.usage-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.usage-step-card {
    background: #f8fafc;
    /* Nagyon halvány szürke */
    border: 1px solid #e2e8f0;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.usage-step-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.usage-step-card--wide {
    grid-column: span 2;
}

/* NAGY VIZUÁLIS SZÁMOK */
.usage-step-num-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.05);
    /* Halvány kék árnyék szám */
    user-select: none;
    z-index: 1;
}

.usage-step-content {
    position: relative;
    z-index: 2;
}

.usage-step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.usage-step-content p {
    color: #64748b;
    max-width: 400px;
    line-height: 1.6;
}

/* TERMINÁL A FEHÉR SZEKCIÓBAN */
.usage-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 5;
    position: relative;
}

.terminal-bar {
    background: #161b22;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Széthúzza a pöttyöket és a gombot */
    border-bottom: 1px solid #30363d;
}

/* A fájlnév maradjon középen vagy balra */
.terminal-filename {
    color: #8b949e;
    font-size: 0.7rem;
    font-family: monospace;
    margin-right: auto;
    margin-left: 15px;
}

.copy-btn {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a855f7;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.copy-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

.copy-icon {
    width: 12px;
    height: 12px;
}

.code-body {
    padding: 20px;
    background: #0d1117;
    overflow-x: auto;
    /* Ha túl hosszú a kód, görgethető legyen */
}

.code-content {
    margin: 0;
    white-space: pre;
    /* Megőrzi a formázást */
}

/* A kód tartalma legyen világos szürke/fehér */
/* Alapszín (a szöveg többi része) */
.code-content code {
    color: #abb2bf;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
}

/* HTML Tag-ek (script) */
.t-blue {
    color: #61afef;
}

/* Attribútumok (src, data-api) */
.t-purple {
    color: #d55fde;
}

/* Értékek / Idézőjelek (fájlnév, kulcs) */
.t-green {
    color: #98c379;
}

/* Kacsacsőrök és jelek (<, >, =, /) */
.t-gray {
    color: #5c6370;
}

/* Kiemelés (opcionális, ha villogni akarsz vele) */
.t-orange {
    color: #d19a66;
}

/* A háttér és a szöveg kontrasztja */
.code-body {
    background: #0d1117;
    /* Sötétkék/Fekete háttér */
    padding: 20px;
    border-radius: 0 0 12px 12px;
    overflow-x: auto;
}

/* Ha használsz pre taget is */
.code-content {
    margin: 0;
    background: transparent;
    color: #c9d1d9;
}

/* MOBIL */
@media (max-width: 768px) {
    .usage-steps-wrapper {
        grid-template-columns: 1fr;
    }

    .usage-step-card--wide {
        grid-column: span 1;
    }

    .usage-flex-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .usage-step-num-bg {
        font-size: 80px;
    }
}

/* --- 9. MEGRENDELÉS (FORM) --- */
/* --- ORDER SECTION MODERNIZÁLÁS --- */
.order-premium {
    padding: 120px 0;
    background: radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.08), transparent 40%);
}

.order-wrapper-glass {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.order-header {
    text-align: center;
    margin-bottom: 50px;
}

.order-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.text-glow-purple {
    color: #a78bfa;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.3);
}

.order-subtitle {
    color: #64748b;
    margin-top: 10px;
    font-size: 16px;
}

/* CSOMAGVÁLASZTÓ */
.pkg-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.pkg-radio {
    cursor: pointer;
    position: relative;
}

.pkg-radio input {
    position: absolute;
    opacity: 0;
}

.pkg-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pkg-radio input:checked + .pkg-box {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.pkg-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.pkg-name {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.pkg-price {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

/* INPUTOK */
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field-group {
    position: relative;
    margin-bottom: 25px;
}

.field-group label {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: 5px;
}

.field-group input,
.field-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #8b5cf6;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.field-group input:focus ~ .input-focus-line {
    width: 0%;
}

/* BEKÜLDŐ GOMB */
.order-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #9333ea, #0891b2);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    margin-top: 10px;
}

.order-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.btn-icon {
    width: 22px;
    height: 22px;
    transition: 0.3s;
}

.order-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* MOBIL */
@media (max-width: 768px) {
    .order-wrapper-glass {
        padding: 40px 25px;
    }

    .input-row,
    .pkg-selector-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 10. FOOTER --- */
/* --- FOOTER MODERNIZÁLÁS --- */
.footer-premium {
    background-color: #000;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* BRAND COL */
.footer-logo {
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    letter-spacing: -1px;
}

.footer-logo span {
    color: #8b5cf6;
    /* Lila akcentus */
}

.footer-mission {
    font-size: 14px;
    color: #64748b;
    margin-top: 20px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background: #8b5cf6;
    color: #fff;
    border-color: #8b5cf6;
    transform: translateY(-3px);
}

/* NAV COLUMNS */
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 15px;
}

.footer-nav-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-nav-list a:hover {
    color: #8b5cf6;
    padding-left: 5px;
}

/* CONTACT COL */
.footer-address {
    font-style: normal;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.3s;
}

.contact-item:hover {
    color: #8b5cf6;
}

.contact-item .icon {
    color: #8b5cf6;
}

.tax-info {
    margin-top: 25px;
    font-size: 12px;
    color: #475569;
    line-height: 2;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Nagyon vékony, elegáns vonal */
    padding: 30px 0;
    margin-top: 50px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    /* Széthúzza a két szélre */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright {
    color: #64748b;
    /* Tompa szürke */
    font-size: 13px;
    margin: 0;
}

.copyright strong {
    color: #fff;
    /* A név kicsit kiugrik */
}

.footer-developer p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

.footer-developer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-developer a:hover {
    color: #06b6d4;
    /* A logód kékje hoverre */
}

/* Mobilnézet: ne csússzanak szét */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- MOBIL NÉZET --- */
@media (max-width: 991px) {
    .menu-btn {
        display: block;
    }

    .navbar__menu {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 40px;
        transform: translateY(-150%);
        transition: 0.4s;
        border-bottom: 2px solid var(--accent);
    }

    .navbar__menu.active {
        transform: translateY(0);
    }

    .navbar__list {
        flex-direction: column;
        text-align: center;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .package-selector {
        grid-template-columns: 1fr;
    }

    .price-card--featured {
        transform: none;
    }
}

.zaszlok {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
    outline: none;
}

.lang-btn img {
    width: 42px;
    height: 28px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.lang-btn:hover img {
    filter: grayscale(0);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 0 15px var(--accent-glow);
}

.lang-btn:active img {
    transform: scale(0.95);
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    /* 1. A széles kártya ne legyen fix széles, és a belső elemek egymás alá kerüljenek */
    .usage-flex-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .usage-step-card--wide {
        width: 100% !important;
        padding: 20px !important;
    }

    /* 2. A terminál ne nyomja ki a kijelzőt */
    .modern-code-terminal {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        /* Levágja a kilógó részt a sarkoknál */
        display: block;
    }

    /* 3. A kód belső része görgethető legyen, ha nem fér el */
    .code-body {
        overflow-x: auto;
        padding: 15px;
        -webkit-overflow-scrolling: touch;
        /* Sima görgetés iOS-en */
    }

    .code-content {
        white-space: pre;
        /* Ne törje tördelt sorokba a kódot, inkább görgessen */
        font-size: 13px;
        /* Kicsit kisebb betű mobilra */
    }

    /* 4. A fejléc gombjai és szövegei ne csússzanak szét */
    .terminal-bar {
        padding: 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .terminal-filename {
        font-size: 12px;
    }
}

.capabilities-section {
    background-color: #020617;
    /* Mélyfekete */
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.cap-header {
    text-align: center;
    margin-bottom: 70px;
}

.cap-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
}

.cyan-glow {
    color: #06b6d4;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.cap-desc {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cap-card {
    background: linear-gradient(145deg, #111827, #030712);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
}

.cap-card:hover {
    border-color: #06b6d4;
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.1);
}

.cap-icon-box {
    font-size: 32px;
    background: rgba(6, 182, 212, 0.1);
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cap-info h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.cap-info p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.cap-grid-mega {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cap-group {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.group-title {
    color: #06b6d4;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cap-card-small {
    background: rgba(15, 23, 42, 0.5);
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: 0.2s;
}

.cap-card-small:hover {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.05);
}

.cap-card-small span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.cap-card-small small {
    color: #64748b;
    font-size: 12px;
}

.power-features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.power-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

/* Nyelvi kártya kiemelése */
.highlight-cyan {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

/* Memória kártya kiemelése (Arany/Sárga az érték miatt) */
.highlight-gold {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.power-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.power-text h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.power-text p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.power-card:hover {
    transform: scale(1.03);
    background: rgba(15, 23, 42, 1);
}

/* Mobilon egy oszlop */
@media (max-width: 768px) {
    .cap-grid {
        grid-template-columns: 1fr;
    }

    .cap-title {
        font-size: 36px;
    }
}

.legal-alert-section {
    padding: 60px 0;
    background-color: #030712;
}

.legal-alert-card {
    background: linear-gradient(145deg, #1e1b4b, #0f172a);
    /* Mély sötétkék/lila */
    border: 2px solid #eab308;
    /* Figyelmeztető sárga keret */
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(234, 179, 8, 0.1);
}

.alert-badge {
    position: absolute;
    top: 50px;
    right: -57px;
    background-color: #eab308;
    color: #000;
    padding: 8px 40px;
    font-weight: 800;
    font-size: 12px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.alert-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.alert-icon {
    font-size: 60px;
    background: rgba(234, 179, 8, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
}

.alert-text h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.alert-text p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.risk-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.risk-list li {
    color: #f8fafc;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.risk-list li::before {
    content: '✕';
    color: #ef4444;
    /* Piros x */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.alert-footer {
    font-weight: 700;
    color: #eab308 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Mobilra */
@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        text-align: center;
    }

    .alert-icon {
        margin: 0 auto;
    }

    .risk-list li {
        text-align: left;
    }
}

.live-partners {
    padding: 80px 0;
    background: #020617;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    /* Zöld, mert él */
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.domain-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.domain-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.domain-pill:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    transform: translateY(-3px);
}

.domain-pill img {
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.domain-pill span {
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    /* Tech jelleg */
    font-size: 14px;
}

.partner-ticker {
    width: 100%;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.5);
    /* Sötét, áttetsző háttér */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    /* Ez csinálja a fade hatást a széleken */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ticker-title {
    white-space: nowrap;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 20px;
}

.ticker-content {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    /* A sebességet itt állítsd */
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item img {
    width: 16px;
    height: 16px;
    filter: grayscale(0.5);
    /* Kicsit visszafogottabb ikonok */
}

.ticker-item span {
    color: #94a3b8;
    font-size: 14px;
    white-space: nowrap;
    padding-right: 15px;
}

/* A végtelenített mozgás animációja */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Megáll a mozgás, ha rátartod az egeret */
.partner-ticker:hover .ticker-content {
    animation-play-state: paused;
}

.legal-proof {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.proof-label {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
}

.proof-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    text-decoration: none;
    font-size: 13px;
    background: rgba(6, 182, 212, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    transition: 0.3s;
}

.proof-link:hover {
    background: rgba(6, 182, 212, 0.2);
    color: #fff;
}

.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Ez a kulcs: ha nem fér el, törjön új sorba */
    margin-top: 40px;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Megakadályozza, hogy a pipa és a szöveg külön sorba kerüljön */
}

/* MOBIL SPECIFIKUS JAVÍTÁS */
@media (max-width: 768px) {
    .hero-trust-bar {
        flex-direction: column; /* Egymás alá rakjuk őket */
        align-items: flex-start; /* Balra igazítjuk, mobilon ez jobban néz ki */
        max-width: fit-content; /* Hogy középen maradjon a blokk, de a szöveg balra zárt legyen */
        margin-left: auto;
        margin-right: auto;
        gap: 15px;
    }

    .trust-text {
        font-size: 14px; /* Mobilon kicsit finomíthatunk a méreten */
    }
}
.faq-section {
    background: #020617;
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
    padding: 25px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f1f5f9;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #06b6d4;
}

.faq-icon {
    color: #06b6d4;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding-bottom: 25px;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Animáció a kinyitáshoz */
details[open] .faq-icon {
    transform: rotate(45deg);
    color: #f43f5e;
}

/* Egy kis finomítás, hogy ne legyen darabos */
details summary:focus {
    outline: none;
}

.form-feedback {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-feedback.hidden {
    display: none;
    opacity: 0;
}

.form-feedback.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.feedback-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-icon {
    font-size: 1.2rem;
}

.feedback-text {
    font-weight: 500;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* Ez megakadályozza, hogy a fix menü kitakarja a szekciók tetejét */
section {
    scroll-margin-top: 80px; /* Ide írd be a navbarod magasságát */
}

/* --- SEBESSÉG AUDIT SZEKCIÓ --- */
.audit-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.05), transparent 40%);
}

.audit-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.audit-input-group {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 30px auto;
    transition: 0.3s;
}

.audit-input-group:focus-within {
    border-color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.audit-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    outline: none;
}

.btn-audit {
    background: #06b6d4;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-audit:hover {
    background: #22d3ee;
    transform: translateY(-2px);
}

.btn-audit:disabled {
    background: #444;
    cursor: not-allowed;
}

/* KÖRKÖRÖS SCORE MEGJELENÍTÉS */
.audit-results {
    margin-top: 40px;
    animation: fadeIn 0.5s ease;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 150px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease-in-out;
}

.percentage {
    fill: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-anchor: middle;
}

.audit-offer {
    margin-top: 30px;
}

.audit-offer p {
    color: #94a3b8;
    margin-bottom: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBIL JAVÍTÁS */
@media (max-width: 600px) {
    .audit-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    .audit-input {
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .btn-audit {
        width: 100%;
    }
}

/* A teljes konténer elrendezése */
.audit-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Egy-egy oszlop (Mobil vagy Asztali) */
.audit-col {
    flex: 1;
    min-width: 350px; /* Megakadályozza, hogy túl keskeny legyen */
    max-width: 550px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.audit-col h3 {
    color: #06b6d4; /* Cyan szín a címnek */
    margin-bottom: 25px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* A 4 kör elrendezése egy sorban az oszlopon belül */
.score-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.score-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.score-unit span {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    height: 30px; /* Fix magasság, hogy a körök egy vonalba kerüljenek */
    display: flex;
    align-items: center;
}

/* KÖRÖK MÉRETE */
.circular-chart {
    width: 65px; /* Kicsit kisebb, hogy 4 is elférjen kényelmesen */
    height: 65px;
}

/* MOBIL NÉZET - Itt már egymás alá kerülhetnek */
@media (max-width: 768px) {
    .audit-grid-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .audit-col {
        min-width: 100%;
    }

    .score-row-4 {
        grid-template-columns: repeat(2, 1fr); /* Mobilon 2x2-es rács */
        gap: 20px;
    }

    .circular-chart {
        width: 80px; /* Mobilon lehetnek kicsit nagyobbak a 2x2-es rácsban */
        height: 80px;
    }
}

.sr-upsell-card {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(6, 182, 212, 0.3);
    border-radius: 20px;
}

.upsell-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
    margin: 30px 0;
}

.sr-promo-box h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.text-success {
    color: #22c55e;
    font-weight: bold;
}

.sr-cta-text {
    font-size: 18px;
    color: #fff;
    margin: 20px 0;
    font-weight: 600;
}

.sr-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Az arany SR gomb */
.btn-sr-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 50%, #d4af37 100%);
    color: #000 !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    font-size: 14px;
}

.btn-sr-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

@media (max-width: 600px) {
    .sr-button-group {
        flex-direction: column;
    }
}
