/* ==========================================================================
   Growy – Preisseite (preise.html)
   Pricing-Karten, FAQ
   ========================================================================== */

/* --- PRICING SECTION --- */
.pricing { padding: 80px 0; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h1 { font-size: 3rem; letter-spacing: -1px; }
.pricing-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--accent-green); }
.pricing-card.featured {
    border-color: var(--accent-green);
    box-shadow: 0 0 60px rgba(74, 222, 128, 0.1);
    position: relative;
}
.pricing-card .badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.plan-name { font-size: 1.1rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .amount { font-size: 3rem; font-weight: 700; color: var(--text-main); letter-spacing: -1px; }
.plan-price .currency { font-size: 1.3rem; font-weight: 600; color: var(--text-muted); }
.plan-period { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.plan-savings { color: var(--accent-green); font-size: 0.85rem; font-weight: 600; margin-bottom: 28px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 32px 0; flex: 1; }
.plan-features li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features svg { width: 18px; height: 18px; fill: var(--accent-green); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; }

/* --- FAQ --- */
.faq { padding: 80px 0; border-top: 1px solid var(--border-color); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin-bottom: 16px;
}
.faq-item h3 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; font-size: 0.95rem; }

/* --- CTA --- */
.cta { padding: 80px 0; text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem auto; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .pricing-header h1 { font-size: 2.2rem; }
}