/* ═══════════════════════════════════════════════════════════
   HANDWERK SaaS – COMPONENTS  ·  Design: Stahl & Licht v2
   Alle Icons geprüft gegen andi24-icons-core/tools.css
   ═══════════════════════════════════════════════════════════ */

/* ── BUTTONS ─────────────────────────────────────────────── */
.hw-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; font-family: var(--ff-body);
    font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    border-radius: 3px; border: 2px solid transparent;
    cursor: pointer; transition: all .2s; white-space: nowrap;
    text-decoration: none; line-height: 1;
}
.hw-btn i { font-size: 13px; }
.hw-btn-lg { padding: 15px 34px; font-size: 13px; }
.hw-btn-sm { padding: 8px 16px; font-size: 11px; }

.hw-btn-accent { background: var(--hw-accent); color: #fff; border-color: var(--hw-accent); }
.hw-btn-accent:hover { background: var(--hw-accent-dk); border-color: var(--hw-accent-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.35); }

.hw-btn-dark { background: var(--hw-primary); color: #fff; border-color: var(--hw-primary); }
.hw-btn-dark:hover { background: #0f172a; border-color: #0f172a; color: #fff; transform: translateY(-2px); }

.hw-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.hw-btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.hw-btn-outline-dark { background: transparent; color: var(--hw-primary); border-color: var(--hw-primary); }
.hw-btn-outline-dark:hover { background: var(--hw-primary); color: #fff; }

.hw-btn-white { background: #fff; color: var(--hw-primary); border-color: #fff; }
.hw-btn-white:hover { background: var(--hw-accent); border-color: var(--hw-accent); color: #fff; }

/* ── SECTION / HEADERS ───────────────────────────────────── */
.hw-section { padding: 96px 0; }
.hw-section.hw-bg-light  { background: var(--hw-light); }
.hw-section.hw-bg-cream  { background: var(--hw-cream); }
.hw-section.hw-bg-white  { background: #fff; }
.hw-section.hw-bg-dark   { background: var(--hw-primary); }

.hw-section-header { margin-bottom: 56px; }

/* Section-Tag — Linie davor, ggf. zentriert */
.hw-section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--hw-accent); margin-bottom: 14px;
}
.hw-section-tag::before {
    content: ''; display: block; width: 20px; height: 2px;
    background: var(--hw-accent); flex-shrink: 0;
}
/* Wenn im text-center Container: Tag selbst zentrieren */
.text-center .hw-section-tag,
.hw-section-tag.center {
    display: flex; justify-content: center;
}

.hw-section-title { letter-spacing: -0.03em; margin-bottom: 10px; }
.hw-section-title.on-dark { color: #fff; }
.hw-section-desc { font-size: 15px; color: var(--hw-steel); line-height: 1.75; margin-bottom: 0; }
.hw-section-desc.on-dark { color: rgba(255,255,255,.55); }

.hw-divider { width: 48px; height: 3px; background: var(--hw-accent); margin: 14px 0 20px; }
.hw-divider.center { margin-left: auto; margin-right: auto; }
.text-center .hw-divider { margin-left: auto; margin-right: auto; }

/* ── HERO ────────────────────────────────────────────────── */
.hw-hero {
    min-height: calc(100vh - var(--offset));
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative; overflow: hidden;
}

/* LINKE SEITE — dunkel */
.hw-hero-left {
    background: var(--hw-primary);
    display: flex; align-items: center;
    padding: 80px 72px 80px 80px;
    position: relative; z-index: 2;
}
/* Diagonale Kante */
.hw-hero-left::after {
    content: ''; position: absolute;
    top: 0; right: -80px; width: 160px; height: 100%;
    background: var(--hw-primary);
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
    z-index: 3;
}
/* Grid-Overlay */
.hw-hero-left::before {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
}
.hw-hero-content { position: relative; z-index: 4; width: 100%; max-width: 560px; }

/* RECHTE SEITE — Bild */
.hw-hero-right { position: relative; overflow: hidden; }
.hw-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    background-size: cover; background-position: center;
}
.hw-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.6) 0%, rgba(15,23,42,.2) 100%);
}
/* Diagonale Überlappung von links */
.hw-hero-right::before {
    content: ''; position: absolute; top: 0; left: -40px;
    width: 120px; height: 100%;
    background: var(--hw-primary);
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    z-index: 5;
}
/* Badge auf Bild */
.hw-hero-img-badge {
    position: absolute; bottom: 40px; left: 60px; z-index: 6;
    background: var(--hw-accent); color: var(--hw-primary);
    padding: 18px 22px; border-radius: 2px;
    font-weight: 900;
}
.hw-hero-img-badge span { display: block; font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.hw-hero-img-badge small { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Inhalt */
.hw-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0px; background: rgba(249,115,22,.08);
    color: var(--hw-accent); padding: 6px 14px; border-radius: 2px;
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 28px;
}
.hw-hero-badge i { font-size: 11px; }

.hw-hero-title {
    font-size: clamp(28px, 6vw, 62px); font-weight: 900;
    color: #fff; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 22px;
    overflow-wrap: break-word; word-break: break-word;
}
.hw-hero-title em { font-style: normal; color: var(--hw-accent); }

.hw-hero-subtitle {
    font-size: 15px; color: rgba(255,255,255,.5);
    line-height: 1.75; max-width: 440px; margin-bottom: 40px;
}
.hw-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats — Border-Box */
.hw-hero-stats {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
}
.hw-hero-stat {
    padding: 18px 28px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.hw-hero-stat:last-child { border-right: none; }
.hw-hero-stat-num {
    font-size: 32px; font-weight: 900; color: var(--hw-accent);
    line-height: 1; letter-spacing: -1px; display: block;
}
.hw-hero-stat-label {
    font-size: 9px; color: rgba(255,255,255,.3);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 5px; display: block; white-space: nowrap;
}

/* Scroll Cue */
.hw-scroll-cue {
    position: absolute; bottom: 24px; left: 28%;
    transform: translateX(-50%);
    z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: rgba(255,255,255,.25); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    animation: hwBounce 2s ease-in-out infinite;
}
@keyframes hwBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Hero Responsive */
@media(max-width:1100px) {
    .hw-hero-left { padding: 64px 48px; }
    .hw-hero-stat { padding: 14px 20px; }
    .hw-hero-stat-num { font-size: 26px; }
}
@media(max-width:860px) {
    .hw-hero { grid-template-columns: 1fr; }
    .hw-hero-right { display: none; }
    .hw-hero-left { padding: 56px 24px 64px; min-height: calc(100vh - var(--offset)); }
    .hw-hero-left::after { display: none; }
    .hw-hero-content { max-width: 100%; }
    .hw-hero-stats { flex-wrap: wrap; width: 100%; }
    .hw-hero-stat { flex: 1; min-width: 110px; }
    .hw-scroll-cue { left: 50%; }
}
@media(max-width:540px) {
    .hw-hero-left { padding: 40px 20px 52px; }
    .hw-hero-title { font-size: clamp(26px, 8vw, 38px); letter-spacing: -0.03em; line-height: 1.1; }
    .hw-hero-subtitle { font-size: 14px; margin-bottom: 28px; }
    .hw-hero-badge { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 20px; white-space: normal; }
    .hw-hero-actions { flex-direction: column; gap: 10px; margin-bottom: 36px; }
    .hw-hero-actions .hw-btn { width: 100%; justify-content: center; }
    .hw-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
    .hw-hero-stat { padding: 12px 10px; flex: unset; min-width: unset; }
    .hw-hero-stat-num { font-size: 22px; }
    .hw-hero-stat-label { font-size: 8px; letter-spacing: 1px; white-space: normal; }
}

/* ── VORTEILE / FEATURE CARDS ────────────────────────────── */
.hw-feature-card {
    background: #fff; padding: 36px 28px; height: 100%;
    border: 1px solid var(--hw-border);
    border-top: 3px solid transparent;
    border-radius: 2px;
    transition: all .25s; position: relative;
}
.hw-feature-card:hover {
    border-top-color: var(--hw-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.hw-feature-icon {
    width: 52px; height: 52px;
    background: var(--hw-warm); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--hw-accent);
    margin-bottom: 20px; transition: all .25s;
}
.hw-feature-card:hover .hw-feature-icon { background: var(--hw-accent); color: #fff; }
.hw-feature-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--hw-primary); }
.hw-feature-text  { font-size: 14px; line-height: 1.7; color: var(--hw-steel); margin-bottom: 0; }

/* ── LEISTUNGEN KARTEN (Index-Seite) ─────────────────────── */
/* KOMPLETT überschreiben — Inline-CSS in index.php entfernt */
.hw-leistung-card {
    background: #fff; padding: 32px 28px; height: 100%;
    border: 1px solid var(--hw-border);
    border-left: 3px solid transparent;
    border-radius: 2px; transition: all .25s;
    position: relative; overflow: hidden;
}
.hw-leistung-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--hw-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.hw-leistung-card:hover {
    border-left-color: var(--hw-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.hw-leistung-card:hover::after { transform: scaleX(1); }
.hw-leistung-icon {
    width: 52px; height: 52px;
    background: var(--hw-warm); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--hw-accent);
    margin-bottom: 20px; transition: all .25s;
}
.hw-leistung-card:hover .hw-leistung-icon { background: var(--hw-accent); color: #fff; }
.hw-leistung-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--hw-primary); }
.hw-leistung-text  { font-size: 14px; line-height: 1.7; color: var(--hw-steel); margin-bottom: 16px; }
.hw-leistung-link {
    font-size: 11px; font-weight: 700; color: var(--hw-accent);
    display: inline-flex; align-items: center; gap: 6px;
    text-transform: uppercase; letter-spacing: .8px;
    transition: gap .2s;
}
.hw-leistung-link:hover { gap: 10px; color: var(--hw-accent-dk); }
.hw-leistung-link i { font-size: 11px; }

/* ── VORTEILE-STRIP (unter Hero) ─────────────────────────── */
.hw-vorteile-strip {
    background: var(--hw-primary);
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.hw-vorteil-item {
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex; align-items: flex-start; gap: 16px;
    transition: background .2s;
}
.hw-vorteil-item:last-child { border-right: none; }
.hw-vorteil-item:hover { background: rgba(255,255,255,.025); }
.hw-vorteil-num {
    font-size: 32px; font-weight: 900; color: rgba(249,115,22,.75);
    line-height: 1; flex-shrink: 0; letter-spacing: -2px;
    min-width: 48px;
}
.hw-vorteil-body {}
.hw-vorteil-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.hw-vorteil-text  { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.6; }

@media(max-width:991px) {
    .hw-vorteile-strip { grid-template-columns: repeat(2, 1fr); }
    .hw-vorteil-item:nth-child(2) { border-right: none; }
    .hw-vorteil-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.06); }
}
@media(max-width:540px) {
    .hw-vorteile-strip { grid-template-columns: 1fr; }
    .hw-vorteil-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,.06); padding: 22px 20px; }
    .hw-vorteil-item:first-child { border-top: none; }
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.hw-about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    overflow: hidden;
	max-width: 100%;	
}
.hw-about-img-wrap {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    min-height: 420px;
}
.hw-about-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hw-about-badge {
    position: absolute; bottom: 40px; right: 0;
    background: var(--hw-accent); color: var(--hw-primary);
    padding: 18px 22px; border-radius: 2px 0 0 2px;
    text-align: center;
    box-shadow: -4px 4px 24px rgba(249,115,22,.35);
}
.hw-about-badge-num  { font-size: 44px; font-weight: 900; line-height: 1; display: block; }
.hw-about-badge-text { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; display: block; }

.hw-about-text {
    background: var(--hw-primary);
    display: flex; align-items: center;
    padding: 72px 64px;
}
.hw-about-inner { max-width: 480px; }
.hw-about-divider { width: 48px; height: 3px; background: var(--hw-accent); margin: 14px 0 24px; }

@media(max-width:991px) {
    .hw-about-row { grid-template-columns: 1fr; min-height: unset; overflow: hidden; width: 100%; }
    .hw-about-img-wrap { min-height: 280px; max-height: 380px; }
    .hw-about-text { padding: 40px 24px; width: 100%; box-sizing: border-box; overflow: hidden; }
    .hw-about-inner { max-width: 100%; word-break: break-word; overflow-wrap: break-word; }
    .hw-about-badge { bottom: 24px; right: 0; }
}
@media(max-width:540px) {
    .hw-about-text { padding: 32px 16px; }
    .hw-about-badge-num { font-size: 32px; }
	.hw-about-inner { word-break: break-word; overflow-wrap: break-word; }

}

/* ── REVIEWS ─────────────────────────────────────────────── */
.hw-reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--hw-border);
    margin-top: 0;
}
.hw-review-card {
    padding: 36px 32px;
    border-right: 1px solid var(--hw-border);
    background: #fff;
    transition: background .2s; position: relative;
}
.hw-review-card:last-child { border-right: none; }
.hw-review-card:hover { background: var(--hw-light); }
/* Anführungszeichen Deko */
.hw-review-card::before {
    content: '"';
    position: absolute; top: 16px; right: 24px;
    font-size: 72px; color: rgba(249,115,22,.08);
    font-family: Georgia, serif; font-weight: 900; line-height: 1;
}
.hw-review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
/* Sterne als Unicode-Fallback + Icon */
.hw-review-stars i {
    color: var(--hw-accent); font-size: 14px;
    /* Wenn Icon nicht rendert → Unicode Stern via CSS */
}
.hw-review-stars i::before {
    content: '★'; /* Fallback */
}
/* Echter Icon-Pfad, wenn vorhanden */
.ai-star.hw-star-icon { font-size: 14px; color: var(--hw-accent); }

