.panda-comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.panda-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: visible;
}

.panda-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.panda-card-featured {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border: 2px solid rgba(54, 69, 79, 0.1);
    z-index: 2;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.panda-card-featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.15);
}

.panda-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #36454F;
    color: #fff;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(54, 69, 79, 0.3);
    white-space: nowrap;
}

.panda-image-wrapper {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.panda-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panda-card:hover .panda-image {
    transform: scale(1.06);
}

.panda-image-placeholder {
    width: 100%;
    height: 220px;
    background: #f5f5f7;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.panda-title {
    font-size: 32px;
    font-weight: 800;
    color: #1d1d1f;
    margin: 0 0 16px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.panda-summary {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 35px 0;
}

.panda-section {
    margin-bottom: 35px;
    background: #fbfbfd;
    padding: 24px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.panda-card:hover .panda-section {
    background: #f5f5f7;
}

.panda-section-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1d1d1f;
    margin: 0 0 20px 0;
    letter-spacing: 0.8px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 12px;
}

.panda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panda-list li {
    font-size: 16px;
    color: #515154;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panda-list li:hover {
    color: #1d1d1f;
    transform: translateX(6px);
}

.panda-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #36454F;
    font-weight: bold;
    opacity: 0.6;
}

.panda-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panda-feature-list li {
    font-size: 16px;
    color: #1d1d1f;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panda-feature-list li:hover {
    transform: translateX(8px);
}

.panda-feature-icon {
    display: inline-flex;
    margin-right: 14px;
    background: rgba(54, 69, 79, 0.1);
    padding: 6px;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease;
}

.panda-feature-list li:hover .panda-feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(54, 69, 79, 0.15);
}

.panda-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: #36454F;
}

.panda-quotes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 20px auto 0;
}

.panda-quote-block {
    flex: 1;
    min-width: 320px;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #36454F;
    padding: 40px;
    opacity: 0.8;
    transition: opacity 0.5s ease, transform 0.5s ease;
    letter-spacing: -0.5px;
}

.panda-quote-block:hover {
    opacity: 1;
    transform: translateY(-5px);
}

@media (max-width: 800px) {
    .panda-card-featured {
        transform: none;
    }
    .panda-card-featured:hover {
        transform: translateY(-10px);
    }
    .panda-comparison-container {
        gap: 60px;
    }
}
