@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fcfcfc;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0f4c81;
    --accent-color: #e65c00;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --text-muted: #666666;
}

/* ===== HEADER & NAVIGATION (Mobile-first) ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    z-index: 1100;
}
.logo span { color: var(--accent-color); }

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== MOBILE NAV MENU ===== */
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    padding: 8px 0 16px;
    gap: 0;
}
.nav-menu.open {
    display: flex;
}
.nav-menu > li {
    border-bottom: 1px solid #f0f0f0;
}
.nav-menu > li:last-child {
    border-bottom: none;
    padding: 12px 16px 0;
}
.nav-link {
    display: block;
    padding: 13px 16px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}
.nav-link:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

/* ===== MOBILE DROPDOWN ===== */
.dropdown-toggle::after {
    content: " ▼";
    font-size: 10px;
    vertical-align: middle;
    transition: transform 0.2s;
}
.dropdown-menu {
    display: none;
    background: #f0f4f8;
    padding: 4px 0 8px;
}
.dropdown-menu.open {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 16px 10px 32px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: color 0.2s, background 0.2s;
}
.dropdown-menu li a:hover {
    color: var(--accent-color);
    background: #e6eef5;
}

/* CTA Phone Button */
.cta-phone {
    display: block;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 13px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s;
}
.cta-phone:hover { background-color: #cc5200; }

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
    background-color: var(--light-bg);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumbs a { color: var(--primary-color); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; color: #ccc; }

/* ===== HERO ===== */
.hero {
    background-color: #0d2e4f;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 56px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,76,129,0.88), rgba(26,26,26,0.82));
    z-index: 0;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}
.hero p {
    font-size: 15px;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
    background-color: #cc5200;
    transform: translateY(-1px);
}

/* ===== GENERAL SECTION & CONTAINER ===== */
section {
    padding: 48px 16px;
}
.section-bg { background-color: var(--light-bg); }
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}
.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}
.service-card .read-more {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
}
.service-card .read-more:hover { text-decoration: underline; }

/* ===== INFO BLOCK ===== */
.info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.info-block-text { flex: 1; }
.info-block-graphic {
    flex: 1;
    background: #eaecef;
    border-radius: 8px;
    padding: 28px;
    border-left: 5px solid var(--primary-color);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}
.step-card {
    background: var(--white);
    padding: 22px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.step-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
}
.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-img-placeholder {
    height: 180px;
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}
.project-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 10px;
    display: inline-block;
}
.project-info { padding: 20px; }
.project-info h3 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.project-info p { color: var(--text-muted); font-size: 14px; }
.project-details-list {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
    font-size: 13px;
}
.project-details-list li { margin-bottom: 5px; }

