/* Geteilte Tool-Komponente für Tool-Pages mit URL-Check */
.hc-hero { background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%); color: #fff; padding: 70px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(232,93,63,0.25) 0%, transparent 60%); }
.hc-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 14px; position: relative; }
.hc-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 720px; margin: 0 auto; position: relative; }
.hc-form-wrap { max-width: 600px; margin: 30px auto 0; position: relative; }
.hc-form { display: flex; gap: 10px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px; border-radius: 999px; }
.hc-form input { flex: 1; padding: 14px 22px; border-radius: 999px; border: none; font-size: 1rem; background: #fff; }
.hc-form input:focus { outline: 3px solid #E85D3F; }
.hc-form button { padding: 14px 28px; border-radius: 999px; border: none; background: linear-gradient(135deg, #E85D3F 0%, #D45436 100%); color: #fff; font-weight: 700; cursor: pointer; }
.hc-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,63,0.4); }
.hc-main { padding: 50px 0 80px; background: #FAFBFC; }
.hc-result { max-width: 880px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 8px 24px rgba(15,23,42,0.06); }
.hc-result.is-hidden { display: none; }
.hc-loader { text-align: center; padding: 40px; }
.hc-loader-spinner { width: 56px; height: 56px; border: 5px solid #E2E8F0; border-top-color: #E85D3F; border-radius: 50%; animation: hcSpin 0.8s linear infinite; margin: 0 auto 18px; }
@keyframes hcSpin { to { transform: rotate(360deg); } }
.hc-checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 24px; }
.hc-check { padding: 18px 20px; background: #F7FAFC; border-radius: 14px; border-left: 4px solid #CBD5E0; }
.hc-check.pass { border-color: #48BB78; background: rgba(72,187,120,0.05); }
.hc-check.warn { border-color: #ED8936; background: rgba(237,137,54,0.05); }
.hc-check.fail { border-color: #F56565; background: rgba(245,101,101,0.05); }
.hc-check h4 { margin: 0 0 6px; color: #2D3748; font-size: 0.95rem; display: flex; gap: 8px; align-items: center; }
.hc-check h4::before { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; color: #fff; }
.hc-check.pass h4::before { content: '✓'; background: #48BB78; }
.hc-check.warn h4::before { content: '!'; background: #ED8936; }
.hc-check.fail h4::before { content: '✗'; background: #F56565; }
.hc-check p { margin: 0; color: #4A5568; font-size: 0.84rem; line-height: 1.5; }
.hc-summary { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid #E2E8F0; margin-bottom: 16px; }
@media (max-width: 640px) { .hc-summary { grid-template-columns: 1fr; text-align: center; } }
.hc-score { width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-weight: 800; margin: 0 auto; }
.hc-score strong { font-size: 2.1rem; }
.hc-score span { font-size: 0.72rem; opacity: 0.85; }
.hc-score.s-good { background: linear-gradient(135deg, #48BB78, #2F855A); }
.hc-score.s-med { background: linear-gradient(135deg, #ED8936, #C05621); }
.hc-score.s-bad { background: linear-gradient(135deg, #F56565, #C53030); }
.hc-cta { margin-top: 28px; padding: 24px; background: linear-gradient(135deg, rgba(232,93,63,0.08), rgba(232,93,63,0.02)); border-radius: 14px; text-align: center; }
.hc-cta a { display: inline-block; padding: 12px 28px; background: linear-gradient(135deg, #E85D3F, #D45436); color: #fff; border-radius: 12px; text-decoration: none; font-weight: 700; }
