/* ============================================================================
   Preise (Preismodelle & Kalkulator)
   Blau/Orange Theme – navy als Primärfarbe, orange als Akzent
   ============================================================================ */

:root {
    --preise-primary:        #1e3a5f; /* Navy */
    --preise-primary-light:  #2d5183;
    --preise-primary-dark:   #132843;
    --preise-accent:         #e67e22; /* Orange (CTA) */
    --preise-accent-light:   #f39c4d;
    --preise-accent-dark:    #c96513;
    --preise-accent-bg:      rgba(230, 126, 34, 0.10);
    --preise-accent-shadow:  0 4px 14px rgba(230, 126, 34, 0.30);
    --preise-accent-shadow-hover: 0 6px 20px rgba(230, 126, 34, 0.40);
    --preise-blue-bg:        #f0f4f8;
    --preise-bg-soft:        #f9fafb;
    --preise-gray:           #6c757d;
    --preise-dark:           #1a2332;
    --preise-border:         #e5e7eb;
}

/* ============================================
   SECTION LABEL (orange auf weiß)
============================================ */
.preise-pricing .section-label,
.preise-calculator .section-label,
.preise-offer-cta .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--preise-accent-bg);
    color: var(--preise-accent-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ============================================
   HERO (Navy-Gradient mit Orange-Akzent)
============================================ */
.preise-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--preise-primary) 0%, var(--preise-primary-light) 100%);
    color: #fff;
    text-align: center;
}

.preise-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(230, 126, 34, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.preise-hero .container {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.preise-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--preise-accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.preise-hero h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #fff;
}

.preise-hero h1 span {
    color: var(--preise-accent);
}

.preise-hero-subtitle {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    opacity: 0.9;
    margin: 0 0 36px;
    font-weight: 300;
}

.preise-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.preise-hero .btn-primary {
    background: var(--preise-accent);
    color: #fff;
    box-shadow: var(--preise-accent-shadow);
}

.preise-hero .btn-primary:hover {
    background: var(--preise-accent-light);
    color: #fff;
    box-shadow: var(--preise-accent-shadow-hover);
    transform: translateY(-2px);
}

.preise-hero .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.preise-hero .btn-secondary:hover {
    background: #fff;
    color: var(--preise-primary);
    border-color: #fff;
}

/* ============================================
   PREISMODELLE (4 Karten nebeneinander)
============================================ */
.preise-pricing {
    padding: var(--section-padding, 80px 0);
    background: var(--preise-bg-soft);
}

.preise-pricing .section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.preise-pricing .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--preise-dark);
    margin-bottom: 16px;
}

.preise-pricing .section-subtitle {
    font-size: 17px;
    color: var(--preise-gray);
    line-height: 1.6;
}

.preise-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

.preise-pricing-card {
    background: #fff;
    border: 1px solid var(--preise-border);
    border-radius: 18px;
    padding: 32px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.preise-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.10);
    transform: translateY(-4px);
}

.preise-pricing-card--featured {
    border-color: var(--preise-accent);
    border-width: 2px;
    box-shadow: var(--preise-accent-shadow);
    transform: translateY(-6px);
}

.preise-pricing-card--featured:hover {
    box-shadow: 0 16px 48px rgba(230, 126, 34, 0.32);
    transform: translateY(-10px);
}

/* Hybrid: Preis/Leistungs-Sieger — Navy-Akzent, parallel zu Full (aber distinkt) */
.preise-pricing-card--value {
    border-color: var(--preise-primary);
    border-width: 2px;
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.22);
    transform: translateY(-6px);
}

.preise-pricing-card--value:hover {
    box-shadow: 0 16px 48px rgba(30, 58, 95, 0.30);
    transform: translateY(-10px);
}

.pricing-popular-badge,
.pricing-value-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pricing-popular-badge {
    background: var(--preise-accent);
}

.pricing-value-badge {
    background: var(--preise-primary);
    box-shadow: 0 4px 10px rgba(30, 58, 95, 0.28);
}

/* Hybrid-Card: Tier-Badge auch in Navy färben für Konsistenz */
.preise-pricing-card--value .pricing-tier-badge {
    color: var(--preise-primary);
}

.preise-pricing-card .pricing-tier-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--preise-accent);
    margin-bottom: 6px;
}

.preise-pricing-card .pricing-tier-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--preise-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}

.preise-pricing-card .pricing-tier-tagline {
    font-size: 13px;
    color: var(--preise-gray);
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 60px;
}

.preise-pricing-card .pricing-tier-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--preise-primary);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--preise-border);
}

.preise-pricing-card .pricing-tier-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--preise-gray);
    display: block;
    margin-top: 4px;
}

/* Feature-Liste */
.preise-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.preise-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--preise-dark);
    line-height: 1.5;
}

