/* Version: 1.1.7 
   Description: Konsolidiertes CSS für handwerkmedien (Pixlwerk Bento Design)
*/

:root {
    /* Colors & Branding */
    --brand-pink: #E60064;
    --brand-pink-light: #ff1a80;
    --brand-cyan: #00b4d8;
    --hwm-pink: var(--brand-pink); /* Alias für Kompatibilität */
    
    /* Backgrounds */
    --bg-body: rgb(5,6,7);
    --bg-card: #0a0a0a;
    --bento-bg: #0a0a0a; /* Alias */
    
    /* Text */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dimmed: rgba(255, 255, 255, 0.5);
    
    /* UI Elements */
    --border-color: rgba(255, 255, 255, 0.1);
    --bento-border: var(--border-color); /* Alias */
    --bento-radius: 24px;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, var(--brand-pink-light) 0%, var(--brand-pink) 100%);
    --hwm-pink-gradient: var(--gradient-pink); /* Alias */
}

/* --- Global & Typography --- */
body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.gradient-text, .hm-gradient-text {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 900;
}

.text-pink { color: var(--brand-pink) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-dimmed { color: var(--text-dimmed) !important; }

/* --- Bento Cards --- */
.bento-card, .hm-bento-card {
    background: var(--bg-card);
    border-radius: var(--bento-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.bento-card:hover, .hm-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 0, 100, 0.15);
    border-color: rgba(230, 0, 100, 0.4);
    z-index: 2;
}

.bento-card.highlight { border: 2px solid var(--brand-pink); }

/* --- FAQ & Accordion System --- */
#faq {
    background-color: var(--bg-body); /* Falls P3 Support gewünscht: color(display-p3 0.02 0.023 0.027) */
    padding: 8rem 0;
}

.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--bg-card) !important;
    color: #ffffff !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    padding: 1.5rem;
    font-weight: 800;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-pink) !important;
    border-color: var(--brand-pink) !important;
}

/* Icon Inversion für Darkmode Pfeile */
.accordion-button::after { filter: invert(1); }
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E60064'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: none;
}

.accordion-collapse {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--border-color);
    border-top: none;
    margin-top: -5px;
}

.accordion-body {
    color: var(--text-muted);
    line-height: 1.8;
    padding: 1.5rem;
}

/* --- Buttons --- */
.btn-pix {
    background: var(--gradient-pink);
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.4);
}

/* --- Header & Badges --- */
.faq-badge, .faq-section-badge, .hm-section-badge {			
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(230, 0, 100, 0.1);
    border: 1px solid rgba(230, 0, 100, 0.4);
    border-radius: 50px;
    color: var(--brand-pink);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.faq-display-title, .hm-display-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.faq-subtitle-lead, .hm-subtitle-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- Special Components --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comp-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta-bento-box {
    background: var(--gradient-pink);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none !important;
    margin-top: 2rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-bento-box:hover { transform: scale(1.02); }

.cta-phone-btn {
    background: #ffffff;
    color: var(--brand-pink);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes phone-shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50% { transform: rotate(-15deg); }
    20%, 40%, 60% { transform: rotate(15deg); }
}
.fa-phone-alt { animation: phone-shake 2s infinite; }

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .cta-bento-box { flex-direction: column; text-align: center; gap: 1.5rem; }
    .faq-display-title, .hm-display-title { font-size: 2.8rem; }
    .comparison-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}