
    /* Flatpickr display rules removed - Flatpickr manages visibility itself */


/* ========================================
   STYLE BLOCK SEPARATOR
   ======================================== */



/* ===== MOBILE FIXES ===== */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}



  /* Der 109 originalpreis   <span style="text-decoration: line-through; color: #D96C4A; font-size: 0.9em; margin-right: 10px;">109 €</span>99 €    */
  /* Deine CSS Klasse */
        .schraeg-durchgestrichen {
            position: relative;
            display: inline-block;
            color: #272727; /* Optional: Alte Farbe etwas blasser */
            font-size: 0.8em; /* Optional: Alter Preis etwas kleiner */
            margin-right: 10px; /* Abstand zum neuen Preis */
        }

        .schraeg-durchgestrichen::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -2%;
            width: 104%;  /* 104% damit der Strich etwas übersteht */
            height: 1px;
            background: #D96C4A; /* Rote Streichfarbe */
            transform: rotate(-12deg);
        }

        /* Styling für den neuen Preis zum Vergleich */
        .neuer-preis {
            color: #d32f2f;
            font-weight: bold;
            font-size: 1.2em;
        }



   /* --- Flatpickr Layout & Größe Fix (Responsive) --- */


        
/* 2. Header (Monat/Jahr) reparieren */
.flatpickr-months .flatpickr-month {
    height: 50px !important;      /* Deutlich mehr Platz für den Header */
    overflow: visible !important; /* Verhindert Abschneiden von Oberlängen */
}


        

/* 1. Kalender breiter, aber mobilfreundlich */
.flatpickr-calendar {
    width: 100% !important;       /* Nutzt verfügbare Breite */
    max-width: 360px !important;  /* Aber nicht breiter als 360px */
    margin-top: 15px !important;  /* Abstand nach oben */
}

/* Container-Zentrierung (falls er mal kleiner ist als der Bildschirm) */
.flatpickr-calendar.static {
    margin-left: auto;
    margin-right: auto;
}

/* Damit die Tage die neue Breite auch ausfüllen */
.flatpickr-days, 
.dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

