/* ==========================================================================
   DESIGN SYSTEM & FARBPALETTE (STRIKT BEIBEHALTEN)
   ========================================================================== */
:root {
    --c-dark: #0a0a0a;
    --c-panel: #121212;
    --c-surface: #1f1f1f;
    --c-border: #292929;
    --c-light: #f5f5f5;
    --c-dim: #d4d4d4;
    
    --c-yellow: #fbbf24;
    --c-yellow-hover: #f59e0b;
    --c-red: #ef4444;
    --c-green: #10b981;
    
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-card: 0 10px 30px rgba(0,0,0,0.4);
    --shadow-modal: 0 30px 60px rgba(0,0,0,0.85);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--c-light);
    background: var(--c-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.5px;
    font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.25rem; }

p { color: var(--c-dim); font-size: 0.95rem; }

a {
    color: var(--c-yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: #fff; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
    text-align: center;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 1.1rem;
    min-height: 38px;
}

.btn-primary {
    background: var(--c-yellow);
    color: #000 !important;
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--c-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

.btn-secondary {
    background: var(--c-red);
    color: #fff !important;
}
.btn-secondary:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--c-border);
    color: var(--c-light) !important;
}
.btn-outline:hover {
    border-color: var(--c-yellow);
    color: var(--c-yellow) !important;
}

.btn-full { width: 100%; }

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 6px 0;
    font-size: 0.78rem;
    color: #888;
}
.top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar i { color: var(--c-yellow); }

.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 0.9;
    color: #fff;
    letter-spacing: 1px;
}
.logo-sub {
    font-size: 0.72rem;
    color: var(--c-yellow);
    letter-spacing: 2px;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    color: var(--c-dim);
    font-size: 0.95rem;
    font-weight: 500;
}
.main-nav a:hover { color: var(--c-yellow); }

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-yellow) !important;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    transition: 0.3s ease;
    border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 55px 0 65px 0;
    background: radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 60%), var(--c-dark);
    border-bottom: 1px solid var(--c-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--c-yellow);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: #fff;
}
.hero-badge .stars { color: var(--c-yellow); letter-spacing: 2px; }

.highlight { color: var(--c-yellow); }

.hero-lead {
    font-size: 1.15rem;
    color: var(--c-light);
    margin: 18px 0 24px 0;
    max-width: 680px;
    line-height: 1.6;
}

.usp-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.usp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-dim);
    font-size: 1rem;
}
.usp-list i { color: var(--c-yellow); }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Desktop Hero Visual Card */
.hero-visual {
    display: none;
}
.hero-card-glow {
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-yellow);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stat-box {
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 15px;
}
.stat-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--c-yellow);
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--c-dim);
    margin-top: 4px;
}
.highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(251, 191, 36, 0.05);
    padding: 12px;
    border-radius: var(--radius-sm);
}
.highlight-box i {
    font-size: 1.8rem;
    color: var(--c-yellow);
}

/* ==========================================================================
   TRUST & HAZARD
   ========================================================================== */
.trust-bar {
    background: #141414;
    padding: 14px 0;
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}
.trust-item {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}
.badge-red {
    background: var(--c-red);
    color: #fff;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 700;
}