.preise-feature-list li i,
.preise-feature-list li svg {
    color: var(--preise-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Hybrid (Value-Tier): Check-Icons in Navy für Konsistenz mit dem Theme */
.preise-pricing-card--value .preise-feature-list li i,
.preise-pricing-card--value .preise-feature-list li svg {
    color: var(--preise-primary);
}

.preise-pricing-card .pricing-cta {
    margin-top: auto;
}

.preise-pricing-card .pricing-cta .btn-primary,
.preise-pricing-card .pricing-cta .btn-secondary,
.preise-pricing-card .pricing-cta .btn-outline {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.preise-pricing-card .pricing-cta .btn-primary {
    background: var(--preise-accent);
    color: #fff;
    box-shadow: var(--preise-accent-shadow);
}

.preise-pricing-card .pricing-cta .btn-primary:hover {
    background: var(--preise-accent-light);
    color: #fff;
    box-shadow: var(--preise-accent-shadow-hover);
    transform: translateY(-2px);
}

.preise-pricing-card .pricing-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--preise-primary);
    color: var(--preise-primary);
}

.preise-pricing-card .pricing-cta .btn-outline:hover {
    background: var(--preise-primary);
    color: #fff;
}

.preise-pricing-card .pricing-calc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--preise-primary);
    text-decoration: none;
    transition: color 0.15s;
}

.preise-pricing-card .pricing-calc-link:hover {
    color: var(--preise-accent);
}

.preise-pricing-card .pricing-trust-note {
    font-size: 11px;
    color: var(--preise-gray);
    text-align: center;
    margin: 10px 0 0;
}

/* Besetzungsgarantie-Callout */
.preise-pricing-card .pricing-guarantee {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: var(--preise-accent-bg);
    border: 1px solid rgba(230, 126, 34, 0.30);
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.preise-pricing-card .pricing-guarantee-icon {
    color: var(--preise-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.preise-pricing-card .pricing-guarantee-text {
    flex: 1;
}

.preise-pricing-card .pricing-guarantee-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--preise-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.preise-pricing-card .pricing-guarantee-title .pricing-optional-pill {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--preise-accent-dark);
    background: rgba(230, 126, 34, 0.18);
    padding: 1px 6px;
    border-radius: 20px;
}

.preise-pricing-card .pricing-guarantee-desc {
    font-size: 11.5px;
    color: var(--preise-gray);
    line-height: 1.45;
    margin: 0;
}

/* ============================================
   PREISRECHNER
============================================ */
.preise-calculator {
    padding: var(--section-padding, 80px 0);
    background: var(--preise-blue-bg);
}

.preise-calculator .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
}

.preise-calculator .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--preise-dark);
    margin-bottom: 16px;
}

.preise-calculator .section-subtitle {
    font-size: 17px;
    color: var(--preise-gray);
    line-height: 1.6;
}

.preise-calculator .calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.preise-calculator .calc-inputs-panel,
.preise-calculator .calc-result-panel {
    background: #fff;
    border: 1px solid var(--preise-border);
    border-radius: 18px;
    padding: 32px 28px;
}

.preise-calculator .calc-result-panel {
    background: linear-gradient(135deg, var(--preise-primary) 0%, var(--preise-primary-dark) 100%);
    border-color: var(--preise-primary);
    color: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eingabe-Felder */
.preise-calculator .calc-field {
    margin-bottom: 24px;
}

.preise-calculator .calc-field:last-child {
    margin-bottom: 0;
}

.preise-calculator .calc-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--preise-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.preise-calculator .calc-field-hint {
    font-size: 12px;
    color: var(--preise-gray);
    margin: 8px 0 0;
    line-height: 1.5;
}

.preise-calculator .calc-field-hint strong {
    color: var(--preise-primary);
    font-weight: 700;
}

/* Service-Level-Tabs */
.preise-calculator .calc-level-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: var(--preise-blue-bg);
    border-radius: 12px;
    padding: 4px;
}

.preise-calculator .calc-tab {
    background: transparent;
    border: none;
    border-radius: 9px;
    padding: 9px 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--preise-gray);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.preise-calculator .calc-tab.active {
    background: var(--preise-accent);
    color: #fff;
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.35);
}

.preise-calculator .calc-tab:not(.active):hover {
    background: rgba(30, 58, 95, 0.07);
    color: var(--preise-primary);
}

/* Stepper */
.preise-calculator .calc-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.preise-calculator .calc-step-btn {
    background: transparent;
    border: none;
    padding: 0 16px;
    font-size: 20px;
    color: var(--preise-gray);
    cursor: pointer;
    height: 46px;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.preise-calculator .calc-step-btn:hover {
    background: var(--preise-accent-bg);
    color: var(--preise-accent-dark);
}

.preise-calculator .calc-stepper input[type="number"] {
    flex: 1;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--preise-primary);
    padding: 0 8px;
    height: 46px;
    -moz-appearance: textfield;
    background: #fff;
}

.preise-calculator .calc-stepper input[type="number"]::-webkit-inner-spin-button,
.preise-calculator .calc-stepper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Stundensatz-Eingabe */
.preise-calculator .calc-rate-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.preise-calculator .calc-rate-wrapper input[type="number"] {
    flex: 1;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: var(--preise-primary);
    padding: 12px 16px;
    -moz-appearance: textfield;
    background: transparent;
}

