/* ===== LEISTUNGEN PAGE SPECIFIC STYLES ===== */

/* Hero Services Section */
.hero-services {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.hero-services .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.payment-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: inline-block;
    font-weight: 500;
}

.payment-highlight i {
    margin-right: 0.5rem;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    background: var(--light-color);
}

/* ===== SERVICES ACCORDION ===== */
.services-accordion {
    max-width: 900px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.acc-item {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.acc-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.acc-item.featured {
    border: 2px solid var(--primary-color);
}

.acc-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 0 14px 0 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Accordion Header */
.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.acc-header:hover {
    background: rgba(197, 165, 114, 0.04);
}

.acc-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.acc-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acc-icon.featured-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.acc-icon i {
    font-size: 1.3rem;
    color: white;
}

.acc-title h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
}

.acc-subtitle {
    font-size: 0.85rem;
    color: var(--gray-color);
    display: block;
    margin-top: 3px;
}

.acc-header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.acc-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.acc-arrow {
    font-size: 0.85rem;
    color: var(--gray-color);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.active .acc-arrow {
    transform: rotate(180deg);
}

/* Accordion Body */
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.active .acc-body {
    max-height: 500px;
}

.acc-body-inner {
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
    padding-top: 1.5rem;
}

.acc-desc {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.acc-usecases {
    margin: 0 0 1.5rem;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.08), rgba(197, 165, 114, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(197, 165, 114, 0.15);
}

.acc-usecases-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.35rem;
}

.acc-usecases-note {
    font-size: 0.82rem;
    color: var(--gray-color);
    margin: 0 0 0.85rem;
}

.acc-usecases-list {
    margin: 0;
    padding: 0 0 0 1.25rem;
    list-style: decimal;
    color: var(--gray-color);
    font-size: 0.88rem;
    line-height: 1.65;
}

.acc-usecases-list li {
    margin-bottom: 0.4rem;
    padding-left: 0.35rem;
}

.acc-usecases-list li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.acc-highlight {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1), rgba(197, 165, 114, 0.05));
    border-left: 3px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.acc-highlight i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.acc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.acc-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark-color);
    background: rgba(197, 165, 114, 0.08);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-weight: 500;
}

.acc-features span i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.acc-meta {
    margin-bottom: 1.25rem;
}

.acc-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.acc-tag i {
    font-size: 0.85rem;
}

.acc-actions {
    display: flex;
    gap: 1rem;
}

.acc-actions .btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.88rem;
}

.acc-konfig-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(197, 165, 114, 0.12);
}

.acc-konfig-btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.acc-konfig-btn i {
    font-size: 0.85rem;
}

/* (old detailed card styles removed - now using horizontal cards) */

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.process-step p {
    color: var(--gray-color);
    margin: 0;
}

/* Payment Plan Section */
.payment-plan-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.payment-plan-content {
    margin-top: 2rem;
}

.payment-plan-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.payment-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.payment-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    bottom: 0;
    width: 2px;
    height: 2rem;
    background: rgba(197, 165, 114, 0.3);
}

.payment-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.3);
}

.payment-step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.payment-step-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.payment-step-content p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments for payment plan */
@media (max-width: 768px) {
    .payment-plan-section {
        padding: 3rem 0;
    }
    
    .payment-plan-box {
        padding: 1.5rem;
    }
    
    .payment-step {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .payment-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .payment-step:not(:last-child)::after {
        left: 45px;
    }
    
    .payment-step-content h3 {
        font-size: 1.1rem;
    }
}

/* Extras Section */
.extras-section {
    padding: 4rem 0;
    background: white;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.extra-card {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-3px);
}

.extra-card.free {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.extra-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.extra-card h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.extra-card.free h3 i {
    color: white;
}

.extra-card p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.extra-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.extra-card.free .extra-price {
    color: white;
}


/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

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

.faq-item {
    background: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(197, 165, 114, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(197, 165, 114, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(197, 165, 114, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(197, 165, 114, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-services {
        padding: 100px 0 60px;
    }
    
    .services-overview,
    .process-section,
    .extras-section {
        padding: 3rem 0;
    }

    .acc-header {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .acc-header-left {
        flex: 1;
        min-width: 0;
    }

    .acc-title h3 {
        font-size: 0.95rem;
    }

    .acc-subtitle {
        display: none;
    }

    .acc-price {
        font-size: 1rem;
    }

    .acc-body-inner {
        padding: 0 1.25rem 1.25rem;
    }

    .acc-usecases {
        padding: 0.9rem 1rem;
    }

    .acc-usecases-list {
        font-size: 0.85rem;
        padding-left: 1.1rem;
    }

    .acc-features {
        flex-direction: column;
    }

    .acc-actions {
        flex-direction: column;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-highlight {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .acc-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .acc-icon i {
        font-size: 0.95rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .extra-card {
        padding: 1rem;
    }
}

/* Included Section */
.included-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.included-section .included-subtitle {
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.included-text .included-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gray-color);
}

.included-support-block {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(67, 56, 202, 0.12);
}

.included-support-title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.included-support-title i {
    color: var(--primary-color);
}

.included-support-intro {
    margin: 0 0 1.5rem;
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.included-support-grid {
    margin-bottom: 0;
}

.included-content {
    margin-top: 2rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.included-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon i {
    font-size: 1.2rem;
}

.included-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.included-text p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.included-highlight {
    background: linear-gradient(135deg, var(--primary-color), #4338ca);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.highlight-content i {
    font-size: 1.3rem;
}

/* Responsive adjustments for included section */
@media (max-width: 768px) {
    .included-section {
        padding: 3rem 0;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .included-item {
        padding: 1.5rem;
    }

    .included-support-block {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .included-support-title {
        font-size: 1.1rem;
    }

    .included-highlight {
        padding: 1.25rem 1.5rem;
    }

    .highlight-content {
        font-size: 1rem;
        gap: 0.5rem;
    }
} 