/* ===== SOCIAL MEDIA PAGE STYLES ===== */

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

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

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

.social-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;
}

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

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

.social-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;
}

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

/* ===== PLATFORM SHOWCASE ===== */
.platform-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.platform-showcase.animated {
    opacity: 1;
    transform: translateY(0);
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: subtleFloat 5s ease-in-out infinite;
}

.platform-item.instagram {
    background: linear-gradient(135deg, rgba(236, 198, 181, 0.15), rgba(212, 165, 116, 0.12));
    border: 2px solid rgba(236, 198, 181, 0.4);
}

.platform-item.tiktok {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(0, 0, 0, 0.1));
    border: 2px solid rgba(255, 0, 80, 0.3);
}

.platform-item.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(66, 103, 178, 0.1));
    border: 2px solid rgba(24, 119, 242, 0.3);
}

.platform-icon {
    font-size: 36px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Subtile Floating Animation wie Service Boxes */
@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(1.2deg);
    }
}

/* Verschiedene Delays für natürlichere Bewegung */
.platform-item:nth-child(1) {
    animation: subtleFloat 5s ease-in-out infinite 0s;
}

.platform-item:nth-child(2) {
    animation: subtleFloat 6s ease-in-out infinite 0s;
}

.platform-item:nth-child(3) {
    animation: subtleFloat 7s ease-in-out infinite 0s;
}

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

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

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

.social-services-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;
}

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

.social-services-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;
}

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

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

.social-service-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;
    opacity: 0;
    transform: translateY(30px);
}

.social-service-box.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-service-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(236, 198, 181, 0.25);
}

.social-service-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);
}

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

.social-service-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;
}

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

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

.social-service-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;
}

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

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

.social-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;
}

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

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

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

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

.social-stats-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;
}

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

.social-stats-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: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

.stat-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 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.stat-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ecc6b5;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

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

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

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

.social-process-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;
}

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

.social-process-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: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.social-process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
    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;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(236, 198, 181, 0.25);
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #ecc6b5;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid rgba(236, 198, 181, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

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

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

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

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

.social-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;
}

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

.social-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;
}

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

.social-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;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.social-contact-button.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

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

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

