.eagle-pricing-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.eagle-pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(145deg, #264065 0%, #264065 100%);
    color: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.eagle-pricing-card {
    flex: 1 1 300px;
    background: rgba(38, 64, 101, 0.8);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 210, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.eagle-pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.eagle-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: rgba(38, 64, 101, 0.9);
}

.eagle-pricing-card:hover::before {
    opacity: 1;
    transform: rotate(180deg);
}

.eagle-pricing-card h3 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.eagle-pricing-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    border-radius: 3px;
}

.eagle-pricing-card .price {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    font-weight: 700;
    color: white;
}

.eagle-pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.eagle-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.eagle-pricing-card ul li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.eagle-pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d2ff;
    font-weight: bold;
}

.eagle-pricing-card .cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.eagle-pricing-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.4);
}

/* Responsive Anpassungen */
@media (max-width: 900px) {
    .eagle-pricing-table {
        padding: 2rem;
    }
    
    .eagle-pricing-card {
        flex: 1 1 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .eagle-pricing-table {
        padding: 1.5rem;
    }
    
    .eagle-pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .eagle-pricing-card .price {
        font-size: 1.5rem;
    }
}