/* ========================================
   KV Finanzservice – Stylesheet
   Farben aus dem Original: Navy, Rot, Weiß
   ======================================== */

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

:root {
    --navy: #1a1f3d;
    --navy-light: #252b4d;
    --red: #c0392b;
    --red-hover: #a93226;
    --green: #27ae60;
    --green-hover: #219a52;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --pink-bg: #fdf0f0;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--gray-800);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }

.btn-cta {
    background: var(--green);
    color: var(--white);
    font-size: 1.05rem;
    padding: 16px 40px;
}
.btn-cta:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    padding: 0 0;
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.2); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 48px;
    width: auto;
}
.logo-text { color: var(--red); }
.logo-accent { color: var(--white); }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}
.main-nav a {
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('../img/hero-startseite.jpg') center/cover no-repeat;
    margin-top: 72px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,31,61,0.85) 0%, rgba(26,31,61,0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 80px 0;
}
.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* --- ZIELGRUPPEN --- */
.zielgruppen {
    padding: 100px 0;
    background: var(--white);
}
.zielgruppen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.zielgruppe-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.zielgruppe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.zielgruppe-img { height: 240px; overflow: hidden; }
.zielgruppe-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.zielgruppe-card:hover .zielgruppe-img img { transform: scale(1.05); }

.zielgruppe-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.zielgruppe-body h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.zielgruppe-body p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
    flex: 1;
}

/* --- LEISTUNGEN GEWERBE --- */
.leistungen-gewerbe {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-label {
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.leistung-item {
    text-align: center;
    padding: 32px 20px;
}
.leistung-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--red);
}
.leistung-icon svg { width: 100%; height: 100%; }
.leistung-item h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}
.leistung-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* --- LEISTUNGEN PRIVAT --- */
.leistungen-privat {
    padding: 100px 0;
    background: var(--white);
}
.privat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.privat-card {
    background: var(--pink-bg);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.privat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.privat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--red);
}
.privat-icon svg { width: 100%; height: 100%; }
.privat-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.privat-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* --- CTA SECTION --- */

/* --- TRUST NUMBERS --- */
.trust-numbers {
    padding: 60px 0;
    background: var(--navy);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.number-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.number-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
}
.number-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}
.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

@media (max-width: 1024px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .numbers-grid { grid-template-columns: 1fr 1fr; }
}

/* --- CTA SECTION (original) --- */
.cta-section {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
}
.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}
.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--red);
    color: var(--white);
    padding-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.site-footer h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    opacity: 0.9;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p, .footer-hours p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.85);
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.footer-legal a:hover { color: var(--white); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .leistungen-grid, .privat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .main-nav.open {
        display: block;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open ul {
        flex-direction: column;
        gap: 4px;
    }
    .main-nav.open a {
        display: block;
        padding: 12px 16px;
    }

    .hero { min-height: 70vh; }
    .hero h1 { font-size: 1.8rem; }

    .zielgruppen-grid { grid-template-columns: 1fr; }
    .leistungen-grid, .privat-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* --- UNTERSEITEN HERO (kleiner) --- */
.page-hero {
    padding: 140px 0 80px;
    background: var(--navy);
    text-align: center;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* --- CONTENT SECTIONS (Unterseiten) --- */
.content-section {
    padding: 80px 0;
}
.content-section:nth-child(even) {
    background: var(--gray-50);
}
.content-section h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.content-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- LEGAL PAGES --- */
.legal-page {
    padding: 120px 0 80px;
}
.legal-page h1 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 32px;
}
.legal-page h2 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-page p, .legal-page li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-page ul { padding-left: 24px; }
.legal-page a {
    color: var(--red);
    text-decoration: underline;
}
.legal-page a:hover { color: var(--red-hover); }

.hero-vorteile {
    background: url('../img/hero-vorteile.jpg') center/cover no-repeat;
    min-height: 60vh;
}
.about-intro {
    text-align: center;
    max-width: 740px;
    margin: -28px auto 60px;
}
.about-lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.services-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.service-block {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.service-header {
    background: var(--navy);
    padding: 24px 32px;
}
.service-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}
.service-list {
    padding: 16px 32px 32px;
}
.service-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}
.service-item:last-child { border-bottom: none; }
.service-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--red);
    margin-top: 2px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-item h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.service-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* --- TEAM --- */