/* ===== BEFORE/AFTER CONTAINER ===== */
.before-after-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}
.ba-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.ba-split {
    display: flex;
    height: 200px;
}
.ba-before, .ba-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    text-align: center;
    font-weight: bold;
}
.ba-before { background-color: #fce8e6; color: #c53030; border-right: 2px solid #fff; }
.ba-after  { background-color: #e6fffa; color: #234e52; }
.ba-info { padding: 16px; }
.ba-info h3 { color: var(--primary-color); margin-bottom: 8px; }

/* ===== TRUST BANNER ===== */
.trust-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 44px 16px;
}
.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.stat-item h4 {
    font-size: 26px;
    color: var(--accent-color);
    margin-bottom: 4px;
    font-weight: 800;
}
.stat-item p { font-size: 13px; font-weight: 500; line-height: 1.4; }

/* ===== REVIEWS GRID ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.review-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.reviewer-name { font-weight: 700; color: #333; font-size: 14px; }
.review-stars { color: #ffb400; font-size: 15px; }
.review-date { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.review-card p { font-size: 14px; color: #444; line-height: 1.6; }

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background: #fdfdfd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}
.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-answer {
    padding: 0 20px 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.contact-info-block {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.contact-info-block h3 { margin-bottom: 16px; color: var(--primary-color); font-size: 18px; }
.contact-list li {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}
.contact-list strong { color: #555; font-size: 12px; text-transform: uppercase; letter-spacing: 0.3px; }
.contact-list span { font-size: 15px; color: #111; margin-top: 2px; }
.contact-form {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.contact-form h3 { margin-bottom: 4px; color: var(--primary-color); font-size: 18px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
    color: #444;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15,76,129,0.08);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-bg);
    color: #cccccc;
    padding: 44px 16px 20px;
    font-size: 14px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #333333;
    text-align: center;
}
.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col p { margin-bottom: 8px; line-height: 1.5; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: var(--accent-color); text-decoration: underline; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #888888;
}

/* ===== TABLET (min-width: 600px) ===== */
@media (min-width: 600px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section-title { font-size: 28px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .before-after-container { grid-template-columns: repeat(2, 1fr); }

    .trust-stats { grid-template-columns: repeat(4, 1fr); }
    .stat-item h4 { font-size: 30px; }
    .stat-item p { font-size: 14px; }

    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
    .footer-col { text-align: left; }
}

/* ===== DESKTOP (min-width: 900px) ===== */
@media (min-width: 900px) {
    /* Hide hamburger, show full nav */
    .hamburger { display: none; }

    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 28px;
        padding: 0;
        box-shadow: none;
        border-top: none;
        background: transparent;
        width: auto;
    }
    .nav-menu > li { border-bottom: none; }
    .nav-menu > li:last-child { padding: 0; }

    .nav-link {
        padding: 10px 0;
        font-size: 14px;
        background: transparent;
    }
    .nav-link:hover { background: transparent; }

    /* Desktop dropdown (hover-based) */
    .nav-item { position: relative; }
    .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        border-radius: 6px;
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        margin: 0;
        pointer-events: none;
    }
    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 14px;
        color: #333;
        background: none;
    }
    .dropdown-menu li a:hover {
        background-color: var(--light-bg);
        color: var(--accent-color);
    }

    /* Layout */
    .hero { padding: 90px 20px; }
    .hero h1 { font-size: 44px; }
    .hero p { font-size: 18px; }

    section { padding: 70px 20px; }
    .section-title { font-size: 32px; }
    .section-desc { font-size: 16px; }

    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .process-steps { grid-template-columns: repeat(4, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .info-block {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .info-block-text { min-width: 0; }
    .info-block-graphic { min-width: 0; padding: 36px; }

    .before-after-container { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .contact-info-block { padding: 35px; }
    .contact-form { padding: 35px; }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        text-align: left;
    }
    .footer-col { text-align: left; }

    .trust-stats { gap: 30px; }
    .stat-item h4 { font-size: 38px; }
    .stat-item p { font-size: 15px; }

    .service-card { padding: 30px; }
    .service-card h3 { font-size: 20px; }
    .service-card p { font-size: 15px; }
}

/* ===== SERVICE CARD ICONS ===== */
.service-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(15,76,129,0.09);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background-color 0.3s;
}
.service-card:hover .service-icon { background-color: rgba(15,76,129,0.16); }
.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 9000;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: -220px;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #e8e8e8;
    padding: 16px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transition: bottom 0.4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { bottom: 0; }
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.cookie-banner p { font-size: 13px; line-height: 1.55; margin: 0; }
.cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept, .cookie-reject {
    padding: 9px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s;
}
.cookie-accept { background-color: var(--accent-color); color: white; }
.cookie-accept:hover { background-color: #cc5200; }
.cookie-reject { background-color: #3a3a4a; color: #e8e8e8; }
.cookie-reject:hover { background-color: #4a4a5a; }
@media (min-width: 600px) {
    .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
    .cookie-banner p { flex: 1; margin-right: 20px; }
}

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
    width: 38px;
    height: 38px;
    background-color: #2e2e2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.social-link:hover { background-color: var(--accent-color); }
.social-link svg { width: 18px; height: 18px; fill: white; }

/* ===== GOOGLE MAPS EMBED ===== */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 32px;
}
.map-container iframe { display: block; width: 100%; height: 320px; }
@media (min-width: 900px) { .map-container iframe { height: 400px; } }

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* ===== FAQ ACCORDION (hidden by default) ===== */
.faq-answer { display: none; }
.faq-answer.open { display: block; }
.faq-item.open .faq-question::after { content: '−'; }

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.trust-badge {
    background: rgba(15,76,129,0.07);
    border: 1px solid rgba(15,76,129,0.18);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 7px;
}
.trust-badge::before { content: '✓'; color: #1a7a1a; font-weight: 700; }

/* ===== ÜBER UNS TEAM CARD ===== */
.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.team-card img { width: 100%; height: 320px; object-fit: cover; }
.team-card-body { padding: 28px; }
.team-card-body h3 { color: var(--primary-color); font-size: 22px; margin-bottom: 10px; }
.team-card-body p { color: var(--text-muted); line-height: 1.65; }
@media (min-width: 700px) {
    .team-card { flex-direction: row; }
    .team-card img { width: 280px; height: auto; flex-shrink: 0; }
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: var(--primary-color);
}
.form-success svg { width: 56px; height: 56px; stroke: #22a; margin: 0 auto 16px; display: block; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; color: var(--primary-color); }
.form-success p { color: var(--text-muted); }

/* ===== FOOTER IMPRESSUM LINKS ===== */
.footer-bottom a { color: #888; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent-color); }
