/* ========================================
   CORPENTA PRICING SECTION
   ======================================== */

.corpenta-pricing-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 60px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.corpenta-pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.corpenta-pricing-header-left {
    flex: 1;
    min-width: 300px;
}

.corpenta-pricing-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.corpenta-pricing-label::before {
    content: '';
    width: 30px;
    height: 3px;
    background: #1B4F72;
    border-radius: 2px;
}

.corpenta-pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0;
}

.corpenta-pricing-header-right {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.corpenta-pricing-description {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.corpenta-pricing-description strong {
    color: #1a1a2e;
}

/* Cards Container */
.corpenta-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 968px) {
    .corpenta-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .corpenta-pricing-cards {
        grid-template-columns: 1fr;
    }

    .corpenta-pricing-header {
        flex-direction: column;
    }

    .corpenta-pricing-title {
        font-size: 28px;
    }
}

/* Single Card */
.corpenta-pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.corpenta-pricing-card:hover {
    box-shadow: 0 10px 40px rgba(27, 79, 114, 0.12);
    transform: translateY(-4px);
}

/* Featured Card */
.corpenta-pricing-card.featured {
    background: linear-gradient(135deg, #1B4F72 0%, #1a1a2e 100%);
    border: none;
    color: #fff;
}

.corpenta-pricing-card.featured .corpenta-card-title,
.corpenta-pricing-card.featured .corpenta-card-subtitle,
.corpenta-pricing-card.featured .corpenta-card-price,
.corpenta-pricing-card.featured .corpenta-feature-text {
    color: #fff;
}

.corpenta-pricing-card.featured .corpenta-feature-icon {
    color: #60a5fa;
}

/* Recommended Badge */
.corpenta-recommended-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #1a1a2e;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corpenta-pricing-card.featured .corpenta-recommended-badge {
    background: #fff;
    color: #1B4F72;
}

/* Card Content */
.corpenta-card-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.corpenta-card-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
    min-height: 42px;
}

.corpenta-pricing-card.featured .corpenta-card-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Price */
.corpenta-card-price {
    font-size: 42px;
    font-weight: 700;
    color: #1B4F72;
    margin: 0 0 24px 0;
    line-height: 1;
}

.corpenta-card-price .currency {
    font-size: 24px;
    vertical-align: top;
    margin-right: 2px;
}

.corpenta-pricing-card.featured .corpenta-card-price {
    color: #fff;
}

/* Request Quote Price */
.corpenta-card-price.quote-price {
    font-size: 24px;
    background: linear-gradient(135deg, #1B4F72, #2874A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corpenta-pricing-card.featured .corpenta-card-price.quote-price {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider */
.corpenta-card-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 24px;
}

.corpenta-pricing-card.featured .corpenta-card-divider {
    background: rgba(255, 255, 255, 0.2);
}

/* Features List */
.corpenta-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex-grow: 1;
}

.corpenta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.corpenta-feature-icon {
    color: #1B4F72;
    flex-shrink: 0;
    margin-top: 2px;
}

.corpenta-feature-text {
    color: #444;
    line-height: 1.4;
}

/* CTA Button */
.corpenta-card-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
}

.corpenta-card-button.primary {
    background: linear-gradient(135deg, #1B4F72 0%, #154360 100%);
    color: #fff !important;
}

.corpenta-card-button.primary:hover {
    background: linear-gradient(135deg, #154360 0%, #0e2f42 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 79, 114, 0.4);
    color: #fff !important;
}

.corpenta-pricing-card.featured .corpenta-card-button.primary {
    background: #fff;
    color: #1B4F72 !important;
}

.corpenta-pricing-card.featured .corpenta-card-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Quote Button */
.corpenta-card-button.quote-btn {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important;
    color: #fff !important;
}

.corpenta-card-button.quote-btn:hover {
    background: linear-gradient(135deg, #1da851 0%, #178a42 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Loading State */
.corpenta-pricing-card.loading .corpenta-card-price {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: corpenta-shimmer 1.5s infinite;
    border-radius: 8px;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

.corpenta-pricing-card.featured.loading .corpenta-card-price {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: corpenta-shimmer 1.5s infinite;
}

@keyframes corpenta-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
