/* ============================================================
   MWP – hw-base.css  (Handwerk-Theme)
   Variablen kommen aus header.php als :root overrides
   ============================================================ */

:root {
    --hw-primary:      #1e293b;
    --hw-accent:       #f97316;
    --hw-accent-dk:    #ea6c0a;
    --hw-bg:           #ffffff;
    --hw-text:         #0f172a;
    --hw-font-heading: 'Poppins', system-ui, sans-serif;
    --hw-font-body:    'Inter',   system-ui, sans-serif;
    --hw-h1-size:      clamp(2rem, 5vw, 3.5rem);
    --hw-h2-size:      clamp(1.4rem, 3vw, 2rem);
    --hw-card-radius:  12px;
    --hw-btn-radius:   8px;
    --hw-shadow:       0 4px 20px rgba(0,0,0,.08);
    --hw-transition:   .2s ease;
    --hw-light:        #f8fafc;
    --hw-steel:        #64748b;
    --hw-border:       #e2e8f0;
    --topbar-h:        36px;
    --header-h:        68px;
    --offset:          calc(var(--topbar-h) + var(--header-h));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--hw-font-body);
    color: var(--hw-text);
    background: var(--hw-bg);
    line-height: 1.6;
    padding-top: var(--offset);
}

/* ── UTILITIES ── */
.mwp-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.mwp-container--narrow { max-width: 720px; }