.hazard-bar {
    height: 6px;
    background: repeating-linear-gradient(-45deg, #000, #000 10px, var(--c-yellow) 10px, var(--c-yellow) 20px);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
    padding: 65px 0 75px 0;
    background: var(--c-panel);
}
.section-header {
    margin-bottom: 40px;
    max-width: 780px;
}
.subline {
    font-size: 0.95rem;
    color: var(--c-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    padding: 28px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: var(--c-yellow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.full-card {
    grid-column: 1 / -1;
    border-left: 4px solid var(--c-yellow);
    cursor: pointer;
    background: linear-gradient(135deg, var(--c-dark) 0%, rgba(251, 191, 36, 0.03) 100%);
}
.card-header-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.card-tag {
    font-size: 0.75rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--c-yellow);
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 4px;
}

.s-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-surface);
    color: var(--c-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.active-icon {
    background: var(--c-yellow);
    color: #000;
    margin-bottom: 0;
}

.service-card h3 { color: #fff; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; line-height: 1.6; }
.service-link {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--c-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: var(--c-yellow);
    color: #000;
    padding: 50px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin: 30px 0;
}
.cta-inner h2 { color: #000; margin-bottom: 8px; }
.cta-inner p { color: #1a1a1a; margin-bottom: 22px; font-weight: 500; font-size: 1.1rem; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-us {
    padding: 60px 0 70px 0;
}
.red-line {
    width: 50px;
    height: 3px;
    background: var(--c-red);
    margin-top: 6px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.feature-box {
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    padding: 28px;
    border-radius: var(--radius-md);
    position: relative;
    transition: border-color 0.2s ease;
}
.feature-box:hover {
    border-color: var(--c-yellow);
}
.f-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    margin-bottom: 8px;
}
.feature-box h4 { color: #fff; margin-bottom: 10px; font-size: 1.35rem; }

/* ==========================================================================
   CONTACT SECTION & FORMS
   ========================================================================== */
.contact-section {
    padding: 65px 0 75px 0;
    background: var(--c-panel);
    border-top: 1px solid var(--c-border);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid var(--c-yellow);
    padding: 14px 18px;
    margin: 20px 0 28px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.guarantee-box i { font-size: 1.5rem; color: var(--c-yellow); }
.guarantee-box strong { display: block; color: #fff; font-size: 1rem; }
.guarantee-box span { font-size: 0.85rem; color: var(--c-dim); }

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.c-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-surface);
    color: var(--c-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.c-label { display: block; font-size: 0.78rem; color: #888; text-transform: uppercase; }
.c-val { color: #fff; font-size: 1rem; font-weight: 500; }

.form-container {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-yellow);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #ccc;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: #080808;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-yellow);
    background: #000;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.form-checkbox input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--c-yellow);
}
.form-checkbox label {
    font-size: 0.82rem;
    color: #999;
}

.microcopy {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #777;
    text-align: center;
}
.microcopy i { color: var(--c-green); margin-right: 4px; }

.form-feedback {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    display: none;
}
.form-feedback.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--c-green);
    color: #34d399;
}
.form-feedback.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--c-red);
    color: #f87171;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 45px 0 25px 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links a { color: #888; font-size: 0.9rem; }
.footer-links a:hover { color: var(--c-yellow); }
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 0.82rem;
    color: #555;
    text-align: center;
}

/* ==========================================================================
   MODAL DIALOG (GLASS & CARD DESIGN)
   ========================================================================== */
dialog {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
}
dialog:not([open]) { display: none; }
dialog::backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-card {
    background: #141414;
    border: 1px solid #2e2e2e;
    width: 100%;
    max-width: 680px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-modal);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    background: #0d0d0d;
    padding: 20px 24px;
    border-bottom: 2px solid var(--c-yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.m-icon {
    width: 40px;
    height: 40px;
    background: var(--c-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.modal-sub {
    font-size: 0.8rem;
    color: #888;
    display: block;
}
.modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.modal-body {
    padding: 26px 24px;
    overflow-y: auto;
}
.modal-body h3 { color: #fff; margin-bottom: 12px; }
.modal-body p { margin-bottom: 22px; }

.modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.benefit-item {
    display: flex;
    gap: 14px;
    background: var(--c-dark);
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--c-yellow);
}
.benefit-item i { color: var(--c-yellow); font-size: 1.3rem; margin-top: 2px; }
.benefit-item strong { display: block; color: #fff; font-size: 0.98rem; }
.benefit-item span { font-size: 0.88rem; color: var(--c-dim); }

.modal-footer {
    background: #0d0d0d;
    padding: 16px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--c-border);
}

/* ==========================================================================
   WHATSAPP & COOKIES
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff !important;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.55);
    z-index: 9000;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-badge { display: none; }

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #141414;
    border: 1px solid #333;
    border-left: 4px solid var(--c-yellow);
    padding: 18px;
    border-radius: var(--radius-md);
    z-index: 10000;
    box-shadow: var(--shadow-modal);
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.cookie-popup.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.cookie-popup h4 { color: var(--c-yellow); font-size: 1.15rem; margin-bottom: 6px; }
.cookie-popup p { font-size: 0.85rem; color: #bbb; margin-bottom: 14px; }
.cookie-actions { display: flex; align-items: center; gap: 14px; }
.cookie-link { font-size: 0.85rem; color: #888; text-decoration: underline; }

/* ==========================================================================
   DESKTOP RESPONSIVE BREAKPOINT (min-width: 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .hero { padding: 80px 0 90px 0; }
    .hero-grid { grid-template-columns: 1.25fr 0.75fr; gap: 60px; }
    .hero-visual { display: block; }
    
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .footer-content { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    
    /* Desktop Modal Centering */
    dialog {
        align-items: center;
    }
    .modal-card {
        border-radius: var(--radius-lg);
        animation: scaleUp 0.25s ease;
    }
    @keyframes scaleUp {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }
    
    .cookie-popup { max-width: 400px; left: auto; right: 25px; bottom: 25px; }
}

/* ==========================================================================
   MOBILE & TABLET NAVIGATION (max-width: 991px)
   ========================================================================== */
@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 69px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 2px solid var(--c-yellow);
        display: none;
        padding: 30px 24px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.85);
    }
    .main-nav.active { display: block; }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .main-nav a { font-size: 1.15rem; }
    .mobile-menu-btn { display: flex; }
    
    .top-location { display: none; }
}

/* ==========================================================================
   LEGAL PAGES (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */
.legal-page {
    background-color: var(--c-dark);
}
.legal-container {
    padding: 50px 0 80px 0;
}
.legal-card {
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    border-top: 3px solid var(--c-yellow);
    padding: clamp(24px, 5vw, 45px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.legal-section {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 25px;
}
.legal-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.legal-section h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 14px;
}
.legal-section h3 {
    font-size: 1.25rem;
    color: var(--c-yellow);
    margin-top: 18px;
    margin-bottom: 8px;
}
.legal-section p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--c-dim);
}
.legal-highlight {
    background: var(--c-surface);
    border-left: 3px solid var(--c-yellow);
    padding: 16px 20px;
    margin-top: 12px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #fff !important;
}
.legal-list {
    list-style: none;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.legal-list li {
    padding-left: 20px;
    position: relative;
    color: var(--c-dim);
    font-size: 0.95rem;
    line-height: 1.55;
}
.legal-list li::before {
    content: "▪";
    color: var(--c-yellow);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1;
}
.legal-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--c-border);
}
