/* ===== TECHNIK PAGE STYLES ===== */

.technik-hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 400px;
    padding: 160px 20px 60px;
}

.technik-container {
    width: 100%;
    max-width: 1200px;
}

.technik-content {
    text-align: center;
}

.technik-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: 1.5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technik-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.technik-title .highlight {
    color: #ecc6b5;
}

.technik-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technik-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SYSTEM STATUS DASHBOARD ===== */
.system-status-dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 198, 181, 0.2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.system-status-dashboard.animated {
    opacity: 1;
    transform: translateY(0);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.status-indicator {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.online {
    color: #4caf50;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(236, 198, 181, 0.2);
}

.status-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 198, 181, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.status-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.status-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.status-value {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.status-bar {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.status-fill {
    height: 100%;
    border-radius: 3px;
    animation: fillBar 2s ease-out;
}

.status-fill.reliability {
    width: 100%;
    background: linear-gradient(90deg, #2196f3, #42a5f5);
}

.status-fill.flexibility {
    width: 100%;
    background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.status-fill.support {
    width: 100%;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--final-width, 100%); }
}

.status-fill.reliability {
    --final-width: 100%;
}

.status-fill.flexibility {
    --final-width: 100%;
}

.status-fill.support {
    --final-width: 100%;
}

/* ===== FEATURES SECTION STYLES ===== */
.technik-features-section {
    padding: 0px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.technik-features-container {
    width: 100%;
    max-width: 1200px;
}

.technik-features-intro {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
}

.technik-features-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technik-features-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.technik-features-description {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.4px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technik-features-description.animated {
    opacity: 1;
    transform: translateY(0);
}

.technik-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technik-features-grid.animated {
    opacity: 1;
    transform: translateY(0);
}

.technik-feature-box {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 198, 181, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.technik-feature-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(236, 198, 181, 0.25);
}

.technik-feature-icon {
    font-size: 42px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.technik-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.technik-feature-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.technik-highlight {
    color: #ecc6b5;
    font-weight: 600;
}

.technik-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.technik-feature-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.technik-list-icon {
    margin-right: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== MOBILE DOTS INDICATOR ===== */
.technik-mobile-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.technik-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: default;
    pointer-events: none;
    transition: all 0.3s ease;
}

.technik-dot.active {
    background-color: #ecc6b5;
    transform: scale(1.2);
}

/* ===== BENEFITS MOBILE DOTS INDICATOR ===== */
.benefits-mobile-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.benefits-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: default;
    pointer-events: none;
    transition: all 0.3s ease;
}

.benefits-dot.active {
    background-color: #ecc6b5;
    transform: scale(1.2);
}

/* ===== BENEFITS SECTION STYLES ===== */
.benefits-section {
    padding: 0px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-container {
    width: 100%;
    max-width: 1200px;
    margin-top: -15px;
}

.benefits-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.benefits-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefits-description {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.benefits-description.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefits-highlight {
    color: #ecc6b5;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

/* Mobile: Grid wird als Ganzes animiert */
@media (max-width: 767px) {
    .benefits-grid {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .benefits-grid.animated {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 198, 181, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Desktop: Cards werden einzeln animiert */
@media (min-width: 768px) {
    .benefit-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .benefit-card.animated {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(236, 198, 181, 0.25);
}

.benefit-icon {
    font-size: 42px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: auto;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 auto 0;
    letter-spacing: 0.3px;
    line-height: 1.5;
    flex-grow: 1;
}

.benefit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(236, 198, 181, 0.15);
    color: #ecc6b5;
    border: 1px solid rgba(236, 198, 181, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    min-width: 60px;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop */
@media (min-width: 1025px) {
    .technik-hero {
        padding: 180px 40px 80px;
        min-height: 450px;
    }
    
    .technik-container {
        max-width: 1400px;
    }
    
    .technik-title {
        font-size: 56px;
        margin-bottom: 28px;
    }
    
    .technik-subtitle {
        font-size: 22px;
        margin-bottom: 48px;
    }
    
    .system-status-dashboard {
        margin-top: 80px;
        padding: 32px;
        max-width: 1400px;
    }
    
    .status-title {
        font-size: 20px;
    }
    
    .status-indicator {
        font-size: 18px;
    }
    
    .status-grid {
        gap: 20px;
    }
    
    .status-item {
        padding: 16px 20px;
    }
    
    .status-icon {
        font-size: 28px;
        width: 48px;
        height: 48px;
    }
    
    .status-name {
        font-size: 18px;
    }
    
    .status-value {
        font-size: 15px;
    }
    
    .status-bar {
        width: 100px;
        height: 8px;
    }
    
    .technik-features-section {
        padding: 0px 40px 100px;
    }
    
    .technik-features-container {
        max-width: 1400px;
    }
    
    .technik-features-intro {
        margin-bottom: 48px;
    }
    
    .technik-features-title {
        font-size: 56px;
    }
    
    .technik-features-description {
        font-size: 19px;
    }
    
    .technik-features-grid {
        gap: 40px;
    }
    
    .technik-feature-box {
        padding: 48px 40px;
    }
    
    .technik-feature-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .technik-feature-description {
        font-size: 17px;
        margin-bottom: 28px;
    }
    
    .technik-feature-list li {
        font-size: 16px;
        gap: 14px;
    }
    
    .technik-list-icon {
        font-size: 17px;
        margin-right: 12px;
    }

    .benefits-section {
        padding: 0px 40px 100px;
    }
    
    .benefits-container {
        max-width: 1400px;
        margin-top: -5px;
        margin-top: -8px;
        margin-top: -10px;
        margin-top: -20px;
    }
    
    .benefits-intro {
        gap: 28px;
        margin-bottom: 80px;
    }
    
    .benefits-title {
        font-size: 56px;
    }
    
    .benefits-description {
        font-size: 20px;
    }
    
    .benefits-grid {
        gap: 40px;
    }
    
    .benefit-card {
        padding: 48px 40px;
        min-height: 320px;
    }
    
    .benefit-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .benefit-description {
        font-size: 17px;
    }
    
    .benefit-badge {
        top: 24px;
        right: 24px;
        padding: 10px 20px;
        font-size: 15px;
        min-width: 70px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .technik-hero {
        padding: 160px 30px 70px;
        min-height: 420px;
    }
    
    .technik-container {
        max-width: 900px;
    }
    
    .technik-title {
        font-size: 44px;
        margin-bottom: 22px;
    }
    
    .technik-subtitle {
        font-size: 19px;
        margin-bottom: 36px;
    }
    
    .system-status-dashboard {
        margin-top: 50px;
        padding: 28px;
        max-width: 900px;
    }
    
    .status-title {
        font-size: 18px;
    }
    
    .status-indicator {
        font-size: 16px;
    }
    
    .technik-features-section {
        padding: 0px 30px 80px;
    }
    
    .technik-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .technik-feature-box {
        padding: 36px 28px;
    }
    
    .technik-feature-title {
        font-size: 19px;
    }
    
    .technik-feature-description {
        font-size: 15px;
    }

    .benefits-section {
        padding: 0px 30px 80px;
    }
    
    .benefits-intro {
        margin-bottom: 50px;
    }
    
    .benefits-title {
        font-size: 44px;
    }
    
    .benefits-description {
        font-size: 18px;
    }
    
    .benefits-grid {
        gap: 32px;
    }
    
    .benefit-card {
        padding: 36px 28px;
        min-height: 300px;
    }
    
    .benefit-badge {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 60px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .technik-hero {
        padding: 140px 15px 50px;
        min-height: 380px;
    }
    
    .technik-container {
        max-width: calc(100% - 30px);
    }
    
    .technik-content {
        text-align: center;
    }
    
    .technik-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
        white-space: normal;
    }
    
    .technik-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
        line-height: 1.5;
    }
    
    .system-status-dashboard {
        margin-top: 40px;
        padding: 20px;
        border-radius: 12px;
        max-width: none;
    }
    
    .status-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-bottom: 0px;
    }
    
    .status-title {
        font-size: 16px;
    }
    
    .status-indicator {
        font-size: 15px;
    }
    
    .status-grid {
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
    }
    
    .status-item {
        padding: 12px 14px;
        gap: 12px;
        flex: none;
    }
    
    .status-icon {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
    
    .status-name {
        font-size: 15px;
    }
    
    .status-value {
        font-size: 13px;
    }
    
    .status-bar {
        width: 60px;
        height: 5px;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .status-item:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .technik-features-section {
        padding: 0px 15px 60px;
    }
    
    .technik-features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 24px;
        padding: 12px 5px 20px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .technik-features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .technik-feature-box {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .technik-feature-icon {
        font-size: 36px;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .technik-feature-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .technik-feature-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .technik-feature-list {
        gap: 10px;
    }
    
    .technik-feature-list li {
        font-size: 14px;
    }
    
    .technik-list-icon {
        font-size: 15px;
        margin-right: 8px;
    }
    
    .technik-mobile-dots {
        display: flex;
    }

    .benefits-section {
        padding: 0px 15px 60px;
    }
    
    .benefits-intro {
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .benefits-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .benefits-description {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
        min-height: auto;
        border-radius: 20px;
    }
    
    .benefit-icon {
        font-size: 36px;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .benefit-description {
        font-size: 15px;
    }
    
    .benefit-badge {
        top: 16px;
        right: 16px;
        padding: 6px 12px;
        font-size: 13px;
        min-width: 50px;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .benefit-card:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(236, 198, 181, 0.15);
    }
    
    .benefits-mobile-dots {
        display: flex;
    }
    
    .benefits-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 24px;
        padding: 12px 5px 20px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }
    
    .benefit-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        /* Auf Mobile: Cards sind immer sichtbar, nur das Grid wird animiert */
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .technik-hero {
        padding: 130px 10px 40px;
        min-height: 350px;
    }
    
    .technik-container {
        max-width: calc(100% - 20px);
    }
    
    .technik-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .technik-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .system-status-dashboard {
        margin-top: 32px;
        padding: 18px;
    }
    
    .status-title {
        font-size: 15px;
    }
    
    .status-indicator {
        font-size: 14px;
    }
    
    .status-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .status-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    
    .status-name {
        font-size: 14px;
    }
    
    .status-value {
        font-size: 12px;
    }
    
    .status-bar {
        width: 50px;
        height: 4px;
    }
    
    .technik-features-section {
        padding: 0px 10px 50px;
    }
    
    .technik-features-intro {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .technik-features-title {
        font-size: 32px;
    }
    
    .technik-features-description {
        font-size: 15px;
    }
    
    .technik-feature-box {
        flex: 0 0 260px;
        padding: 28px 20px;
    }
    
    .technik-feature-title {
        font-size: 17px;
    }
    
    .technik-feature-description {
        font-size: 14px;
    }
    
    .technik-feature-list li {
        font-size: 13px;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .technik-feature-box:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(236, 198, 181, 0.15);
    }

    .benefits-section {
        padding: 0px 10px 50px;
    }
    
    .benefits-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .benefits-description {
        font-size: 15px;
    }
    
    .benefit-card {
        padding: 28px 20px;
    }
    
    .benefit-card {
        flex: 0 0 260px;
    }
    
    .benefit-title {
        font-size: 17px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    padding: 15px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 800px;
}

.contact-content {
    background: transparent;
    padding: 0;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 32px 0;
    letter-spacing: 1.5px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-description {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 48px 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-description.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-highlight {
    color: #ecc6b5;
    font-weight: 600;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecc6b5 0%, #d4a574 100%);
    color: #0f0f0f;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.contact-button.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT RESPONSIVE STYLES ===== */

/* Desktop */
@media (min-width: 1025px) {
    .contact-section {
        padding: 40px 40px 100px;
    }
    
    .contact-container {
        max-width: 1000px;
    }
    
    .contact-title {
        font-size: 56px;
        margin-bottom: 36px;
    }
    
    .contact-description {
        font-size: 22px;
        margin-bottom: 56px;
    }
    
    .contact-button {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .contact-section {
        padding: 30px 30px 80px;
    }
    
    .contact-container {
        max-width: 850px;
    }
    
    .contact-title {
        font-size: 44px;
        margin-bottom: 28px;
    }
    
    .contact-description {
        font-size: 19px;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-section {
        padding: 20px 15px 60px;
    }
    
    .contact-container {
        max-width: calc(100% - 30px);
    }
    
    .contact-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .contact-description {
        font-size: 17px;
        margin-bottom: 36px;
    }
    
    .contact-button {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    /* Mobile: Reduzierte Hover-Effekte */
    .contact-button:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 15px 10px 50px;
    }
    
    .contact-container {
        max-width: calc(100% - 20px);
    }
    
    .contact-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .contact-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .contact-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