/* ── HEADER / NAV ── */
.mwp-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--hw-primary);
    transition: box-shadow var(--hw-transition);
}
.mwp-header--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.mwp-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; max-width: 1140px; margin: 0 auto; gap: 16px;
}
.mwp-logo { text-decoration: none; }
.mwp-logo-text { font-family: var(--hw-font-heading); font-weight: 900; font-size: 20px; color: #fff; letter-spacing: .5px; }
.mwp-logo-img { height: 44px; width: auto; }
.mwp-nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.mwp-nav-link {
    display: block; padding: 8px 14px; color: rgba(255,255,255,.8);
    text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 6px;
    transition: color var(--hw-transition), background var(--hw-transition);
}
.mwp-nav-link:hover, .mwp-nav-link--active { color: #fff; background: rgba(255,255,255,.12); }
.mwp-nav-actions { display: flex; align-items: center; gap: 12px; }
.mwp-nav-tel { color: rgba(255,255,255,.85); font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.mwp-nav-tel:hover { color: var(--hw-accent); }

/* Burger */
.mwp-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mwp-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.mwp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mwp-burger.is-open span:nth-child(2) { opacity: 0; }
.mwp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mwp-nav-mobile { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--hw-primary); }
.mwp-nav-mobile--open { max-height: 500px; }
.mwp-nav-mobile-list { list-style: none; margin: 0; padding: 8px 20px 16px; }
.mwp-nav-mobile-list .mwp-nav-link { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }

@media (max-width: 768px) {
    .mwp-nav, .mwp-nav-tel { display: none; }
    .mwp-burger { display: flex; }
}

/* ══════════════════════════════════════════════════════════
   TOPBAR + HAUPTNAVIGATION (Stahl & Licht – wie handwerk.andi24.de)
   ══════════════════════════════════════════════════════════ */
.hw-topbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--topbar-h); background: var(--hw-primary);
    z-index: 1001; display: flex; align-items: center;
}
.hw-topbar-inner {
    width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hw-topbar-left { display: flex; align-items: center; gap: 20px; overflow: hidden; }
.hw-topbar-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: rgba(255,255,255,.45); white-space: nowrap; flex-shrink: 0;
}
.hw-topbar-item i { color: var(--hw-accent); font-size: 10px; }
.hw-topbar-item a { color: rgba(255,255,255,.65); }
.hw-topbar-item a:hover { color: var(--hw-accent); }
.hw-topbar-right { flex-shrink: 0; }
.hw-topbar-notdienst {
    background: #dc2626; color: #fff;
    padding: 3px 12px; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    border-radius: 2px; display: flex; align-items: center; gap: 6px;
}
.hw-topbar-notdienst::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #fca5a5; animation: hwBlink 1.2s infinite;
}
.hw-topbar-notdienst a { color: #fef08a; font-weight: 700; }
.hw-topbar-notdienst a:hover { text-decoration: underline; }
@keyframes hwBlink { 0%,100%{opacity:1} 50%{opacity:.3} }

@media(max-width:767px) {
    .hw-topbar-inner { padding: 0 16px; }
    .hw-topbar-item:nth-child(n+3) { display: none; }
}
@media(max-width:480px) {
    .hw-topbar-item:nth-child(n+2) { display: none; }
}

.hw-header {
    position: fixed; top: var(--topbar-h); left: 0; right: 0;
    height: var(--header-h); background: #fff;
    border-bottom: none;
    z-index: 1000; display: flex; align-items: stretch;
    transition: box-shadow .3s;
}
.hw-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.hw-header-inner {
    width: 100%; max-width: 1280px; margin: 0 auto; display: flex; align-items: stretch;
}
.hw-logo { background: var(--hw-accent); padding: 0 22px;
    display: flex; align-items: center; flex-shrink: 0; transition: background .2s;
}
.hw-logo:hover { background: var(--hw-accent-dk); }
.hw-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.hw-logo-icon {
    width: 32px; height: 32px; background: var(--hw-primary); border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: var(--hw-accent); font-size: 17px; flex-shrink: 0;
}
.hw-logo-img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.hw-logo--custom { background: transparent; padding: 4px 12px; }
.hw-logo--custom:hover { background: rgba(0,0,0,.05); }
.hw-logo--custom .hw-logo-img { height: 75px; max-width: 220px; filter: none; object-fit: contain; }
.hw-logo-text {
    font-weight: 800; font-size: 13px; color: var(--hw-primary);
    letter-spacing: -0.5px; line-height: 1.2; white-space: nowrap;
}
.hw-logo-text small {
    display: block; font-size: 9px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; color: rgba(30,41,59,.5);
}
.hw-nav { display: flex; align-items: stretch; flex: 1; padding-left: 4px; }
.hw-nav > ul { display: flex; align-items: stretch; list-style: none; flex: 1; }
.hw-nav > ul > li { display: flex; align-items: stretch; position: relative; }
.hw-nav > ul > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 0 14px; font-size: 11px; font-weight: 700;
    color: var(--hw-steel); letter-spacing: .4px; text-transform: uppercase;
    border-bottom: 3px solid transparent; white-space: nowrap;
    transition: color .2s, border-color .2s;
}
.hw-nav > ul > li > a i { font-size: 12px; }
.hw-nav > ul > li > a:hover  { color: var(--hw-primary); border-bottom-color: var(--hw-accent); }
.hw-nav > ul > li > a.active { color: var(--hw-primary); border-bottom-color: var(--hw-accent); }
.hw-nav-cta {
    align-self: center !important; margin: 0 0 0 8px !important;
    background: var(--hw-accent) !important; color: #fff !important;
    padding: 9px 18px !important; border-bottom: none !important;
    border-radius: 3px !important; font-size: 11px !important;
    letter-spacing: .5px !important; gap: 6px !important; flex-shrink: 0;
}
.hw-nav-cta i { color: #fff !important; font-size: 12px !important; }
.hw-nav-cta:hover { background: var(--hw-accent-dk) !important; color: #fff !important; border-bottom: none !important; }
.hw-dd-l1 {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff !important; border: 1px solid var(--hw-border);
    border-top: 3px solid var(--hw-accent);
    min-width: 200px; padding: 5px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.2); z-index: 1001; list-style: none;
}
.hw-has-dd:hover .hw-dd-l1 { display: block; }
.hw-has-dd.open  .hw-dd-l1 { display: block; }
.hw-has-dd.open > a .hw-dd-arrow { transform: rotate(180deg); }
.hw-dd-arrow { transition: transform .2s; }
.hw-dd-l1-direct a {
    display: block; padding: 10px 16px;
    font-size: 11px; font-weight: 700; color: var(--hw-steel);
    text-transform: uppercase; letter-spacing: .5px;
    border-left: 3px solid transparent; transition: all .15s;
}
.hw-dd-l1-direct a:hover {
    color: var(--hw-primary); background: var(--hw-light);
    border-left-color: var(--hw-accent); padding-left: 20px;
}
.hw-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 5px; background: none; border: none;
    margin: auto 16px auto auto; flex-shrink: 0;
}
.hw-hamburger span { display: block; width: 22px; height: 2px; background: var(--hw-primary); transition: all .3s; border-radius: 1px; }
.hw-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hw-hamburger.open span:nth-child(2) { opacity: 0; }
.hw-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

