/* --- SOLO PRICING STYLE (STANDALONE) --- */

/* 1. ZÁKLADNÝ RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.pricing-page {
    background-color: #0d001a;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4 { font-family: 'Antonio', sans-serif; text-transform: uppercase; margin: 0; }
ul { list-style: none; padding: 0; }
a { text-decoration: none; }

/* 2. TEXTÚRA */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none; z-index: 0; opacity: 0.4;
}

/* 3. HEADER */
.pricing-header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 9999;
    background: rgba(13, 0, 26, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: 'Antonio', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.close-btn {
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.close-btn:hover { background: #fff; color: #000; }

/* 4. HERO */
.pricing-hero {
    text-align: center;
    padding: 140px 20px 50px 20px;
    position: relative; z-index: 1;
}

.p-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.p-tag {
    color: #9eeb00;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
    font-size: 0.9rem;
}

.p-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 25px;
    color: #fff;
}

.lime-text { color: #9eeb00; }

.p-desc {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 5. GRID / FLEX LAYOUT */
.grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 80px;
    position: relative; z-index: 1;
}

/* 6. KARTY */
.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
}

.price-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #9eeb00;
    transform: translateY(-5px);
}

.price-card.popular {
    background: #1A0033;
    border: 2px solid #9eeb00;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.price-card.popular:hover { transform: scale(1.05) translateY(-5px); }

.pop-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #9eeb00; color: #000;
    padding: 4px 12px; border-radius: 10px;
    font-weight: 800; font-size: 0.75rem; letter-spacing: 1px;
}

.pc-header {
    text-align: center; margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px;
}
.pc-header h3 { font-size: 2.2rem; margin-bottom: 5px; color: #fff; }
.pc-sub { color: #888; font-size: 0.9rem; }

.pc-price {
    text-align: center;
    font-family: 'Antonio', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
}
.pc-price .currency { font-size: 1.5rem; vertical-align: super; color: #9eeb00; }
.pc-price .vat {
    display: block; font-size: 0.9rem; font-family: 'Manrope';
    font-weight: 400; color: #666; margin-top: -5px;
}

.pc-features { list-style: none; margin-bottom: 30px; flex-grow: 1; text-align: left; }
.pc-features li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 12px; font-size: 0.95rem; color: #ccc;
    line-height: 1.4;
}
.icon { min-width: 20px; font-weight: bold; }
.icon.check { color: #9eeb00; }
.icon.cross { color: #ff4d4d; }
.dimmed { opacity: 0.5; text-decoration: line-through; }
strong { color: #fff; }

.card-footer { margin-top: auto; }

.btn-price-outline {
    display: block; width: 100%; text-align: center; padding: 15px;
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-weight: 700; text-transform: uppercase; transition: 0.3s;
}
.btn-price-outline:hover { background: #fff; color: #000; }

.btn-price-lime {
    display: block; width: 100%; text-align: center; padding: 15px;
    border-radius: 50px; background: #9eeb00; color: #000;
    font-weight: 800; font-family: 'Antonio'; font-size: 1.2rem; transition: 0.3s;
}
.btn-price-lime:hover { box-shadow: 0 0 25px rgba(158, 235, 0, 0.4); }

/* 7. FAQ SEKCIA */
.faq-section {
    padding: 60px 20px;
    margin-top: 50px;
    position: relative; z-index: 1;
}

.faq-title {
    text-align: center; margin-bottom: 40px; color: #9eeb00; font-size: 2.5rem;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover { color: #9eeb00; }

.icon-plus {
    font-size: 1.5rem;
    color: #9eeb00;
    transition: 0.3s;
}

/* Otvorený stav */
.faq-item.active .icon-plus { transform: rotate(45deg); }
.faq-item.active .faq-question { color: #9eeb00; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Dosť miesta pre text */
    padding-bottom: 20px;
}

.faq-answer p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 8. FOOTER */
footer {
    text-align: center; padding: 40px 20px;
    color: #555; background: #0d001a;
    border-top: 1px solid #222; position: relative; z-index: 1;
}
.back-link {
    color: #666; font-weight: 700; font-size: 0.9rem;
    transition: 0.3s; display: inline-block; margin-top: 10px;
}
.back-link:hover { color: #9eeb00; }

/* 9. RESPONSIVITA */
@media (max-width: 1000px) {
    .price-card.popular { transform: scale(1); margin: 0; box-shadow: none; border-color: #9eeb00; }
    .price-card.popular:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .pricing-hero { padding-top: 100px; }
    .grid-wrapper { flex-direction: column; align-items: center; }
    .price-card { width: 100%; max-width: 100%; margin-bottom: 20px; }
    .p-headline { font-size: 3rem; }
}