/* ==========================================================================
   WESTKAMP MEDIA - STYLESHEET FÜR ORTSBEZOGENE UNTERSEITEN
   Gemeinsame Styles für alle lokalen Webdesign-Seiten (Homburg, St. Wendel, ...)
   Ausgelagert aus dem inline Style-Block. Zentral hier pflegen.
   ========================================================================== */

    main {
        background-color: #FDFBF7;
        min-height: 100vh;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

    p, h1, h2, h3, h4, span, strong, a, li, div, button {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        hyphens: none !important;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .matrix-vector-icon, .process-vector-icon, .feature-check-icon, .faq-plus-icon {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
        display: inline-block !important;
    }

    @keyframes flyInLeftSmooth {
        0%   { transform: translateX(-220px) scale(0.96); opacity: 0; }
        60%  { opacity: 1; }
        100% { transform: translateX(0) scale(1); opacity: 1; }
    }

    .animated-card {
        opacity: 0;
        will-change: transform, opacity;
        animation: flyInLeftSmooth 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
    }

    /* Barrierefreiheit: Animation aus, wenn der Nutzer reduzierte Bewegung wünscht */
    @media (prefers-reduced-motion: reduce) {
        .animated-card {
            animation: none;
            opacity: 1;
        }
    }

    .hero-section {
        position: relative;
        min-height: 45vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: clamp(40px, 6vw, 80px) 20px;
        width: 100%;
        overflow: hidden;
    }

    .hero-bg-container {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .hero-bg-image {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-color: #FDFBF7;
        background-image: url('/images/westkamp-media-webdesign-und-betreuung-saarland-rlp.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        will-change: transform;
        animation: cameraZoomIn 16s ease-in-out infinite alternate;
    }

    @keyframes cameraZoomIn {
        0% { transform: scale(1); }
        100% { transform: scale(1.12); }
    }

    .hero-card {
        background: rgba(253, 251, 247, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: clamp(30px, 5vw, 50px) clamp(15px, 5vw, 40px);
        border-radius: 24px;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.6);
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5.5vw, 2.8rem);
        font-weight: 900;
        color: #1A365D;
        margin: 0 0 15px 0;
        letter-spacing: -1px;
        line-height: 1.25;
        font-family: 'Montserrat', sans-serif;
    }

    .hero-title span {
        color: #E0A96D;
        white-space: nowrap !important;
    }

    .hero-desc {
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        color: #2C302E;
        max-width: 750px;
        margin: 0 auto;
        font-weight: 500;
        line-height: 1.6;
        font-family: 'Montserrat', sans-serif;
    }

    .welcome-section {
        margin: 90px auto 50px auto;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
    }

    .welcome-logo {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto 40px auto;
        display: block;
    }

    .welcome-headline {
        font-size: clamp(1.6rem, 4.2vw, 2.8rem);
        font-weight: 900;
        color: #1A365D;
        line-height: 1.4;
        max-width: 950px;
        margin: 0 auto 20px auto;
        letter-spacing: -0.5px;
    }

    .welcome-divider {
        width: 60px;
        height: 4px;
        background-color: #E0A96D;
        margin: 0 auto 25px auto;
        border-radius: 2px;
    }

    .welcome-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        font-weight: 700;
        color: #E0A96D;
        max-width: 800px;
        margin: 0 auto 30px auto;
        letter-spacing: -0.5px;
    }

    .welcome-text-container {
        max-width: 850px;
        margin: 0 auto;
        width: 100%;
    }

    .welcome-p {
        color: #2C302E;
        font-size: 1.05rem;
        line-height: 1.75;
        font-weight: 500;
        margin: 0 0 24px 0;
        text-align: center;
    }

    .guarantee-section {
        background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF9 50%, #FFF5EA 100%) !important;
        border: 2px solid #E0A96D !important;
        border-radius: 24px;
        padding: 40px;
        margin: 0 auto 110px auto;
        max-width: 950px;
        box-shadow: 0 25px 50px rgba(26, 54, 93, 0.06), 0 10px 25px rgba(224, 169, 109, 0.08) !important;
        display: flex;
        align-items: center;
        gap: 35px;
        text-align: left;
        font-family: 'Montserrat', sans-serif;
    }

    .guarantee-icon-box {
        flex-shrink: 0;
        background: #1A365D;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
    }

    .guarantee-icon-box svg {
        width: 40px;
        height: 40px;
    }

    .guarantee-icon-box svg path {
        stroke: #E0A96D;
        stroke-width: 1.8;
        fill: none;
    }

    .guarantee-content h3 {
        margin: 0 0 4px 0;
        color: #1A365D;
        font-size: 1.4rem;
        font-weight: 900;
    }

    .guarantee-subtitle {
        color: #22543D;
        font-size: 1.7rem;
        font-weight: 900;
        letter-spacing: 0.5px;
        margin: 0 0 20px 0;
        text-transform: uppercase;
    }

    .guarantee-content p {
        margin: 0;
        color: #2C302E;
        font-size: 1rem;
        line-height: 1.8;
        font-weight: 500;
    }

    .responsive-mockup-section {
        margin: 0 auto 110px auto;
        text-align: center;
        width: 100%;
    }

    .responsive-mockup-img {
        width: 100%;
        max-width: 750px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 12px 35px rgba(26, 54, 93, 0.05);
        margin: 0 auto !important;
        display: block !important;
    }

    .services-overview {
        padding-top: 40px;
        padding-bottom: 60px;
        font-family: 'Montserrat', sans-serif;
        width: 100%;
    }

    .portfolio-section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        font-weight: 900;
        color: #1A365D;
        text-align: center;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    .portfolio-section-desc, .process-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        color: #E0A96D;
        text-align: center;
        font-weight: 700;
        margin-bottom: 50px;
        letter-spacing: 0.3px;
        line-height: 1.5;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .matrix-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .matrix-box {
        padding: 35px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.02);
        border-left: 1px solid rgba(26, 54, 93, 0.04);
        border-right: 1px solid rgba(26, 54, 93, 0.04);
        border-bottom: 1px solid rgba(26, 54, 93, 0.04);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        width: 100%;
    }

    .matrix-box:hover {
        transform: scale(1.03) translateY(-4px);
        box-shadow: 0 25px 50px rgba(26, 54, 93, 0.08) !important;
        z-index: 20;
    }

    .matrix-grid .matrix-box:nth-child(1), 
    .matrix-grid .matrix-box:nth-child(2), 
    .matrix-grid .matrix-box:nth-child(3) { background: #EAF4FC !important; border-top: 4px solid #1A365D !important; }
    .matrix-grid .matrix-box:nth-child(4), 
    .matrix-grid .matrix-box:nth-child(5), 
    .matrix-grid .matrix-box:nth-child(6) { background: #FDF8F0 !important; border-top: 4px solid #E0A96D !important; }
    .matrix-grid .matrix-box:nth-child(7), 
    .matrix-grid .matrix-box:nth-child(8), 
    .matrix-grid .matrix-box:nth-child(9) { background: #F1F8F5 !important; border-top: 4px solid #22543D !important; }

    .matrix-title-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .matrix-box strong {
        color: #1A365D;
        font-size: 1.15rem;
        font-weight: 800;
        letter-spacing: -0.3px;
        line-height: 1.3;
    }

    .matrix-box span {
        color: #2C302E;
        font-size: 0.92rem;
        line-height: 1.6;
        display: block;
        font-weight: 500;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .matrix-vector-icon path, .matrix-vector-icon circle, .matrix-vector-icon rect, .matrix-vector-icon line {
        stroke: #E0A96D;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .matrix-box:hover .matrix-vector-icon path,
    .matrix-box:hover .matrix-vector-icon circle,
    .matrix-box:hover .matrix-vector-icon rect,
    .matrix-box:hover .matrix-vector-icon line {
        stroke: #1A365D !important;
    }

    .card-button-container {
        width: 100%;
    }

    .card-action-button {
        display: inline-block;
        background-color: #1A365D;
        color: #FFFFFF;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.88rem;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .card-action-button:hover {
        transform: scale(1.02);
        background-color: #E0A96D;
        color: #2C302E;
    }

    .standards-section {
        padding: 60px 0;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        width: 100%;
    }

    .standards-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        font-weight: 900;
        color: #1A365D;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    .standards-divider {
        width: 60px;
        height: 4px;
        background-color: #E0A96D;
        margin: 0 auto 25px auto;
        border-radius: 2px;
    }

    .standards-subtitle {
        font-size: 1.05rem;
        color: #2C302E;
        max-width: 800px;
        margin: 0 auto 50px auto;
        font-weight: 500;
        line-height: 1.6;
    }

    .standards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        width: 100%;
    }

    .standard-box {
        padding: 40px 25px 30px 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.02);
        border-left: 1px solid rgba(26, 54, 93, 0.04);
        border-right: 1px solid rgba(26, 54, 93, 0.04);
        border-bottom: 1px solid rgba(26, 54, 93, 0.04);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        text-align: center;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .standard-box:hover {
        transform: scale(1.03) translateY(-4px);
        box-shadow: 0 25px 50px rgba(26, 54, 93, 0.08) !important;
        z-index: 20;
    }

    .standards-grid .standard-box:nth-child(1) { background: #EAF4FC !important; border-top: 4px solid #1A365D !important; }
    .standards-grid .standard-box:nth-child(2) { background: #FDF8F0 !important; border-top: 4px solid #E0A96D !important; }
    .standards-grid .standard-box:nth-child(3) { background: #F1F8F5 !important; border-top: 4px solid #22543D !important; }
    .standards-grid .standard-box:nth-child(4) { background: #F6F5F8 !important; border-top: 4px solid #50465A !important; }

    .standard-num {
        font-size: 3rem;
        font-weight: 900;
        color: rgba(224, 169, 109, 0.15);
        position: absolute;
        top: 5px;
        right: 20px;
        line-height: 1;
        user-select: none;
    }

    .standard-box h3 {
        font-size: 1.15rem;
        color: #1A365D;
        font-weight: 800;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    .standard-box p {
        font-size: 0.92rem;
        color: #2C302E;
        line-height: 1.6;
        margin: 0;
        font-weight: 500;
    }

    .profile-section {
        background-color: #FFFDF9;
        border-top: 1px solid rgba(26, 54, 93, 0.04);
        border-bottom: 1px solid rgba(26, 54, 93, 0.04);
        padding: clamp(50px, 8vw, 90px) 0;
        font-family: 'Montserrat', sans-serif;
        width: 100%;
    }

    .profile-card {
        display: flex;
        align-items: center;
        gap: 60px;
        background: #FFFFFF;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.02);
        border: 1px solid rgba(26, 54, 93, 0.04);
        max-width: 1000px;
        margin: 0 auto;
        width: 100%;
    }

    .profile-image-container {
        flex-shrink: 0;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #E0A96D;
        box-shadow: 0 12px 28px rgba(26, 54, 93, 0.08);
    }

    .profile-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile-text-block {
        flex: 1;
        text-align: left;
    }

    .profile-text-block h2 {
        font-size: 1.8rem;
        color: #1A365D;
        margin: 0 0 5px 0;
        font-weight: 900;
        letter-spacing: -0.5px;
    }

    .profile-subtitle {
        color: #E0A96D;
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        display: block;
        margin-bottom: 22px;
        letter-spacing: 1px;
    }

    .profile-text-block p {
        color: #2C302E;
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 20px 0;
        font-weight: 500;
    }

    .mantra-box {
        background: rgba(224, 169, 109, 0.05);
        border-left: 5px solid #E0A96D;
        padding: 25px 30px;
        border-radius: 0 12px 12px 0;
        margin-bottom: 25px;
    }

    .mantra-box p {
        margin: 0;
        font-weight: 600;
        color: #1A365D;
        font-size: 1.15rem;
        font-style: italic;
    }

    .process-section {
        padding: 80px 0 30px 0;
        font-family: 'Montserrat', sans-serif;
        width: 100%;
    }

    .process-main-title {
        font-size: clamp(1.3rem, 3.5vw, 1.75rem);
        font-weight: 900;
        color: #1A365D;
        text-align: center;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
        line-height: 1.35;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        width: 100%;
    }

    .process-card {
        text-align: center;
        padding: 40px 25px 30px 25px;
        border-radius: 20px;
        position: relative;
        border: 2px solid #E0A96D !important; 
        box-shadow: 0 8px 30px rgba(26, 54, 93, 0.02);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        width: 100%;
    }

    .process-card:hover { 
        transform: scale(1.03) translateY(-2px); 
        box-shadow: 0 20px 40px rgba(26, 54, 93, 0.07); 
        z-index: 20; 
    }

    .process-grid .process-card:nth-child(1) { background: #FFFFFF !important; }
    .process-grid .process-card:nth-child(2) { background: #EAF4FC !important; }
    .process-grid .process-card:nth-child(3) { background: #FDF8F0 !important; }
    .process-grid .process-card:nth-child(4) { background: #F1F8F5 !important; }

    .process-number {
        font-size: 3rem;
        font-weight: 900;
        color: rgba(224, 169, 109, 0.18);
        position: absolute;
        top: 5px;
        right: 20px;
        line-height: 1;
        font-family: 'Montserrat', sans-serif;
        user-select: none;
    }

    .process-card-icon-wrapper {
        width: 48px;
        height: 48px;
        background: rgba(26, 54, 93, 0.03);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
    }

    .process-vector-icon path, .process-vector-icon circle, .process-vector-icon polyline {
        stroke: #E0A96D;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .process-card h3 {
        font-size: 1.15rem;
        color: #1A365D;
        font-weight: 800;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    .process-card p {
        font-size: 0.92rem;
        color: #2C302E;
        line-height: 1.6;
        margin: 0;
        font-weight: 500;
    }

    .agency-profile-box {
        background: #FFFFFF; 
        border-left: 5px solid #1A365D; 
        padding: 40px; 
        border-radius: 0 24px 24px 0; 
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.02); 
        border-top: 1px solid rgba(26, 54, 93, 0.04); 
        border-right: 1px solid rgba(26, 54, 93, 0.04); 
        border-bottom: 1px solid rgba(26, 54, 93, 0.04);
        margin: 40px auto 85px auto;
        text-align: left;
    }

    .agency-profile-box h3 {
        font-size: 1.35rem; 
        font-weight: 800; 
        color: #1A365D; 
        margin: 0 0 18px 0; 
        font-family: 'Montserrat', sans-serif;
    }

    .agency-profile-box p {
        color: #2C302E; 
        line-height: 1.8; 
        font-size: 1.02rem; 
        font-weight: 500; 
        margin: 0 0 16px 0; 
        font-family: 'Montserrat', sans-serif;
    }

    .agency-profile-box strong {
        font-weight: 700;
        color: #1A365D;
    }

    .faq-section-blue {
        background-color: #F4F8FC;
        padding: 60px 0;
        width: 100%;
        overflow: hidden;
    }

    .faq-main-title {
        font-size: clamp(1.3rem, 3.5vw, 1.75rem);
        font-weight: 900;
        color: #1A365D;
        text-align: center;
        margin-bottom: 35px;
        letter-spacing: -0.5px;
    }

    .faq-wrapper {
        max-width: 760px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: transparent;
        padding: 0;
    }

    .faq-item {
        background-color: #FFFFFF;
        border-left: 5px solid #1A365D;
        padding: 12px 18px;
        border-radius: 0 10px 10px 0;
        border-top: 1px solid rgba(26, 54, 93, 0.04);
        border-right: 1px solid rgba(26, 54, 93, 0.04);
        border-bottom: 1px solid rgba(26, 54, 93, 0.04);
        box-shadow: 0 3px 12px rgba(26, 54, 93, 0.01);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .faq-item:hover {
        transform: scale(1.015);
        box-shadow: 0 6px 15px rgba(26, 54, 93, 0.03);
    }

    .faq-question-btn {
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
    }

    .faq-question-text {
        font-weight: 800;
        color: #1A365D;
        font-size: clamp(0.92rem, 2.2vw, 1.02rem);
        padding-right: 15px;
        line-height: 1.35;
    }

    .faq-plus-icon {
        stroke: #E0A96D;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease;
    }

    .faq-answer-container {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .faq-answer {
        font-size: clamp(0.85rem, 1.8vw, 0.95rem); 
        color: #2C302E;
        line-height: 1.6;
        margin: 0;
        font-weight: 500;
        padding: 10px 0 0 0; 
    }

    .faq-item.active .faq-answer-container {
        max-height: 1000px; 
    }

    .faq-item.active .faq-plus-icon {
        transform: rotate(45deg);
        stroke: #1A365D;
    }

    .action-panel {
        background: #FDF8F0;
        padding: clamp(35px, 6vw, 60px);
        border-radius: 24px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        margin: 60px auto 90px auto;
        max-width: 1000px;
        box-shadow: 0 15px 40px rgba(26, 54, 93, 0.04);
        border: 2px solid #E0A96D;
        width: 100%;
    }

    .action-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1A365D;
        margin: 0 0 12px 0;
    }

    .action-desc {
        color: #2C302E;
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0 auto 30px auto;
        font-weight: 500;
    }

    .sunshine-button {
        display: inline-block;
        background-color: #1A365D;
        color: #FFFFFF;
        padding: 14px 32px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        box-shadow: 0 4px 15px rgba(26, 54, 93, 0.25);
        transition: 0.3s ease;
    }

    .sunshine-button:hover {
        background-color: #d49c60;
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(224, 169, 109, 0.35);
    }

    .timed-flyin-card {
        position: fixed;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0; visibility: hidden;
        background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF9 60%, #FFF9F2 100%);
        border-radius: 24px;
        padding: 40px 30px;
        max-width: 460px;
        width: calc(100% - 40px);
        border-top: 5px solid #E0A96D;
        border-left: 1px solid rgba(224, 169, 109, 0.3);
        border-right: 1px solid rgba(224, 169, 109, 0.3);
        border-bottom: 1px solid rgba(224, 169, 109, 0.3);
        box-shadow: 0 35px 75px rgba(26, 54, 93, 0.18), 0 15px 35px rgba(224, 169, 109, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        z-index: 10000100; 
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s ease;
        box-sizing: border-box;
        text-align: center; 
        overflow: hidden;
    }

    .timed-flyin-card::after {
        content: '';
        position: absolute;
        top: -50%; left: -60%; width: 30%; height: 200%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
        transform: rotate(30deg);
        animation: activeSheen 6s ease-in-out infinite;
        pointer-events: none;
        z-index: 1;
    }

    @keyframes activeSheen {
        0% { left: -60%; }
        15% { left: 140%; }
        100% { left: 140%; }
    }

    .timed-flyin-card.visible {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .promo-close-btn {
        position: absolute;
        top: 16px; right: 18px;
        background: none; border: none;
        font-size: 28px; color: #1A365D;
        cursor: pointer; line-height: 1; padding: 0;
        opacity: 0.5; transition: opacity 0.2s ease, color 0.2s ease;
        z-index: 2;
    }

    .promo-close-btn:hover { opacity: 1; color: #9B2C2C; }

    .promo-card-tag {
        display: inline-block;
        background-color: rgba(26, 54, 93, 0.08);
        color: #1A365D; font-size: 0.75rem; font-weight: 800;
        text-transform: uppercase; letter-spacing: 1px;
        padding: 5px 14px; border-radius: 6px; margin-bottom: 16px;
        font-family: 'Montserrat', sans-serif;
        position: relative; z-index: 2;
    }

    .promo-card-title {
        font-size: 1.3rem; color: #1A365D; font-weight: 900;
        margin: 0 0 10px 0; letter-spacing: -0.3px; line-height: 1.3;
        font-family: 'Montserrat', sans-serif;
        position: relative; z-index: 2;
    }

    .promo-card-desc {
        color: #2C302E; font-size: 0.95rem; line-height: 1.6;
        margin: 0 0 24px 0; font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        position: relative; z-index: 2;
    }

    .promo-card-btn {
        display: inline-flex; align-items: center; justify-content: center;
        gap: 8px; background-color: #1A365D; color: #FFFFFF;
        padding: 14px 28px; border-radius: 10px; font-weight: 700;
        font-size: 0.92rem; text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        box-shadow: 0 5px 15px rgba(26, 54, 93, 0.18);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease;
        width: 100%; box-sizing: border-box;
        position: relative; z-index: 2;
    }

    .promo-card-btn svg { width: 14px; height: 14px; fill: none; transition: transform 0.3s ease; }
    .promo-card-btn:hover { background-color: #E0A96D; color: #2C302E; transform: scale(1.02); }
    .promo-card-btn:hover svg { transform: translateX(3px); }

    .reveal-element {
        opacity: 0;
        transform: translate3d(0, 70px, 0); 
        will-change: transform, opacity;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: transform 0.9s cubic-bezier(0.1, 0.85, 0.25, 1), opacity 0.9s cubic-bezier(0.1, 0.85, 0.25, 1) !important;
    }

    .reveal-element.in-view {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    @media (min-width: 769px) {
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; } 
    }

    .matrix-grid .reveal-element,
    .process-grid .reveal-element,
    .standards-grid .reveal-element,
    .responsive-mockup-section.reveal-element,
    .profile-card.reveal-element {
        transform: translate3d(0, 90px, 0);
        transition: transform 1.1s cubic-bezier(0.1, 0.85, 0.25, 1), opacity 1.1s cubic-bezier(0.1, 0.85, 0.25, 1) !important;
    }

    .matrix-grid .reveal-element.in-view,
    .process-grid .reveal-element.in-view,
    .standards-grid .reveal-element.in-view,
    .responsive-mockup-section.reveal-element.in-view,
    .profile-card.reveal-element.in-view {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    .floating-contact-bar, .right-floating-button {
        right: 54px !important;
    }

    .scroll-to-top, #scrollToTopBtn, #back-to-top, .back-to-top-btn, [class*="scroll-to-top"], [id*="scroll-to-top"], [class*="back-to-top"] {
        right: 18px !important;
    }

    @media (max-width: 992px) { 
        .process-grid, .matrix-grid, .standards-grid { 
            grid-template-columns: repeat(2, 1fr) !important; 
        } 
    }

    @media (max-width: 768px) {
        .sticky-booking-btn, [class*="booking-btn"], .right-floating-button { display: none !important; } 
        .welcome-features { grid-template-columns: 1fr !important; }
        .process-grid, .matrix-grid, .standards-grid { grid-template-columns: 1fr !important; gap: 20px !important; width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
        .guarantee-section { flex-direction: column !important; text-align: center !important; padding: 30px 20px !important; gap: 20px !important; width: 100% !important; box-sizing: border-box !important; }
        .guarantee-content { width: 100% !important; }
        .desktop-br { display: none !important; }
        
        .profile-card {
            flex-direction: column !important;
            text-align: center !important;
            padding: 30px 20px !important;
            gap: 25px !important;
            width: 100% !important;
        }
        .profile-image-container {
            width: 180px !important;
            height: 180px !important;
            margin: 0 auto !important;
            flex-shrink: 0 !important;
        }
        .profile-text-block {
            text-align: center !important;
            width: 100% !important;
        }
        .mantra-box {
            border-left: none !important;
            border-top: 4px solid #E0A96D !important;
            border-radius: 0 0 12px 12px !important;
            padding: 20px !important;
        }
    }

    @media (max-width: 576px) { 
        .process-card, .matrix-box, .standard-box { padding: 30px 20px !important; width: 100% !important; box-sizing: border-box !important; margin: 0 auto !important; min-width: 0 !important; }
        .process-number { font-size: 2.2rem !important; top: 15px !important; right: 20px !important; }
        .process-card-icon-wrapper { width: 45px !important; height: 45px !important; margin-bottom: 15px !important; }
    }

    /* ---------------------------------------------------------------
       NACHBARORTE / REGIONALE QUERVERLINKUNG
       --------------------------------------------------------------- */
    .nearby-section {
        margin: 0 auto 90px auto;
        padding: 40px 35px;
        max-width: 1000px;
        background: #FFFFFF;
        border: 1px solid rgba(26, 54, 93, 0.08);
        border-radius: 20px;
        box-shadow: 0 12px 35px rgba(26, 54, 93, 0.04);
        text-align: center;
    }

    .nearby-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1A365D;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    .nearby-text {
        font-size: 1rem;
        color: #2C302E;
        line-height: 1.7;
        margin: 0 auto 25px auto;
        max-width: 720px;
    }

    .nearby-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nearby-links a {
        display: inline-block;
        padding: 10px 20px;
        font-size: 0.92rem;
        font-weight: 600;
        color: #1A365D;
        text-decoration: none;
        background: #FDF8F0;
        border: 1px solid rgba(224, 169, 109, 0.35);
        border-radius: 50px;
        transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .nearby-links a:hover,
    .nearby-links a:focus {
        background: #E0A96D;
        border-color: #E0A96D;
        transform: translateY(-2px);
        outline: none;
    }

    @media (max-width: 768px) {
        .nearby-section { padding: 30px 20px; margin-bottom: 60px; }
        .nearby-title { font-size: 1.25rem; }
        .nearby-links a { padding: 9px 16px; font-size: 0.86rem; }
    }


/* ==========================================================================
   FAQ - BESSERE UNTERSCHEIDBARKEIT DER EINZELNEN FRAGEN

   Problem vorher: alle Fragen weiss auf hellem Grund - sie verschwammen.
   Jetzt:
     - abwechselnde Hintergruende (Zebra-Muster)
     - mehr Abstand zwischen den Fragen
     - die GEOEFFNETE Frage hebt sich klar mit goldenem Balken ab
   ========================================================================== */

.faq-item {
    margin-bottom: 14px;
    transition: background-color 0.3s ease, border-left-color 0.3s ease, box-shadow 0.3s ease;
}

/* Jede zweite Frage leicht getoent */
.faq-item:nth-child(even) {
    background-color: #F4F7FA;
}

/* Beim Ueberfahren mit der Maus */
.faq-item:hover {
    border-left-color: var(--gold-accent, #E0A96D);
    box-shadow: 0 8px 22px rgba(26, 54, 93, 0.07);
}

/* Geoeffnete Frage - deutlich hervorgehoben */
.faq-item.active {
    background-color: #FFFFFF;
    border-left-color: var(--gold-accent, #E0A96D);
    box-shadow: 0 14px 32px rgba(26, 54, 93, 0.10);
}

.faq-item.active .faq-question-text {
    color: var(--primary-blue, #1A365D);
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    .faq-item { transition: none; }
}