@media(max-width:991px) {
    :root { --topbar-h: 34px; --header-h: 60px; }
    .hw-hamburger { display: flex; }
    .hw-logo-text small { display: none; }
    .hw-nav {
        display: none; position: fixed;
        top: var(--offset); left: 0; right: 0;
        background: #fff; border-top: 3px solid var(--hw-accent);
        max-height: calc(100vh - var(--offset));
        overflow-y: auto; flex-direction: column; padding: 0;
        box-shadow: 0 8px 32px rgba(0,0,0,.15); z-index: 998;
    }
    .hw-nav.open { display: flex; }
    .hw-nav > ul { flex-direction: column; flex: unset; }
    .hw-nav > ul > li { display: block; }
    .hw-nav > ul > li > a {
        padding: 16px 24px; border-bottom: 1px solid var(--hw-border);
        border-left: 3px solid transparent; font-size: 13px;
        justify-content: flex-start; gap: 14px;
    }
    .hw-nav > ul > li > a .hw-dd-arrow { margin-left: auto; }
    .hw-nav > ul > li > a:hover,
    .hw-nav > ul > li > a.active {
        border-bottom-color: var(--hw-border);
        border-left-color: var(--hw-accent); background: var(--hw-light);
    }
    .hw-nav-cta { margin: 12px 16px !important; display: flex !important; justify-content: center; border-radius: 3px !important; padding: 12px 20px !important; }
    .hw-dd-l1 { display: none; position: static; border: none; box-shadow: none; background: var(--hw-light); padding: 0; }
    .hw-has-dd.open .hw-dd-l1 { display: block; }
    .hw-dd-l1-direct a { padding: 11px 32px; border-left: none; border-bottom: 1px solid var(--hw-border); }
    .hw-dd-l1-direct a:hover { padding-left: 38px; border-left: none; }
}
@media(max-width:480px) {
    .hw-logo-text { display: none; }
    .hw-logo { padding: 0 14px; }
}

