/* PRICING PAGE STYLES */

.pricing-header-section {
    padding: 100px 0 60px;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.pricing-3d-graphic {
    width: 60%;
    margin-left: auto;
}

.pricing-tabs-container {
    background: #0a1128;
    padding: 80px 0;
    position: relative;
}

.pricing-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.pricing-tab-btn:hover,
.pricing-tab-btn.active {
    background: linear-gradient(135deg, #0e78c8, #4fe3d7);
    /* Brand gradient */
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(14, 120, 200, 0.3);
    color: white;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.pricing-plan-header {
    margin-bottom: 30px;
}

.pricing-plan-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--z-dark);
    margin-bottom: 15px;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00b4ff;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-cost-block {
    background: linear-gradient(135deg, #0e78c8, #4fe3d7);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-feature-item {
    background: var(--z-dark);
    color: white;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.pricing-feature-item::after {
    /* content: '▼'; Removed misleading arrow */
    content: '\f00c';
    /* Checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #4fe3d7;
    /* Brand Cyan */
    font-size: 14px;
}

.pricing-cta-btn {
    background: #00b4ff;
    /* Zentryx Blue */
    color: white;
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta-btn:hover {
    background: #0e78c8;
    box-shadow: 0 10px 20px rgba(14, 120, 200, 0.3);
}

.pricing-ideal-for {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 60px;
}

/* Updated Dark Theme Bottom Section */
.pricing-bottom-section {
    background: #0a1128;
    /* Dark Navy Background */
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-bottom-section h2 {
    color: white;
}

.pricing-bottom-section p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-bottom-section .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pricing-bottom-section .rounded-circle {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #4fe3d7 !important;
    /* Brand Cyan for icons */
}

.pricing-bottom-section .btn-discovery {
    background: #4fe3d7;
    color: #003366 !important;
}