/* --- HERO --- */
.price-hero {
    padding: 180px 20px 100px;
    background: radial-gradient(circle at 50% 0%, #2a1b3d 0%, #0f0518 70%);
    text-align: center; color: white;
}
.price-hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.price-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* --- PRICING CARDS --- */
.pricing-section { padding: 0 20px 100px; margin-top: -50px; } /* Trækker kortene lidt op i heroen */
.pricing-grid {
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto;
}

.price-card {
    background: white; border-radius: 24px; padding: 40px; width: 100%; max-width: 400px;
    position: relative; border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: transform 0.3s; display: flex; flex-direction: column;
}

.price-card:hover { transform: translateY(-10px); }

.price-card.popular {
    border: 2px solid #6C63FF;
    box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
    z-index: 10;
}

.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #6C63FF; color: white; padding: 5px 15px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
}

.card-header h3 { font-size: 1.8rem; margin-bottom: 5px; color: #0f0518; }
.card-header p { color: #667; font-size: 0.95rem; margin-bottom: 30px; }

.price-amount { font-size: 3.5rem; font-weight: 800; color: #0f0518; margin-bottom: 10px; }
.price-amount span { font-size: 1rem; color: #667; font-weight: 500; }

.fee-explainer { font-size: 0.9rem; color: #667; margin-bottom: 15px; }

.fee-box {
    background: #f8f9fc; padding: 15px; border-radius: 10px; margin-bottom: 30px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem;
}
.fee-value { font-weight: 700; color: #0f0518; }

.price-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.price-features li { margin-bottom: 12px; font-size: 1rem; color: #333; }

.price-btn {
    display: block; text-align: center; padding: 15px; border-radius: 50px;
    font-weight: 600; text-decoration: none; transition: 0.3s;
}
.price-btn.primary { background: #0f0518; color: white; }
.price-btn.primary:hover { background: #2c1a4d; }
.price-btn.secondary { background: white; color: #0f0518; border: 1px solid #ddd; }
.price-btn.secondary:hover { background: #f4f4f4; }

/* --- CALCULATION VISUAL --- */
.calculation-section { padding: 100px 20px; background: white; text-align: center; }
.calc-container { max-width: 800px; margin: 0 auto; }
.calc-container h2 { font-size: 2.5rem; margin-bottom: 15px; color: #0f0518; }

.math-visual {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin: 60px 0; flex-wrap: wrap;
}
.math-step {
    background: #f8f9fc; padding: 30px; border-radius: 20px; min-width: 180px;
    border: 1px solid #eee; position: relative;
}
.step-circle {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; background: #0f0518; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem;
}
.step-circle.fee { background: #667; }
.step-circle.success { background: #2ecc71; }

.math-step p { font-size: 0.9rem; color: #667; margin-bottom: 10px; }
.math-step h3 { font-size: 2rem; color: #0f0518; }
.green-text { color: #2ecc71 !important; }

.math-operator { font-size: 2rem; color: #ddd; font-weight: 300; }
.calc-note { font-size: 0.9rem; color: #888; font-style: italic; }

/* --- FAQ --- */
.faq-section { padding: 100px 20px; max-width: 800px; margin: 0 auto; }
.faq-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 60px; color: #0f0518; }
.faq-grid { display: grid; gap: 30px; }
.faq-item { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.faq-item h4 { font-size: 1.2rem; margin-bottom: 10px; color: #0f0518; }
.faq-item p { color: #555; line-height: 1.6; }

/* RESPONSIVT */
@media (max-width: 768px) {
    .price-hero h1 { font-size: 2.5rem; }
    .math-visual { flex-direction: column; gap: 40px; }
    .math-operator { transform: rotate(90deg); }
    .pricing-section { margin-top: 0; }
}