/* ── BUTTONS ── */
.mwp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: var(--hw-btn-radius); font-family: var(--hw-font-heading);
    font-size: 14px; font-weight: 700; text-decoration: none; border: 2px solid transparent;
    cursor: pointer; transition: all var(--hw-transition); white-space: nowrap;
}
.mwp-btn-accent { background: var(--hw-accent); color: #fff; border-color: var(--hw-accent); }
.mwp-btn-accent:hover { filter: brightness(1.08); transform: translateY(-1px); }
.mwp-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.mwp-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.mwp-btn-ghost { background: transparent; color: var(--hw-primary); border-color: #e2e8f0; }
.mwp-btn-ghost:hover { border-color: var(--hw-accent); color: var(--hw-accent); }
.mwp-btn-sm  { padding: 7px 14px; font-size: 13px; }
.mwp-btn-lg  { padding: 14px 28px; font-size: 16px; }
.mwp-btn-full { width: 100%; }

/* ── INPUTS ── */
.mwp-input {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; font-family: var(--hw-font-body); color: var(--hw-text); background: #fff;
    transition: border-color var(--hw-transition), box-shadow var(--hw-transition); box-sizing: border-box;
}
.mwp-input:focus { outline: none; border-color: var(--hw-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--hw-accent) 20%, transparent); }
.mwp-textarea { resize: vertical; min-height: 100px; }

/* ── ALERTS ── */
.mwp-alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.mwp-alert--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.mwp-alert--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.mwp-alert p { margin: 4px 0; }

/* ── HERO ── */
.hw-hero {
    position: relative; min-height: 90vh; display: flex; align-items: center;
    background: var(--hw-primary);
    background-image: linear-gradient(135deg, var(--hw-primary) 0%, color-mix(in srgb, var(--hw-primary) 80%, #000) 100%);
}
.hw-hero[style*="--hw-hero-bg"] {
    background-image: var(--hw-hero-bg, none);
    background-size: cover; background-position: center;
}
.hw-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 100%);
}
.hw-hero-content { position: relative; z-index: 1; padding: 80px 20px; }
.hw-hero-badge { display: inline-block; background: var(--hw-accent); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hw-hero-h1 { font-family: var(--hw-font-heading); font-size: var(--hw-h1-size); font-weight: 900; color: #fff; margin: 0 0 16px; line-height: 1.15; max-width: 700px; }
.hw-hero-sub { font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,.85); margin: 0 0 32px; max-width: 580px; }
.hw-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hw-hero-rating { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 14px; }
.hw-stars { color: #fbbf24; font-size: 18px; }

/* Stats Bar */
.hw-stats-bar { background: var(--hw-accent); padding: 20px 0; }
.hw-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 16px; text-align: center; }
.hw-stat-val { display: block; font-family: var(--hw-font-heading); font-size: 2rem; font-weight: 900; color: #fff; }
.hw-stat-label { font-size: 12px; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .5px; }

/* Sections */
.hw-section { padding: 72px 0; }
.hw-section-title { font-family: var(--hw-font-heading); font-size: var(--hw-h2-size); font-weight: 800; text-align: center; margin: 0 0 8px; color: var(--hw-primary); }
.hw-section-sub { text-align: center; color: #64748b; margin: 0 0 40px; }
.hw-page-title { font-family: var(--hw-font-heading); font-size: var(--hw-h2-size); font-weight: 800; margin: 0 0 8px; color: var(--hw-primary); }
.hw-page-sub { color: #64748b; margin: 0 0 32px; }

/* Leistungen Grid */
.hw-leistungen-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 20px; }
.hw-leistungen-grid--detail { grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); }
.hw-leistung-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--hw-card-radius); padding: 28px 20px; text-align: center; transition: all var(--hw-transition); }
.hw-leistung-card:hover { border-color: var(--hw-accent); box-shadow: var(--hw-shadow); transform: translateY(-2px); }
.hw-leistung-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.hw-leistung-title { font-family: var(--hw-font-heading); font-weight: 700; font-size: 16px; margin: 0 0 8px; color: var(--hw-primary); }
.hw-leistung-desc { font-size: 13px; color: #64748b; margin: 0 0 16px; }
.hw-leistung-cta { color: var(--hw-accent); font-size: 13px; font-weight: 600; text-decoration: none; }
.hw-leistungen-cta-wrap { text-align: center; margin-top: 32px; }

/* Why */
.hw-why-section { background: #f8fafc; }
.hw-why-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 24px; }
.hw-why-card { text-align: center; padding: 24px; }
.hw-why-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.hw-why-card h3 { font-family: var(--hw-font-heading); font-weight: 700; margin: 0 0 8px; color: var(--hw-primary); }
.hw-why-card p { font-size: 14px; color: #64748b; margin: 0; }

/* Notdienst */
.hw-notdienst-banner { background: var(--hw-primary); padding: 20px 0; }
.hw-notdienst-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hw-notdienst-icon { font-size: 28px; }
.hw-notdienst-inner strong { display: block; color: #fff; font-weight: 700; }
.hw-notdienst-inner span { color: rgba(255,255,255,.75); font-size: 14px; }

/* CTA Section */
.hw-cta-section { background: var(--hw-primary); padding: 56px 0; }
.hw-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hw-cta-text h2 { font-family: var(--hw-font-heading); font-size: 1.8rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.hw-cta-text p { color: rgba(255,255,255,.75); margin: 0; }

/* Forms */
.hw-form-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--hw-card-radius); padding: 36px; box-shadow: var(--hw-shadow); }
.hw-form-row { display: grid; gap: 16px; }
.hw-form-row--2 { grid-template-columns: 1fr 1fr; }
.hw-form-group { display: flex; flex-direction: column; gap: 6px; }
.hw-form-group label { font-size: 13px; font-weight: 600; color: #475569; }
.hw-form-dsgvo { margin: 16px 0; }
.hw-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #64748b; cursor: pointer; }
.hw-checkbox-label input { margin-top: 3px; accent-color: var(--hw-accent); }
.hw-checkbox-label a { color: var(--hw-accent); }
@media (max-width: 600px) { .hw-form-row--2 { grid-template-columns: 1fr; } }

/* Kontakt */
.hw-kontakt-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.hw-kontakt-info h2 { font-family: var(--hw-font-heading); font-weight: 700; margin: 0 0 20px; color: var(--hw-primary); }
.hw-kontakt-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.hw-kontakt-icon { font-size: 22px; margin-top: 2px; }
.hw-kontakt-item strong { display: block; font-size: 13px; color: #64748b; margin-bottom: 4px; }
.hw-kontakt-link { color: var(--hw-primary); text-decoration: none; font-weight: 500; }
.hw-kontakt-link:hover { color: var(--hw-accent); }
.hw-oz-box { margin-top: 20px; padding: 16px; background: #f8fafc; border-radius: 8px; }
.hw-oz-box strong { display: block; font-size: 13px; color: #64748b; margin-bottom: 10px; }
.hw-oz-row { display: flex; justify-content: space-between; font-size: 14px; padding: 3px 0; }
@media (max-width: 768px) { .hw-kontakt-grid { grid-template-columns: 1fr; } }

/* Newsletter Section */
.mwp-nl-section { background: var(--hw-primary); padding: 56px 0; }
.mwp-nl-box { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: space-between; }
.mwp-nl-title { font-family: var(--hw-font-heading); font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0 0 6px; }
.mwp-nl-sub { color: rgba(255,255,255,.75); margin: 0; font-size: 14px; }
.mwp-nl-form { flex: 1; min-width: 280px; }
.mwp-nl-fields { display: flex; gap: 10px; flex-wrap: wrap; }
.mwp-nl-fields .mwp-input { flex: 1; min-width: 200px; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.mwp-nl-fields .mwp-input::placeholder { color: rgba(255,255,255,.5); }
.mwp-nl-hint { font-size: 12px; color: rgba(255,255,255,.5); margin: 8px 0 0; }
.mwp-nl-msg { margin-top: 10px; font-size: 13px; padding: 8px 12px; border-radius: 6px; }
.mwp-nl-msg--ok  { background: rgba(134,239,172,.15); color: #bbf7d0; }
.mwp-nl-msg--err { background: rgba(252,165,165,.15); color: #fca5a5; }

/* Footer */
.mwp-footer { background: #0f172a; color: rgba(255,255,255,.75); padding: 48px 0 0; }
.mwp-footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 32px; }
.mwp-footer-title { font-family: var(--hw-font-heading); font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.mwp-footer-p { font-size: 14px; line-height: 1.7; margin: 0 0 10px; }
.mwp-footer-link { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.mwp-footer-link:hover { color: var(--hw-accent); }
.mwp-footer-links { list-style: none; margin: 0; padding: 0; }
.mwp-footer-links li { margin-bottom: 8px; font-size: 14px; }
.mwp-footer-oz { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.mwp-footer-oz-day { color: rgba(255,255,255,.5); }
.mwp-footer-notdienst { font-size: 13px; color: var(--hw-accent); margin-top: 12px; font-weight: 600; }
.mwp-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.mwp-social-link { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border-radius: 50%; color: rgba(255,255,255,.7); text-decoration: none; font-size: 18px; transition: background .2s; }
.mwp-social-link:hover { background: var(--hw-accent); color: #fff; }
.mwp-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding: 16px 0; }
.mwp-footer-bottom .mwp-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(255,255,255,.4); }
.mwp-footer-powered a { color: rgba(255,255,255,.4); }
.mwp-footer-powered a:hover { color: var(--hw-accent); }