.hw-review-text {
    font-size: 14px; color: var(--hw-steel); line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.hw-review-author { display: flex; align-items: center; gap: 12px; }
.hw-review-avatar {
    width: 42px; height: 42px; border-radius: 3px;
    background: var(--hw-primary); color: var(--hw-accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 17px; flex-shrink: 0;
}
.hw-review-name   { font-weight: 700; color: var(--hw-primary); font-size: 14px; }
.hw-review-source { font-size: 10px; color: #bbb; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

@media(max-width:991px) {
    .hw-reviews-grid { grid-template-columns: 1fr; }
    .hw-review-card { border-right: none; border-bottom: 1px solid var(--hw-border); }
    .hw-review-card:last-child { border-bottom: none; }
}

/* ── GALERIE / REFERENZEN ────────────────────────────────── */
.hw-galerie-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.hw-galerie-thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--hw-primary); }
.hw-galerie-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.hw-galerie-thumb:hover img { transform: scale(1.05); }
.hw-galerie-overlay { position: absolute; inset: 0; background: rgba(249,115,22,0); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.hw-galerie-thumb:hover .hw-galerie-overlay { background: rgba(249,115,22,.7); }
.hw-galerie-icon { color: #fff; font-size: 28px; opacity: 0; transition: opacity .25s; }
.hw-galerie-thumb:hover .hw-galerie-icon { opacity: 1; }
.hw-galerie-placeholder { display: flex; align-items: center; justify-content: center; background: var(--hw-light); color: #ccc; font-size: 48px; aspect-ratio: 4/3; }
@media(max-width:767px) { .hw-galerie-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .hw-galerie-grid { grid-template-columns: 1fr; } }

/* ── CTA SECTION ─────────────────────────────────────────── */
.hw-cta {
    background: var(--hw-primary); padding: 100px 0;
    position: relative; overflow: hidden; text-align: center;
}
/* Diagonaler Einschnitt oben */
.hw-cta::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 56px; background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
/* Grid-Overlay */
.hw-cta::after {
    content: ''; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
}
.hw-cta .container { position: relative; z-index: 1; }
.hw-cta-actions {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; margin-top: 36px;
}
.hw-cta-desc { max-width: 480px; margin: 0 auto; }
/* Übergang zum Newsletter */
.hw-cta + section { margin-top: 0; }

/* ── NEWSLETTER SECTION ──────────────────────────────────── */
.hw-newsletter-wrap {
    max-width: 680px; margin: 0 auto; text-align: center;
    padding: 56px 40px;
    background: #fff;
    border: 1px solid var(--hw-border);
    border-top: 3px solid var(--hw-accent);
}
.hw-newsletter-title {
    font-size: clamp(22px, 3vw, 32px); font-weight: 800;
    color: var(--hw-primary); margin-bottom: 8px; letter-spacing: -0.03em;
}
.hw-newsletter-desc { font-size: 14px; color: var(--hw-steel); margin-bottom: 28px; }
.hw-newsletter-form-row {
    display: flex; gap: 8px; margin-bottom: 16px;
}
.hw-newsletter-input {
    flex: 1; padding: 12px 16px; border: 1px solid var(--hw-border);
    border-radius: 3px; font-family: var(--ff-body); font-size: 14px; outline: none;
    transition: border-color .2s;
}
.hw-newsletter-input:focus { border-color: var(--hw-accent); box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.hw-newsletter-btn { flex-shrink: 0; }
.hw-newsletter-consent { text-align: left; }
.hw-consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.hw-consent-check { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; accent-color: var(--hw-accent); cursor: pointer; }
.hw-consent-label span { font-size: 12px; color: var(--hw-steel); line-height: 1.5; }
.hw-consent-link { color: var(--hw-accent); }
.hw-consent-link:hover { text-decoration: underline; }
.hw-newsletter-msg { margin-top: 12px; font-size: 13px; font-weight: 600; min-height: 20px; }
.hw-msg-ok  { color: #16a34a; }
.hw-msg-err { color: #dc2626; }
@media(max-width:540px) {
    .hw-newsletter-wrap { padding: 40px 24px; }
    .hw-newsletter-form-row { flex-direction: column; }
    .hw-newsletter-btn { width: 100%; }
}

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.hw-form-group { margin-bottom: 20px; }
.hw-form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--hw-steel); margin-bottom: 6px; }
.hw-form-control {
    width: 100%; padding: 11px 14px;
    border: 1px solid var(--hw-border); border-radius: 3px;
    font-family: var(--ff-body); font-size: 14px; color: var(--hw-text);
    background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
}
.hw-form-control:focus { border-color: var(--hw-accent); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
textarea.hw-form-control { resize: vertical; min-height: 120px; }
select.hw-form-control { cursor: pointer; }
.hw-form-check { display: flex; align-items: flex-start; gap: 10px; }
.hw-form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--hw-accent); flex-shrink: 0; margin-top: 3px; }
.hw-form-check label { font-size: 13px; color: var(--hw-steel); line-height: 1.5; cursor: pointer; }
.hw-notfall-check { background: #fef2f2; border: 1px solid #fecaca; border-radius: 3px; padding: 14px 16px; }
.hw-notfall-check label { color: #991b1b; font-weight: 600; }

/* ── ALERTS ──────────────────────────────────────────────── */
.hw-alert { padding: 14px 18px; border-radius: 3px; border-left: 3px solid; font-size: 14px; margin-bottom: 16px; }
.hw-alert-success { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.hw-alert-error   { background: #fef2f2; border-color: #ef4444; color: #b91c1c; }
.hw-alert-warning { background: #fffbeb; border-color: var(--hw-accent); color: #92400e; }
.hw-alert-info    { background: #eff6ff; border-color: #3b82f6; color: #1d4ed8; }

/* ── STATS GRID ──────────────────────────────────────────── */
.hw-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--hw-border); }
.hw-stat-item { padding: 32px 24px; border-right: 1px solid var(--hw-border); text-align: center; transition: background .2s; }
.hw-stat-item:last-child { border-right: none; }
.hw-stat-item:hover { background: var(--hw-light); }
.hw-stat-num   { font-size: 40px; font-weight: 900; color: var(--hw-accent); letter-spacing: -2px; line-height: 1; }
.hw-stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--hw-steel); margin-top: 6px; }
@media(max-width:767px) { .hw-stats-grid { grid-template-columns: repeat(2,1fr); } .hw-stat-item:nth-child(2){border-right:none;} .hw-stat-item:nth-child(n+3){border-top:1px solid var(--hw-border);} }

/* ── MISC ────────────────────────────────────────────────── */
.hw-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.hw-badge-accent  { background: rgba(249,115,22,.1); color: var(--hw-accent); }
.hw-badge-success { background: rgba(34,197,94,.1);  color: #16a34a; }
.hw-badge-danger  { background: rgba(239,68,68,.1);  color: #dc2626; }
.hw-divider-full  { border: none; border-top: 1px solid var(--hw-border); margin: 40px 0; }
/* ── TEAM CARDS ──────────────────────────────────────────── */
.hw-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
}
@media(max-width:991px) { .hw-team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
@media(max-width:480px) { .hw-team-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; } }

.hw-team-card {
    text-align: center;
}
.hw-team-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--hw-accent);
    position: relative;
    background: #1e3a5f;
}
.hw-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.hw-team-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--hw-accent);
    opacity: .5;
}
.hw-team-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.hw-team-rolle {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hw-accent);
    margin-bottom: 10px;
}
.hw-team-bio {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,.6);
    margin: 0;
}