/* Professional card styles for landing page sections */

.trade-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.25rem 1.125rem;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trade-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.trade-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    color: #1e40af;
}

.trade-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.trade-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    min-height: 2.625rem;
}

.problem-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #94a3b8;
    border-radius: 0.375rem;
    padding: 1.375rem 1.5rem;
    min-height: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.problem-card:hover {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    border-left-color: #64748b;
}

.problem-card-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.problem-card-icon svg {
    width: 1rem;
    height: 1rem;
}

.problem-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.problem-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.375rem;
    line-height: 1.4;
    min-height: 2.625rem;
}

.problem-card-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
    margin-top: auto;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.375rem;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.07);
}

.benefit-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.875rem;
}

.benefit-card-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.benefit-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
}

.benefit-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.625rem;
}

.benefit-card-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
    margin-top: auto;
}

.section-cards-grid {
    display: grid;
    align-items: stretch;
    gap: 1rem;
}

.section-cards-grid > * {
    min-height: 100%;
    align-self: stretch;
}

@media (min-width: 768px) {
    .section-cards-grid {
        gap: 1.25rem;
    }
}

/* Centered 3+2 layout for five benefit tiles */
.benefit-grid-5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .benefit-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .benefit-grid-5 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .benefit-grid-5 > .benefit-card:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .benefit-grid-5 > .benefit-card:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .benefit-grid-5 > .benefit-card:nth-child(3) {
        grid-column: 5 / span 2;
    }

    .benefit-grid-5 > .benefit-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .benefit-grid-5 > .benefit-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Feature overview cards (Funktionen section) */
.feature-detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.75rem;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-detail-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.feature-detail-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.375rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-detail-card-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.feature-detail-card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.625rem;
    line-height: 1.35;
    min-height: 2.875rem;
}

.feature-detail-card-heading {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    min-height: 2.875rem;
}

.feature-detail-card-heading .feature-detail-card-title {
    margin-bottom: 0;
    min-height: 0;
}

.feature-detail-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1e40af;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.25rem;
}

.feature-detail-card-text {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
    margin-top: auto;
}

.feature-detail-card-text a {
    color: #1d4ed8;
    text-decoration: none;
}

.feature-detail-card-text a:hover {
    text-decoration: underline;
}

/* Step cards (3-Schritte) */
.step-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.375rem;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.step-card-number {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    background: #1e40af;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    min-height: 1.35rem;
}

.step-card-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
    margin-top: auto;
}

/* Trust / stat tiles */
.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.25rem 1rem;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-card-label {
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.4;
}

/* Pricing card */
.pricing-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.625rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.pricing-card-badge {
    display: inline-block;
    background: #1e40af;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.pricing-card-trial-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e40af;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.375rem;
}

.pricing-card-list-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #1d4ed8;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

/* Info / highlight box */
.info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #1e40af;
    border-radius: 0.375rem;
    padding: 1.5rem;
}

.info-box-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.info-box-text {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e40af;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.faq-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    overflow: hidden;
}

.faq-card summary {
    list-style: none;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card[open] {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .stat-card-value {
        font-size: 1.875rem;
    }
}