/* Tage gleichmäßig verteilen (wichtig bei variabler Breite) */
.flatpickr-day {
    max-width: initial !important; /* Entfernt die fixe max-width der Tage */
    flex-basis: 14.28% !important; /* 100% / 7 Tage = 14.28% */
}




        
        /* --- LOKALE SCHRIFTEN --- */
        @font-face {
            font-family: 'Clash Display';
            src: url('assets/fonts/ClashDisplay-Medium.woff2') format('woff2');
            font-weight: 500; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'Clash Display';
            src: url('assets/fonts/ClashDisplay-Semibold.woff2') format('woff2');
            font-weight: 600; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'Clash Display';
            src: url('assets/fonts/ClashDisplay-Bold.woff2') format('woff2');
            font-weight: 700; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'General Sans';
            src: url('assets/fonts/GeneralSans-Regular.woff2') format('woff2');
            font-weight: 400; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'General Sans';
            src: url('assets/fonts/GeneralSans-Medium.woff2') format('woff2');
            font-weight: 500; font-style: normal; font-display: swap;
        }
        @font-face {
            font-family: 'General Sans';
            src: url('assets/fonts/GeneralSans-Semibold.woff2') format('woff2');
            font-weight: 600; font-style: normal; font-display: swap;
        }

        :root {
            --bg-paper: #F4F4F2;
            --text: #111;
            --accent-warm: #C6A87C;
            --radius: 24px;
            --font-head: 'Clash Display', sans-serif;
            --font-body: 'General Sans', sans-serif;
            --invest-bg: #4A4036;
            --card-bg-start: #FFFCF7;
            --card-bg-end: #F0EBE0;
            --rw-bg: #ffffff;
            --rw-text: #222;
            --rw-sub: #666;
            --rw-star: #fbbc04;
            --rw-progress: #889e88;
            --rw-arrow-bg: rgba(255, 255, 255, 0.9);
            --rw-arrow-hover: #fff;
        }

        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        /* WICHTIG FÜR MODAL FIX: Verhindert Scrollen des Body */
        body.no-scroll { overflow: hidden; height: 100vh; }

        body { margin: 0; padding: 0; 
            background-color: #dcd9d4; 
            background-image: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(0,0,0,0.2)), url("assets/img/concrete-wall.png");
            background-attachment: fixed;
            color: var(--text); font-family: var(--font-body); overflow-x: hidden;
            display: flex; justify-content: center;
        }

        .wrapper {
            width: 100%; max-width: 1200px; background: var(--bg-paper); min-height: 100vh;
            box-shadow: 0 0 100px rgba(0,0,0,0.2); position: relative; padding-bottom: 50px; 
            margin: 0 auto !important; padding-top: 0 !important;}

        .reveal { opacity: 0; transform: translateY(60px) scale(0.98); transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.1); }
        .reveal.active { opacity: 1; transform: translateY(0) scale(1); }

        /* --- HERO --- */
        .hero { position: relative; height: 85vh; background: black; border-radius: 0 0 40px 40px; overflow: hidden; margin-bottom: 30px; z-index: 1; }
        .hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; will-change: transform; }
        .hero-overlay { 
            position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
            padding: 0 30px 10px 30px; 
            background: linear-gradient(to top, rgba(106, 128, 106, 0.5) 0%, rgba(136, 158, 136, 0.2) 60%, transparent 100%); 
            color: white; 
            display: flex; flex-direction: column; align-items: flex-start;
            justify-content: flex-end; 
        }
        
        .hero-badge {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 8px 18px; border-radius: 50px;
            margin-bottom: 20px;
            font-size: 0.75rem; letter-spacing: 1px; font-weight: 600; text-transform: uppercase;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            text-decoration: none; color: white; transition: 0.3s;
        }
        .hero-badge:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
        .hero-badge i { font-size: 0.9rem; }

        .hero h1 { font-size: clamp(3rem, 8vw, 4.5rem); line-height: 0.95; margin-bottom: 10px; }
        .scroll-indicator { 
            margin-top: 20px; font-size: 2rem; color: rgba(255,255,255,0.7); 
            animation: pulseDown 2s infinite; align-self: flex-start; margin-left: 20px; 
        }
        @keyframes pulseDown { 0% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(10px); opacity: 1; } 100% { transform: translateY(0); opacity: 0.5; } }

        /* --- ARTIST STYLE --- */
        .artist-section { padding: 40px 20px 80px 20px; display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
        .artist-circle-wrapper {
            position: relative; width: 400px; height: 400px; border-radius: 50%;
            border: 8px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            overflow: hidden; 
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            background: #ddd; flex-shrink: 0;
        }
        #artistCircle { cursor: pointer; }
        .artist-avatar { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 2; transition: opacity 0.3s; }
        .artist-video { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 1; opacity: 0; transition: opacity 0.1s; }
        .flash-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: white; z-index: 10; pointer-events: none; opacity: 0; transition: opacity 0.1s; }
        .play-hint { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 3rem; opacity: 0; z-index: 5; text-shadow: 0 5px 15px rgba(0,0,0,0.3); pointer-events: none; transition: 0.3s; }
        #artistCircle:hover .play-hint { opacity: 0.8; }
        #artistCircle.playing .play-hint { opacity: 0 !important; }
        .artist-bubble { background: #EAEAE8; padding: 40px; border-radius: 30px; border-bottom-left-radius: 0; position: relative; max-width: 400px; }
        .artist-name { font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; color: #D96C4A; }

        /* --- GALLERY (PHYSICS ENABLED) --- */
        .gallery-wrap { 
            padding: 40px 0; margin: 0 !important; 
            overflow: hidden; 
            background: white; 
            cursor: grab; 
            user-select: none;
            touch-action: pan-y; /* Erlaubt vertikales Scrollen, fängt horizontal ab */
        }
        .gallery-wrap.grabbing { cursor: grabbing; }
        .gallery-track { 
            display: flex; 
            gap: 30px; 
            width: max-content; 
            will-change: transform; 
            padding-left: 20px; 
            padding-right: 20px; 
        }
        .gallery-item { 
            width: 600px; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.1); flex-shrink: 0; 
            pointer-events: none; 
        }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; pointer-events: none; }

        /* --- SOCIAL PROOF --- */
        .social-proof { 
            padding: 60px 20px; 
            display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
            align-items: center; max-width: 1100px; margin: 0 auto;
        }
        .social-left { text-align: center; }
        .google-box-static { display: inline-flex; align-items: center; gap: 15px; background: white; padding: 15px 30px; border-radius: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 40px; }
        .stars-static { color: #F4B400; font-size: 1.2rem; }
        .logo-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; opacity: 0.5; font-weight: 700; font-size: 1rem; line-height: 1.8; }
        .logo-row span { white-space: nowrap; }

        /* --- GOOGLE REVIEW WIDGET --- */
        .review-widget {
            width: 100%; max-width: 400px; height: 260px; 
            background: var(--rw-bg); border-radius: 20px; padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: relative;
            overflow: hidden; box-sizing: border-box; user-select: none;
            margin: 0 auto; border: 1px solid rgba(0,0,0,0.05);
        }
        .google-badge {
            position: absolute; top: 20px; right: 20px;
            display: flex; align-items: center; gap: 5px;
            font-size: 13px; font-weight: 500; color: #5f6368; z-index: 10;
        }
        .google-badge img, .google-badge svg { width: 18px; height: 18px; }
        .slides-container { width: 100%; height: 100%; position: relative; touch-action: pan-y; }
        .review-slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0; transform: translateX(15px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            pointer-events: none; display: flex; flex-direction: column;
        }
        .review-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
        .review-header { margin-top: 5px; margin-bottom: 15px; display: flex; align-items: center; }
        .avatar {
            width: 42px; height: 42px; background-color: #f1f3f4; color: #5f6368;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-weight: 600; font-size: 18px; margin-right: 12px; flex-shrink: 0;
        }
        .user-info { display: flex; flex-direction: column; text-align: left; }
        .user-name { font-weight: 700; font-size: 16px; color: var(--rw-text); margin-bottom: 2px; }
        .stars-date { display: flex; align-items: center; font-size: 13px; color: var(--rw-sub); }
        .stars { color: var(--rw-star); margin-right: 6px; letter-spacing: 0px; font-size: 15px; }
        .review-text {
            font-size: 16px; line-height: 1.5; color: #3c4043; text-align: left;
            display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical;
            overflow: hidden; text-overflow: ellipsis;
        }
        .nav-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 32px; height: 32px; background: var(--rw-arrow-bg);
            border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            display: flex; justify-content: center; align-items: center;
            cursor: pointer; z-index: 20; font-size: 18px; color: #555;
            transition: all 0.2s; opacity: 0; 
        }
        .review-widget:hover .nav-btn { opacity: 1; }
        .nav-btn:hover { background: var(--rw-arrow-hover); transform: translateY(-50%) scale(1.1); color: #222; }
        .prev-btn { left: -10px; }
        .next-btn { right: -10px; }
        .progress-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: #f5f5f5; }
        .progress-bar { height: 100%; background-color: var(--rw-progress); width: 0%; transition: width 0.1s linear; }
        .paused .progress-bar { transition: none !important; }

        /* --- INVESTITION --- */
        .pricing-section {
            background: var(--invest-bg); color: #FDFBF7;
            padding: 80px 20px; border-radius: 40px; margin: 40px 0; position: relative; z-index: 2;
        }
        .pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
        .pkg-card {
            background: linear-gradient(to bottom right, var(--card-bg-start), var(--card-bg-end));
            border-radius: var(--radius); padding: 40px; color: #111;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); position: relative; 
            transition: transform 0.4s; overflow: visible; display: flex; flex-direction: column;
        }
        .pkg-shine-wrap {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden; pointer-events: none;
        }
        .pkg-shine-wrap::after { 
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; 
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent); 
            transform: skewX(-25deg); transition: 0.5s; 
        }
        .pkg-card:hover .pkg-shine-wrap::after { left: 150%; transition: 0.7s ease-in-out; }
        .pkg-card:hover { transform: translateY(-8px); }
        .pkg-card.featured { border: 2px solid var(--accent-warm); transform: scale(1.03); z-index: 2; }
        .pkg-card.featured::before { 
            content: 'Empfehlung'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); 
            background: var(--accent-warm); color: white; padding: 6px 16px; border-radius: 20px; 
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .pkg-price { font-size: 1.5rem; font-weight: 700; font-family: var(--font-head); margin: 15px 0; color: #111; text-align: center; }
        .pkg-features { margin: 20px 0; list-style: none; flex-grow: 1; }
        .pkg-features li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.08); display: block; color: #444; font-size: 0.95rem; }
        .pkg-features li strong { color: #111; display: block; margin-bottom: 4px; }
        .btn-card { display: block; width: 100%; padding: 15px; text-align: center; background: #222; color: white; text-decoration: none; border-radius: 12px; font-weight: 700; margin-top: 20px; cursor: pointer; }
        .pkg-card.featured .btn-card { background: var(--accent-warm); }
        .price-note { margin-top: 40px; padding: 30px; background: rgba(255,255,255,0.05); border-radius: 20px; font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.8); }

        /* --- B2B SECTIONS --- */
        .b2b-section { margin: 80px 20px; background: #EAE8E4; border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .b2b-content { padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; }
        .b2b-img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
        .btn-b2b { display: inline-block; background: #111; color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; align-self: start; cursor: pointer; }
        
        /* --- FAQ GRID --- */
        .faq-wrap { padding: 30px 20px 20px 20px; display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
        .faq-img-container { line-height: 0; margin: 0; padding: 0; }
        .faq-img { width: 100%; border-radius: 20px; height: 100%; min-height: 480px; object-fit: cover; display: block; }
        .faq-content { padding-top: 0; margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
        .faq-item { background: white; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); width: 100%; }
        .faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
        .faq-icon { transition: transform 0.3s; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: #555; line-height: 1.6; }
        .faq-item.active .faq-answer { max-height: 400px; padding-bottom: 20px; }

        /* --- KONTAKT & MAP --- */
        .contact-wrap { margin: 20px 20px 40px 20px; padding: 60px 40px; background: white; border-radius: var(--radius); }
        .contact-info-block { display: flex; gap: 50px; align-items: center; margin-bottom: 60px; flex-wrap: wrap; justify-content: center; }
        .contact-avatar-xxl { width: 450px; height: 450px; border-radius: 50%; object-fit: cover; border: 10px solid #F4F4F2; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
        .contact-text { max-width: 400px; font-size: 1.1rem; line-height: 1.8; }
        .map-separate { width: 100%; height: 400px; border-radius: 24px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; }
        .map-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; z-index: 10; background-image: url('https://denkenfeld.github.io/senior/22-karte.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; transition: 0.3s; }
        .map-placeholder:hover { transform: scale(1.02); }
        .placeholder-content { width: 100%; text-align: center; padding-bottom: 30px; padding-top: 80px; background: linear-gradient(to top, rgba(136,158,136,0.8) 0%, transparent 100%); }
        .load-btn { background-color: white; color: #111; border: none; padding: 10px 25px; font-size: 0.9rem; font-weight: 600; border-radius: 50px; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .load-btn:hover { background-color: var(--accent-warm); color: white; }
        .privacy-note { display: block; margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.7); }
        .privacy-note a { color: white; text-decoration: underline; }
        .map-iframe-container { width: 100%; height: 100%; }
        .map-iframe-container iframe { width: 100% !important; height: 100% !important; border: 0; filter: grayscale(100%) sepia(10%); }

        /* --- BOTTOM ABOUT --- */
        .bottom-about { padding: 40px 20px 80px 20px; display: flex; justify-content: center; }
        .about-bubble { background: #EAEAE8; padding: 60px; border-radius: 40px; max-width: 700px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: left; display: flex; flex-direction: column; align-items: center; }
        
        /* --- FOOTER & UP BTN --- */
        .footer-container { padding: 40px 20px; text-align: center; color: #999; }
        .back-to-top { display: inline-flex; width: 50px; height: 50px; border: 1px solid #ccc; border-radius: 50%; align-items: center; justify-content: center; color: #555; text-decoration: none; margin-bottom: 30px; transition: 0.3s; }
        .back-to-top:hover { background: #111; border-color: #111; color: white; transform: translateY(-5px); }
        .footer-links { font-size: 0.8rem; line-height: 2; }
        .footer-links a { color: #777; text-decoration: none; margin: 0 10px; transition: 0.3s; cursor: pointer; }
        .footer-links a:hover { color: #000; }

        /* --- MODAL (Basis) --- */
        .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: 9999; justify-content: center; align-items: center; padding: 20px; }
        .modal-overlay.active { display: flex; }
        .modal-content { background: white; width: 100%; max-width: 800px; height: 90vh; border-radius: 20px; padding: 40px; overflow-y: auto; position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); -webkit-overflow-scrolling: touch; }
        .close-modal { position: sticky; top: 0; float: right; background: none; border: none; font-size: 2rem; color: #111; cursor: pointer; z-index: 100; }
        .legal-text { font-size: 0.9rem; line-height: 1.6; color: #333; }
        .legal-text h2 { margin-top: 30px; margin-bottom: 15px; font-family: var(--font-head); }
        .legal-text p { margin-bottom: 15px; }

        @media(max-width: 900px) {
            .faq-wrap { grid-template-columns: 1fr; }
            .hero h1 { font-size: 3rem; }
            .artist-circle-wrapper, .contact-avatar-xxl { width: 340px; height: 340px; }
            .gallery-item { width: 500px; }
            .faq-img { height: 200px; min-height: 200px; }
            .wrapper { width: 100%; margin: 0; box-shadow: none; }
            .about-bubble { padding: 20px !important; max-width: 100%; }
            .faq-wrap { padding: 40px 15px 20px 15px; }

            .modal-content { padding: 20px; width: 95%; max-width: 100%; }
            .social-proof { grid-template-columns: 1fr; gap: 30px; }
            .social-left { text-align: center; }
            .review-widget { max-width: 100%; }

            /* === MOBILE FIXES === */
            .wrapper { padding-left: 0 !important; padding-right: 0 !important; }
            .pricing-section { margin-left: 0 !important; margin-right: 0 !important; border-radius: 0; padding-left: 0 !important; padding-right: 0 !important; }
            .steps-section { padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; }
            .faq-content h2 { font-size: 1.8rem !important; line-height: 1.3 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }
            .cta-section { margin-left: 0 !important; margin-right: 0 !important; padding-left: 20px !important; padding-right: 30px !important; max-width: 100% !important; }
            .job-accordion { margin-left: 0 !important; margin-right: 0 !important; padding-left: 15px !important; padding-right: 25px !important; }
            .job-card { margin-left: 0 !important; margin-right: 0 !important; }
            .job-section { padding-left: 15px !important; padding-right: 25px !important; }
            #investition { margin-left: 0 !important; margin-right: 0 !important; }
        }

        .call-fab { position: fixed; bottom: 30px; right: 30px; z-index: 1000; background: #111; color: white; height: 60px; border-radius: 30px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); text-decoration: none; overflow: hidden; padding: 0 25px; width: auto; transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .call-fab.collapsed { width: 60px; padding: 0; }
        .fab-content { display: flex; align-items: center; white-space: nowrap; }
        .fab-text { margin-right: 15px; font-weight: 600; font-size: 0.95rem; display: flex; flex-direction: column; width: 110px; transition: 0.4s; }
        .call-fab.collapsed .fab-text { opacity: 0; width: 0; margin: 0; }
        .status-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; display: inline-block; margin-right: 5px; box-shadow: 0 0 8px #4CAF50; }
        .fab-icon { font-size: 1.2rem; }

        .btn-card, .btn-b2b { transition: all 0.3s ease; }
        .btn-card:hover, .btn-b2b:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.25); opacity: 0.9; }
        .faq-question { transition: all 0.3s ease; }
        .faq-question:hover { background-color: #f9f9f9; color: var(--accent-warm); }

        

/* Logo Styling - Verhindert Bescheiden */
.hero-logo {
    display: block;
    width: 55% !important;   /* Breite Handy */
    max-width: 280px;        /* Damit es auf großen Handys nicht zu riesig wird */
    height: auto !important; /* WICHTIG: Erhält das Seitenverhältnis */
    object-fit: contain !important; /* Verhindert das Bescheiden/Abschneiden */
    margin-bottom: 20px;     /* Abstand zum Text darunter */
    align-self: flex-start;  /* Richtet es linksbündig am Text aus */
}

/* Anpassung für Desktop */
@media (min-width: 900px) {
    .hero-logo {
        width: 25% !important; /* Breite Desktop */
        max-width: 350px;
    }
}

        

    
    /* Grüner Hintergrund Bereich */
    .faq-wrap h2 { color: #fff; }
    .faq-wrap { background: transparent; }
    .faq-content { background: transparent; }
    .faq-item { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
    .faq-question { color: #fff; }
    .faq-answer { color: #e5e7eb; }
    .faq-answer strong { color: #fff; }
    footer { background: transparent; color: #e5e7eb; }
    footer a { color: #10b981; }
    footer a:hover { color: #34d399; }

        /* --- KONTAKT TIMELINE STYLE MIT SCROLL FILL --- */
        .contact-timeline {
            position: relative;
            padding-left: 40px;
            max-width: 400px;
        }

        .contact-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #e3e8e3;
            z-index: 0;
        }

        .contact-timeline::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            background: #889e88;
            height: 0%;
            transition: height 0.2s linear;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 0;
            z-index: 2;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: #889e88;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #889e88;
            z-index: 3;
        }

        .timeline-item strong {
            display: block;
            color: #889e88;
            margin-bottom: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .timeline-item div {
            color: #5d4e37;
            line-height: 1.6;
            font-size: 1rem;
        }

        .timeline-item a {
            color: #5d4e37;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .timeline-item a:hover {
            color: #889e88;
        }

    

/* ========================================
   STYLE BLOCK SEPARATOR
   ======================================== */


        body {
            margin: 0;
            padding: 20px;
            background: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .vitakreis-calculator * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .vitakreis-calculator {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            width: calc(100% - 40px);
            max-width: 480px;
            margin: 20px auto;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            color: #5d4e37;
        }

        .vitakreis-calculator .vk-header {
            background: linear-gradient(135deg, #889e88 0%, #6f856f 100%);
            padding: 20px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .vitakreis-calculator .vk-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255,255,255,0.1) 50%, 
                transparent 70%);
            animation: vk-shine 3s infinite;
        }

        @keyframes vk-shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .vitakreis-calculator .vk-header h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }

        .vitakreis-calculator .vk-header p {
            font-size: 14px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .vitakreis-calculator .vk-content {
            padding: 20px;
        }

        .vitakreis-calculator .vk-tarif-indicator {
            background: linear-gradient(135deg, #e3e8e3 0%, #d6ded6 100%);
            border: 2px solid #889e88;
            border-radius: 12px;
            padding: 14px 16px;
            box-shadow: 0 2px 10px rgba(136, 158, 136, 0.15);
            margin-bottom: 20px;
        }

        .vitakreis-calculator .vk-tarif-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .vitakreis-calculator .vk-tarif-name-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vitakreis-calculator .vk-tarif-name {
            font-size: 15px;
            font-weight: 700;
            color: #889e88;
            text-shadow: 0 1px 2px rgba(136, 158, 136, 0.2);
        }

        .vitakreis-calculator .vk-tarif-info {
            font-size: 12px;
            color: #8b7355;
            font-weight: 500;
        }

        .vitakreis-calculator .vk-tarif-rate {
            font-size: 22px;
            font-weight: 800;
            color: #889e88;
            text-shadow: 0 1px 3px rgba(136, 158, 136, 0.3);
        }

        .vitakreis-calculator .vk-tarif-progress {
            display: flex;
            gap: 4px;
            align-items: center;
            margin-bottom: 10px;
        }

        .vitakreis-calculator .vk-progress-segment {
            flex: 1;
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .vitakreis-calculator .vk-progress-segment.active {
            background: linear-gradient(90deg, #889e88 0%, #6f856f 100%);
            box-shadow: 0 2px 8px rgba(136, 158, 136, 0.5);
        }

        .vitakreis-calculator .vk-progress-segment.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255,255,255,0.4), 
                transparent);
            animation: vk-progressShine 2s infinite;
        }

        @keyframes vk-progressShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .vitakreis-calculator .vk-progress-segment.completed {
            background: linear-gradient(135deg, #b0c4b0 0%, #9fb09f 100%);
        }

        .vitakreis-calculator .vk-tarif-labels {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: #8b7355;
            margin-top: 6px;
        }

        .vitakreis-calculator .vk-tarif-label {
            flex: 1;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .vitakreis-calculator .vk-tarif-label.active {
            color: #889e88;
            font-weight: 700;
        }

        .vitakreis-calculator .vk-input-group {
            margin-bottom: 16px;
        }

        .vitakreis-calculator .vk-input-label {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: #5d4e37;
            margin-bottom: 8px;
        }

        .vitakreis-calculator input[type="range"] {
            width: 100%;
            -webkit-appearance: none;
            height: 18px;
            background: #e5e7eb;
            border-radius: 3px;
            outline: none;
            margin: 25px 0;
        }

        @keyframes sliderPulse {
            0% { transform: scale(1); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
            50% { transform: scale(1.12); box-shadow: 0 4px 16px rgba(136, 158, 136, 0.45), 0 0 0 6px rgba(136, 158, 136, 0.18); }
            100% { transform: scale(1); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 44px;
            height: 44px;
            background: radial-gradient(circle at center, #889e88 0%, #6f856f 50%, rgba(136, 158, 136, 0.35) 50%, rgba(136, 158, 136, 0.15) 75%, transparent 75%);
            cursor: pointer;
            border-radius: 50%;
            border: none;
            animation: sliderPulse 2s ease-in-out infinite;
        }

        input[type="range"]::-moz-range-thumb {
            width: 44px;
            height: 44px;
            background: radial-gradient(circle at center, #889e88 0%, #6f856f 50%, rgba(136, 158, 136, 0.35) 50%, rgba(136, 158, 136, 0.15) 75%, transparent 75%);
            cursor: pointer;
            border-radius: 50%;
            border: none;
            animation: sliderPulse 2s ease-in-out infinite;
        }

        input[type="range"].paused::-webkit-slider-thumb {
            animation-play-state: paused !important;
        }

        input[type="range"].paused::-moz-range-thumb {
            animation-play-state: paused !important;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            filter: brightness(1.1);
        }

        input[type="range"]::-moz-range-thumb:hover {
            filter: brightness(1.1);
        }



        @keyframes vk-pulse {
            0%, 100% {
                box-shadow: 0 3px 10px rgba(136, 158, 136, 0.5);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 3px 15px rgba(136, 158, 136, 0.8), 0 0 20px rgba(136, 158, 136, 0.4);
                transform: scale(1.08);
            }
        }

        .vitakreis-calculator .vk-range-value {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #889e88;
            margin-top: 8px;
        }

        .vitakreis-calculator .vk-checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: #f9fafb;
            border-radius: 10px;
            cursor: pointer;
            margin-bottom: 8px;
        }

        .vitakreis-calculator .vk-checkbox-group:hover {
            background: #e3e8e3;
        }

        .vitakreis-calculator .vk-checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #889e88;
        }

        .vitakreis-calculator .vk-checkbox-label {
            font-size: 15px;
            font-weight: 500;
            color: #5d4e37;
            cursor: pointer;
            flex: 1;
        }

        /* Insurance Section */
        .vitakreis-calculator .vk-insurance-section {
            background: #f0f4f0;
            border: 2px solid #b0c4b0;
            border-radius: 12px;
            padding: 16px;
            margin-top: 20px;
        }

        .vitakreis-calculator .vk-insurance-title {
            font-size: 14px;
            font-weight: 700;
            color: #5d4e37;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .vitakreis-calculator .vk-pflegegrad-list {
            margin-top: 8px;
            margin-left: 32px;
        }

        .vitakreis-calculator .vk-pflegegrad-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            background: white;
            border-radius: 6px;
            cursor: pointer;
            margin-bottom: 6px;
            transition: background 0.2s ease;
        }

        .vitakreis-calculator .vk-pflegegrad-item:hover {
            background: #e3e8e3;
        }

        .vitakreis-calculator .vk-pflegegrad-item input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #889e88;
        }

        .vitakreis-calculator .vk-pflegegrad-label {
            font-size: 14px;
            font-weight: 500;
            color: #5d4e37;
            cursor: pointer;
            flex: 1;
        }

        /* Result Box */
        .vitakreis-calculator .vk-result-box {
            background: linear-gradient(135deg, #889e88 0%, #6f856f 100%);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            color: white;
            box-shadow: 0 6px 20px rgba(136, 158, 136, 0.4);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .vitakreis-calculator .vk-result-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: vk-glow 4s ease-in-out infinite;
        }

        @keyframes vk-glow {
            0%, 100% { transform: translate(0, 0); opacity: 0.3; }
            50% { transform: translate(-20%, -20%); opacity: 0.6; }
        }

        .vitakreis-calculator .vk-result-label {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }

        .vitakreis-calculator .vk-result-price {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .vitakreis-calculator .vk-result-original {
            font-size: 16px;
            opacity: 0.8;
            text-decoration: line-through;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .vitakreis-calculator .vk-result-breakdown {
            display: flex;
            justify-content: space-around;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.3);
            font-size: 13px;
            position: relative;
            z-index: 1;
        }

        .vitakreis-calculator .vk-breakdown-item {
            text-align: center;
        }

        .vitakreis-calculator .vk-breakdown-label {
            opacity: 0.9;
            margin-bottom: 3px;
            font-size: 12px;
        }

        .vitakreis-calculator .vk-breakdown-value {
            font-size: 16px;
            font-weight: 700;
        }

        .vitakreis-calculator .vk-cta-button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #889e88 0%, #6f856f 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(136, 158, 136, 0.4);
            position: relative;
            overflow: hidden;
        }

        .vitakreis-calculator .vk-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .vitakreis-calculator .vk-cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .vitakreis-calculator .vk-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(136, 158, 136, 0.5);
        }

        .vitakreis-calculator .vk-cta-button:active {
            transform: translateY(0);
        }

        /* Desktop Layout ab 768px */
        @media (min-width: 768px) {
            .vitakreis-calculator {
                max-width: 1200px;
            }

            .vitakreis-calculator .vk-desktop-grid {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 20px;
            }

            .vitakreis-calculator .vk-result-box {
                margin-top: 0;
                margin-bottom: 16px;
            }

            .vitakreis-calculator .vk-insurance-section {
                margin-top: 0;
            }
        }
    

        /* === Availability Widget === */
        .vk-availability-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f0f4f0;
            border: 1px solid #b0c4b0;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.95rem;
            color: #5d4e37;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .vk-availability-pill:hover {
            background: #e8f0e8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(136, 158, 136, 0.3);
        }
        .vk-dot {
            width: 10px; 
            height: 10px; 
            background: #889e88; 
            border-radius: 50%;
            box-shadow: 0 0 0 3px rgba(136, 158, 136, 0.2);
            animation: vk-pulse-dot 2s infinite;
            flex-shrink: 0;
        }
        @keyframes vk-pulse-dot {
            0% { box-shadow: 0 0 0 0 rgba(136, 158, 136, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(136, 158, 136, 0); }
            100% { box-shadow: 0 0 0 0 rgba(136, 158, 136, 0); }
        }

        /* === MOBILE FIX für Kostenrechner & Timeline === */
        @media (max-width: 768px) {
            .vitakreis-calculator {
                width: 100% !important;
                margin: 0 !important;
                border-radius: 0 !important;
            }
            .vk-timeline-wrapper {
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .vk-intro-header {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            .vk-intro-header h2 {
                font-size: 1.6rem !important;
            }
            .vk-step-item {
                padding-left: 60px !important;
                padding-right: 20px !important;
            }
        }

        /* --- KONTAKT TIMELINE STYLE MIT SCROLL FILL --- */
        .contact-timeline {
            position: relative;
            padding-left: 40px;
            max-width: 400px;
        }

        .contact-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #e3e8e3;
            z-index: 0;
        }

        .contact-timeline::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            background: #889e88;
            height: 0%;
            transition: height 0.2s linear;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 0;
            z-index: 2;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: #889e88;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #889e88;
            z-index: 3;
        }

        .timeline-item strong {
            display: block;
            color: #889e88;
            margin-bottom: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .timeline-item div {
            color: #5d4e37;
            line-height: 1.6;
            font-size: 1rem;
        }

        .timeline-item a {
            color: #5d4e37;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .timeline-item a:hover {
            color: #889e88;
        }

    

/* ========================================
   STYLE BLOCK SEPARATOR
   ======================================== */


            .vk-timeline-wrapper { max-width: 1200px; margin: 60px auto 40px auto; padding: 2rem 1rem; }
            .vk-intro-header { text-align: center; margin-bottom: 3rem; }
            .vk-intro-header h2 { color: #889e88; margin-bottom: 0.5rem; font-family: var(--font-head); font-size: 2rem; }
            .vk-intro-header p { color: #5d4e37; font-size: 1.1rem; }
            .vk-timeline-container { position: relative; padding: 1rem 0; }
            .vk-line-bg { position: absolute; background: #e3e8e3; left: 20px; top: 0; bottom: 0; width: 4px; height: auto; border-radius: 4px; z-index: 0; }
            .vk-line-fill { position: absolute; background: #889e88; left: 20px; top: 0; width: 4px; height: 0%; border-radius: 4px; z-index: 1; transition: height 0.1s linear, width 0.1s linear; }
            .vk-steps-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; position: relative; z-index: 2; }
            .vk-step-item { position: relative; padding-left: 60px; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
            .vk-step-item.vk-visible { opacity: 1; transform: translateY(0); }
            .vk-step-dot { position: absolute; left: 12px; top: 0; width: 20px; height: 20px; background: white; border: 4px solid #d6ded6; border-radius: 50%; transition: border-color 0.3s; z-index: 3; }
            .vk-step-item.vk-active .vk-step-dot { border-color: #889e88; transform: scale(1.1); }
            .vk-step-card { background: white; border: 1px solid #e3e8e3; border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
            .vk-step-title { color: #889e88; margin: 0 0 0.5rem 0; font-size: 1.1rem; font-weight: 700; }
            .vk-badge { display: inline-block; background: #f0f4f0; color: #5d4e37; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; margin-bottom: 0.5rem; border: 1px solid #b0c4b0; }
            .vk-step-card p { font-size: 0.9rem; color: #5d4e37; line-height: 1.6; }
            @media (min-width: 768px) {
                .vk-steps-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-top: 40px; }
                .vk-step-item { padding-left: 0; text-align: center; }
                .vk-line-bg { left: 0; right: 0; top: 10px; width: 100%; height: 4px; bottom: auto; }
                .vk-line-fill { left: 0; top: 10px; height: 4px; width: 0%; bottom: auto; }
                .vk-step-dot { left: 50%; top: -38px; transform: translateX(-50%); }
                .vk-step-item.vk-active .vk-step-dot { transform: translateX(-50%) scale(1.1); }
            }
        
        /* --- KONTAKT TIMELINE STYLE MIT SCROLL FILL --- */
        .contact-timeline {
            position: relative;
            padding-left: 40px;
            max-width: 400px;
        }

        .contact-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #e3e8e3;
            z-index: 0;
        }

        .contact-timeline::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            background: #889e88;
            height: 0%;
            transition: height 0.2s linear;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 0;
            z-index: 2;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: #889e88;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #889e88;
            z-index: 3;
        }

        .timeline-item strong {
            display: block;
            color: #889e88;
            margin-bottom: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .timeline-item div {
            color: #5d4e37;
            line-height: 1.6;
            font-size: 1rem;
        }

        .timeline-item a {
            color: #5d4e37;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .timeline-item a:hover {
            color: #889e88;
        }

    

/* ========================================
   STYLE BLOCK SEPARATOR
   ======================================== */


.vk-cta-button-contact {
    width: 100%; 
    max-width: 300px;
    margin-top: 20px;
    padding: 14px; 
    background: linear-gradient(135deg, #889e88 0%, #6f856f 100%); 
    color: white; 
    border: none; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 12px rgba(136, 158, 136, 0.4); 
    position: relative; 
    overflow: hidden;
}

.vk-cta-button-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 158, 136, 0.5);
}

.vk-cta-button-contact:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vk-cta-button-contact:hover:before {
    width: 300px;
    height: 300px;
}

.vk-cta-button-contact:active {
    transform: translateY(0);
}
