/* Modern Pricing Cards - Detailed Design Implementation */

/* Base Pricing Card - Shape & Geometry */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;

    /* Depth - Soft diffused shadow */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Hover Effect - Floating card */
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Plan Name */
.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* Price Section - Typography Hierarchy */
.price-section {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.currency {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 8px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.price-detail {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 8px;
    margin-left: 4px;
}

.price-detail span {
    line-height: 1.3;
}

/* Plan Description */
.plan-description {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Button Group - Improved Affordance */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Primary Button - Pill-shaped */
.btn-get-started,
.btn-get-started-popular {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    background: #1f2937;
    color: #ffffff;
    border: none;
}

.btn-get-started:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 41, 55, 0.25);
    color: #ffffff;
}

/* Secondary Button - with Arrow */
.btn-chat-sales,
.btn-chat-sales-popular {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

.btn-chat-sales:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1f2937;
}

.btn-chat-sales::after,
.btn-chat-sales-popular::after {
    content: "→";
    font-size: 1.125rem;
    transition: transform 0.3s;
}

.btn-chat-sales:hover::after,
.btn-chat-sales-popular:hover::after {
    transform: translateX(4px);
}

/* Features Section */
.features-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    flex: 1;
}

.features-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.features-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Standardized Iconography - Circular containers */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 0.9375rem;
    color: #1f2937;
    margin-bottom: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #BF1A1A;
    color: #ffffff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* PREMIUM CARD - Hot Pink with White Text (WCAG Compliant) */
.pricing-card.premium {
    background: #FF6C0C;
    /* Hot Pink */
    border: none;
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 108, 12, 0.25);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 48px rgba(255, 108, 12, 0.35);
}

/* Premium Card Text - White for Contrast */
.pricing-card.premium .plan-name {
    color: #ffffff;
}

.pricing-card.premium .currency,
.pricing-card.premium .amount {
    color: #ffffff;
}

.pricing-card.premium .price-detail,
.pricing-card.premium .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.premium .features-title {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.premium .features-subtitle,
.pricing-card.premium .features-list li {
    color: rgba(255, 255, 255, 0.95);
}

/* Premium Card Icons - Semi-transparent white background */
.pricing-card.premium .features-list i {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Premium Card Buttons */
.btn-get-started-premium {
    background: #ffffff;
    color: #FF6C0C;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    border: none;
}

.btn-get-started-premium:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
    color: #FF6C0C;
}

.btn-chat-sales-premium {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-chat-sales-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.pricing-card.premium .features-section {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* STANDARD CARD - Visual Differentiation with Badge */
.pricing-card.standard {
    border: 2px solid #BF1A1A;
}

.pricing-card.standard:hover {
    border-color: #FF6C0C;
}

/* Most Popular Badge */
.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #BF1A1A;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(191, 26, 26, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pricing-card.premium {
        transform: scale(1);
        margin: 20px 0;
    }

    .pricing-card.premium:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .amount {
        font-size: 2rem;
    }

    .currency {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}