/* Preise-spezifische Styles aus preise.html ausgelagert */
:root {
    --accent-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}
.price-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 39, 119, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
}
.price-highlight h3 {
    background: var(--accent-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    font-weight: 800;
}
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}
.price-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.price-card-header {
    background: rgba(219, 39, 119, 0.1);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-card-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.billing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(219, 39, 119, 0.4);
}
.faq-item {
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.faq-item h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