/* Desktop */
@media (min-width: 1025px) {
    .social-hero {
        padding: 180px 40px 80px;
        min-height: 450px;
    }
    
    .social-container {
        max-width: 1400px;
    }
    
    .social-title {
        font-size: 56px;
        margin-bottom: 28px;
    }
    
    .social-subtitle {
        font-size: 22px;
        margin-bottom: 48px;
    }
    
    .platform-showcase {
        gap: 80px;
        margin-top: 80px;
    }
    
    .platform-icon {
        font-size: 42px;
        width: 80px;
        height: 80px;
    }
    
    .platform-name {
        font-size: 18px;
    }
    
    .social-services-section {
        padding: 15px 40px 100px;
    }
    
    .social-services-container {
        max-width: 1400px;
    }
    
    .social-services-intro {
        gap: 28px;
        margin-bottom: 80px;
    }
    
    .social-services-title {
        font-size: 56px;
    }
    
    .social-services-description {
        font-size: 20px;
    }
    
    .social-services-grid {
        gap: 40px;
    }
    
    .social-service-box {
        padding: 48px 40px;
    }
    
    .social-service-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .social-service-description {
        font-size: 17px;
        margin-bottom: 28px;
    }
    
    .social-service-list li {
        font-size: 16px;
        gap: 14px;
    }
    
    .social-list-icon {
        font-size: 17px;
        margin-right: 12px;
    }
    
    .social-stats-section {
        padding: 15px 40px 100px;
    }
    
    .social-stats-container {
        max-width: 1400px;
    }
    
    .social-stats-intro {
        gap: 28px;
        margin-bottom: 80px;
    }
    
    .social-stats-title {
        font-size: 56px;
    }
    
    .social-stats-description {
        font-size: 20px;
    }
    
    .social-stats-grid {
        gap: 40px;
    }
    
    .stat-card {
        padding: 48px 32px;
    }
    
    .stat-icon {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .social-process-section {
        padding: 15px 40px 100px;
    }
    
    .social-process-container {
        max-width: 1400px;
    }
    
    .social-process-intro {
        gap: 28px;
        margin-bottom: 80px;
    }
    
    .social-process-title {
        font-size: 56px;
    }
    
    .social-process-description {
        font-size: 20px;
    }
    
    .social-process-steps {
        gap: 48px;
        max-width: 900px;
    }
    
    .process-step {
        gap: 40px;
        padding: 40px;
    }
    
    .step-number {
        font-size: 36px;
        width: 70px;
        height: 70px;
    }
    
    .step-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .step-description {
        font-size: 17px;
    }
    
    .social-contact-section {
        padding: 40px 40px 100px;
    }
    
    .social-contact-container {
        max-width: 1000px;
    }
    
    .social-contact-title {
        font-size: 56px;
        margin-bottom: 36px;
    }
    
    .social-contact-description {
        font-size: 22px;
        margin-bottom: 56px;
    }
    
    .social-contact-button {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .social-hero {
        padding: 160px 30px 70px;
        min-height: 420px;
    }
    
    .social-container {
        max-width: 900px;
    }
    
    .social-title {
        font-size: 44px;
        margin-bottom: 22px;
    }
    
    .social-subtitle {
        font-size: 19px;
        margin-bottom: 36px;
    }
    
    .platform-showcase {
        gap: 40px;
        margin-top: 50px;
    }
    
    .social-services-section {
        padding: 10px 30px 80px;
    }
    
    .social-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .social-service-box {
        padding: 36px 28px;
    }
    
    .social-service-title {
        font-size: 19px;
    }
    
    .social-service-description {
        font-size: 15px;
    }
    
    .social-stats-section {
        padding: 10px 30px 80px;
    }
    
    .social-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .social-process-section {
        padding: 10px 30px 80px;
    }
    
    .social-process-steps {
        gap: 32px;
    }
    
    .process-step {
        gap: 24px;
        padding: 28px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .step-title {
        font-size: 22px;
    }
    
    .social-contact-section {
        padding: 30px 30px 80px;
    }
    
    .social-contact-container {
        max-width: 850px;
    }
    
    .social-contact-title {
        font-size: 44px;
        margin-bottom: 28px;
    }
    
    .social-contact-description {
        font-size: 19px;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .social-hero {
        padding: 140px 15px 50px;
        min-height: 380px;
    }
    
    .social-container {
        max-width: calc(100% - 30px);
    }
    
    .social-content {
        text-align: center;
    }
    
    .social-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
        white-space: normal;
    }
    
    .social-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
        line-height: 1.5;
    }
    
    .platform-showcase {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .platform-item {
        padding: 20px;
        width: auto;
        min-width: 90px;
        max-width: 110px;
        flex: 1;
        /* Mobile: Gleiche Animation wie Desktop */
        animation: subtleFloat 5s ease-in-out infinite;
    }
    
    /* Verschiedene Delays für natürlichere Bewegung */
    .platform-item:nth-child(1) {
        animation: subtleFloat 5s ease-in-out infinite 0s;
    }
    
    .platform-item:nth-child(2) {
        animation: subtleFloat 6s ease-in-out infinite 0s;
    }
    
    .platform-item:nth-child(3) {
        animation: subtleFloat 7s ease-in-out infinite 0s;
    }
    
    .platform-icon {
        font-size: 28px;
        width: 55px;
        height: 55px;
    }
    
    .platform-name {
        font-size: 14px;
    }
    
    .social-services-section {
        padding: 8px 15px 60px;
    }
    
    .social-services-intro {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .social-services-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .social-services-description {
        font-size: 16px;
    }
    
    .social-services-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;
    }
    
    .social-services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .social-service-box {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .social-service-icon {
        font-size: 36px;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .social-service-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .social-service-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .social-service-list {
        gap: 10px;
    }
    
    .social-service-list li {
        font-size: 14px;
    }
    
    .social-list-icon {
        font-size: 15px;
        margin-right: 8px;
    }
    
    .social-mobile-dots {
        display: flex;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .social-service-box:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(236, 198, 181, 0.15);
    }
    
    .social-stats-section {
        padding: 8px 15px 60px;
    }
    
    .social-stats-intro {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .social-stats-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .social-stats-description {
        font-size: 16px;
    }
    
    .social-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .stat-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .stat-card:hover {
        transform: none !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
        border-color: rgba(236, 198, 181, 0.15) !important;
    }
    
    .social-process-section {
        padding: 8px 15px 60px;
    }
    
    .social-process-intro {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .social-process-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .social-process-description {
        font-size: 16px;
    }
    
    .social-process-steps {
        gap: 24px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        text-align: center;
        border-radius: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin: 0 auto;
    }
    
    .step-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    /* Mobile: Hover-Effekte entfernen */
    .process-step:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(236, 198, 181, 0.15);
    }
    
    .social-contact-section {
        padding: 20px 15px 60px;
    }
    
    .social-contact-container {
        max-width: calc(100% - 30px);
    }
    
    .social-contact-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .social-contact-description {
        font-size: 17px;
        margin-bottom: 36px;
    }
    
    .social-contact-button {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    /* Mobile: Reduzierte Hover-Effekte */
    .social-contact-button:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .social-hero {
        padding: 130px 10px 40px;
        min-height: 350px;
    }
    
    .social-container {
        max-width: calc(100% - 20px);
    }
    
    .social-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .social-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .platform-showcase {
        gap: 20px;
        margin-top: 32px;
    }
    
    .platform-item {
        padding: 14px;
        width: 180px;
    }
    
    .platform-icon {
        font-size: 28px;
        width: 55px;
        height: 55px;
    }
    
    .platform-name {
        font-size: 14px;
    }
    
    .social-services-section {
        padding: 5px 10px 50px;
    }
    
    .social-services-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .social-services-title {
        font-size: 32px;
    }
    
    .social-services-description {
        font-size: 15px;
    }
    
    .social-service-box {
        flex: 0 0 260px;
        padding: 28px 20px;
    }
    
    .social-service-title {
        font-size: 17px;
    }
    
    .social-service-description {
        font-size: 14px;
    }
    
    .social-service-list li {
        font-size: 13px;
    }
    
    .social-stats-section {
        padding: 5px 10px 50px;
    }
    
    .social-stats-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .social-stats-title {
        font-size: 32px;
    }
    
    .social-stats-description {
        font-size: 15px;
    }
    
    .social-stats-grid {
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .social-process-section {
        padding: 5px 10px 50px;
    }
    
    .social-process-intro {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .social-process-title {
        font-size: 32px;
    }
    
    .social-process-description {
        font-size: 15px;
    }
    
    .social-process-steps {
        gap: 20px;
    }
    
    .process-step {
        padding: 20px 16px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .social-contact-section {
        padding: 15px 10px 50px;
    }
    
    .social-contact-container {
        max-width: calc(100% - 20px);
    }
    
    .social-contact-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .social-contact-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .social-contact-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}