/* --- IMMOBILIEN SECTION --- */
.immo-section {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}
.immo-section .section-label {
    color: rgba(255,255,255,0.6);
}
.immo-section .section-title {
    color: var(--white);
}
.immo-intro {
    text-align: center;
    max-width: 700px;
    margin: -28px auto 60px;
}
.immo-intro p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}
.immo-intro strong {
    color: var(--white);
}
.immo-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.immo-benefit {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.immo-benefit:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.immo-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}
.immo-benefit h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.immo-benefit p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.immo-partners {
    margin-bottom: 48px;
}
.immo-partners-label {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.immo-partner-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.immo-partner {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.1);
}
.immo-partner h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.immo-partner p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.immo-cta {
    text-align: center;
}
.immo-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .immo-benefits { grid-template-columns: 1fr 1fr; }
    .immo-partner-logos { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .immo-benefits { grid-template-columns: 1fr; }
}

/* --- TEAM (original) --- */
.team-section {
    padding: 100px 0;
    background: var(--gray-50);
}
.team-intro {
    text-align: center;
    max-width: 640px;
    margin: -28px auto 60px;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.team-photo {
    position: relative;
    height: 320px;
    background: var(--gray-200);
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.team-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--gray-400);
    gap: 12px;
}
.team-photo-placeholder svg {
    width: 64px;
    height: 64px;
}
.team-photo-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}
/* Hide placeholder when real image loads */
.team-photo img:not([src=""]) ~ .team-photo-placeholder {
    display: none;
}
/* Show placeholder if image fails */
.team-photo img[data-failed="true"] ~ .team-photo-placeholder {
    display: flex;
}

.team-info {
    padding: 32px;
}
.team-info h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.team-role {
    color: var(--red);
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 16px !important;
    letter-spacing: 0.02em;
}
.team-bio {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px !important;
}
.team-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.team-contact a {
    font-size: 0.88rem;
    color: var(--gray-600);
    transition: color var(--transition);
}
.team-contact a:hover { color: var(--red); }

@media (max-width: 768px) {
    .services-duo, .team-grid {
        grid-template-columns: 1fr;
    }
    .team-photo { height: 260px; }
}

/* --- KONTAKT --- */
.hero-kontakt {
    background: url('../img/hero-kontakt.jpg') center/cover no-repeat;
    min-height: 50vh;
}

.booking-intro {
    text-align: center;
    max-width: 600px;
    margin: -28px auto 40px;
    color: var(--gray-600);
    font-size: 1.05rem;
}
.booking-embed {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}
.booking-cta {
    text-align: center;
    margin: 0 auto;
}
.btn-large {
    font-size: 1.15rem;
    padding: 20px 48px;
}
.booking-hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.contact-details {
    padding: 80px 0;
    background: var(--gray-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-block h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 32px;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.contact-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-card h4 {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.contact-card a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}
.contact-card a:hover { color: var(--red); }
.contact-card p {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}
.contact-name {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 400;
    margin-left: 4px;
}

.contact-quick h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.quick-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-quick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: all var(--transition);
}
.btn-quick svg { width: 20px; height: 20px; }
.btn-quick:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #1da851; }
.btn-linkedin { background: #0A66C2; }
.btn-linkedin:hover { background: #084e96; }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* --- FALLSTUDIEN --- */
.hero-fallstudien {
    background: url('../img/hero-fallstudien.jpg') center/cover no-repeat;
    min-height: 50vh;
}

.case-study {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
    border-left: 4px solid var(--red);
    transition: transform var(--transition), box-shadow var(--transition);
}
.case-study:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.case-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.case-content {
    padding: 40px;
}

.case-text h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 16px;
    padding-right: 120px;
    line-height: 1.4;
}

.case-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.case-meta span {
    font-size: 0.88rem;
    color: var(--gray-600);
}

.case-situation, .case-solution, .case-results {
    margin-bottom: 20px;
}
.case-situation h4, .case-solution h4, .case-results h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 8px;
}
.case-situation p, .case-solution p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.result-numbers {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.result-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
}
.result-label {
    font-size: 0.82rem;
    color: var(--gray-600);
    max-width: 160px;
}

@media (max-width: 768px) {
    .case-text h3 { padding-right: 0; font-size: 1.2rem; }
    .case-badge { position: static; display: inline-block; margin-bottom: 16px; }
    .case-content { padding: 24px; }
    .case-meta { flex-direction: column; gap: 8px; }
    .result-numbers { flex-direction: column; gap: 20px; }
}

/* --- AKTUELLES / BLOG --- */
.hero-aktuelles {
    background: url('../img/hero-aktuelles.jpg') center/cover no-repeat;
    min-height: 50vh;
}

.article-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}
.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.article-card:hover .article-img img { transform: scale(1.05); }

.article-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.badge-ratgeber {
    background: var(--navy);
    color: var(--white);
}
.badge-news {
    background: var(--red);
    color: var(--white);
}

.article-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-date {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.article-body h3 {
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 12px;
}
.article-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
}
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}
.article-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}
.article-read {
    font-size: 0.78rem;
    color: var(--gray-400);
}

@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
}