.preise-calculator .calc-rate-wrapper input[type="number"]::-webkit-inner-spin-button,
.preise-calculator .calc-rate-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.preise-calculator .calc-rate-unit {
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--preise-gray);
    background: #f3f4f6;
    border-left: 1px solid #d1d5db;
    height: 46px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Ergebnis-Bereich — nur aktiver State sichtbar (hidden-Attribut respektieren) */
.preise-calculator .calc-result-body[hidden] {
    display: none;
}

.preise-calculator .calc-result-body:not([hidden]) {
    display: flex;
    flex-direction: column;
}

.preise-calculator .calc-result-subtitle {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--preise-accent);
    margin: 0 0 18px;
}

/* Free-Variante */
.preise-calculator .calc-result-free {
    text-align: center;
}

.preise-calculator .calc-result-free .calc-result-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--preise-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.preise-calculator .calc-result-free .calc-result-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
}

/* Breakdown-Tabelle */
.preise-calculator .calc-breakdown {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preise-calculator .calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.preise-calculator .calc-breakdown-row:last-child {
    border-bottom: none;
}

.preise-calculator .calc-breakdown-row small {
    font-size: 11px;
    opacity: 0.7;
}

.preise-calculator .calc-breakdown-row > span:last-child {
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.preise-calculator .calc-breakdown-sub {
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.preise-calculator .calc-breakdown-sub > span:first-child {
    color: #fff;
}

/* Gesamt */
.preise-calculator .calc-result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.preise-calculator .calc-total-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--preise-accent);
    white-space: nowrap;
}

/* Kontakt-Ergebnis (Full / Enterprise) */
.preise-calculator .calc-result-contact {
    text-align: center;
    padding: 12px 0;
}

.preise-calculator .calc-contact-icon {
    color: var(--preise-accent);
    margin-bottom: 14px;
}

.preise-calculator .calc-result-contact .calc-result-subtitle {
    text-align: center;
}

.preise-calculator .calc-result-note {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 22px;
}

.preise-calculator .calc-result-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 22px;
    border-radius: var(--radius-md);
    background: var(--preise-accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--preise-accent-shadow);
    margin-top: 4px;
}

.preise-calculator .calc-result-cta:hover {
    background: var(--preise-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--preise-accent-shadow-hover);
    color: #fff;
}

.preise-calculator .calc-hybrid-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 14px 0 0;
    text-align: left;
}

.preise-calculator .calc-hybrid-note strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.preise-calculator .calc-min-booking {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--preise-accent);
    background: rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.30);
    border-radius: 20px;
    padding: 5px 12px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.preise-calculator .calc-min-booking strong {
    font-weight: 700;
}

/* ============================================
   ANGEBOT-CTA (Orange-Akzent auf Navy)
============================================ */
.preise-offer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--preise-primary) 0%, var(--preise-primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.preise-offer-cta .container {
    max-width: 760px;
}

.preise-offer-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.preise-offer-cta h2 span {
    color: var(--preise-accent);
}

.preise-offer-cta > .container > p {
    font-size: 17px;
    opacity: 0.85;
    margin: 0 auto 36px;
    max-width: 620px;
    line-height: 1.65;
}

.preise-offer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.preise-offer-cta .btn-primary {
    background: var(--preise-accent);
    color: #fff;
    box-shadow: var(--preise-accent-shadow);
}

.preise-offer-cta .btn-primary:hover {
    background: var(--preise-accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--preise-accent-shadow-hover);
}

.preise-offer-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.preise-offer-cta .btn-secondary:hover {
    background: #fff;
    color: var(--preise-primary);
    border-color: #fff;
}

.preise-offer-cta .guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.preise-offer-cta .guarantee-badge i,
.preise-offer-cta .guarantee-badge svg {
    color: var(--preise-accent);
}

/* ============================================
   FAQ SECTION (Override für orange Akzente)
============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--preise-bg-soft);
}

.faq-section .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.faq-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--preise-accent-bg);
    color: var(--preise-accent-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.faq-section .section-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--preise-dark);
}

.faq-section .section-subtitle {
    font-size: 17px;
    color: var(--preise-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--preise-border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--preise-primary);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--preise-bg-soft);
}

.faq-question i,
.faq-question svg {
    color: var(--preise-accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--preise-gray);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer[hidden] {
    display: none;
}

.faq-more-link {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--preise-border);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
    .preise-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        gap: 24px;
    }

    .preise-pricing-card--featured {
        transform: none;
    }

    .preise-pricing-card--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 992px) {
    .preise-hero {
        padding: 120px 0 80px;
    }

    .preise-calculator .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .preise-calculator .calc-result-panel {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .preise-hero {
        padding: 100px 0 60px;
    }

    .preise-hero-ctas {
        flex-direction: column;
    }

    .preise-hero-ctas .btn-primary,
    .preise-hero-ctas .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .preise-calculator .calc-level-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .preise-offer-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .preise-offer-cta-buttons .btn-primary,
    .preise-offer-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .preise-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        gap: 20px;
    }

    .preise-pricing-card {
        padding: 28px 22px;
    }

    .preise-pricing-card .pricing-tier-tagline {
        min-height: auto;
    }
}
